:root {
    --paper: #f5f0e8;
    --paper-light: #fbf8f3;
    --ink: #181512;
    --muted: #625d56;
    --oxide: #914f3f;
    --oxide-dark: #744033;
    --charcoal: #23201d;
    --line: rgba(24, 21, 18, 0.17);
    --line-strong: rgba(24, 21, 18, 0.42);
    --serif: "Newsreader", Georgia, serif;
    --sans: "Manrope", "Segoe UI", sans-serif;
    --shell: 1180px;
    --header-height: 82px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    font-family: var(--sans);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

h1,
h2,
h3 {
    overflow-wrap: normal;
    text-wrap: balance;
}

p,
li,
dd {
    text-wrap: pretty;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--oxide);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    color: var(--paper-light);
    background: var(--ink);
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: min(var(--shell), calc(100% - 64px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 240, 232, 0.94);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.brand {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-name {
    font-family: var(--serif);
    font-size: 1.16rem;
    font-weight: 600;
}

.desktop-nav {
    display: flex;
    gap: 34px;
    align-items: center;
}

.nav-link {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.89rem;
    font-weight: 600;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--ink);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.header-action {
    justify-self: end;
    min-height: 44px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--ink);
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    transition: color 180ms ease, background-color 180ms ease;
}

.header-action:hover {
    color: var(--paper-light);
    background: var(--ink);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

main:focus {
    outline: none;
}

.eyebrow {
    margin: 0 0 22px;
    color: var(--oxide-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero {
    min-height: 0;
    padding-block: clamp(56px, 7vw, 88px);
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.45fr);
    gap: clamp(56px, 9vw, 132px);
    align-items: end;
}

.hero-copy {
    max-width: 890px;
}

.hero h1,
.page-intro h1,
.project-intro h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.065em;
}

.hero h1 {
    max-width: 960px;
    font-size: clamp(3.6rem, 5.4vw, 5.5rem);
    line-height: 0.96;
}

.hero-intro {
    max-width: 650px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.7vw, 1.34rem);
    line-height: 1.68;
}

.button-row {
    margin-top: 34px;
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.button {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 180ms var(--ease), color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--paper-light);
    background: var(--ink);
}

.button-primary:hover {
    background: var(--oxide-dark);
}

.button-quiet {
    border-color: var(--line-strong);
    background: transparent;
}

.button-quiet:hover {
    border-color: var(--ink);
}

.button-light {
    color: var(--ink);
    background: var(--paper-light);
}

.button-light:hover {
    color: var(--paper-light);
    background: var(--oxide);
}

.hero-note {
    padding: 26px 0 4px;
    border-top: 1px solid var(--line-strong);
}

.hero-note-label {
    display: block;
    color: var(--oxide-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-note-title {
    margin: 14px 0 8px;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.hero-note-body {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.practice-section {
    padding-block: clamp(42px, 5vw, 62px);
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 2.22fr);
    gap: clamp(44px, 7vw, 92px);
    border-top: 1px solid var(--line);
}

.practice-intro .eyebrow {
    margin-bottom: 14px;
}

.practice-intro h2 {
    max-width: 310px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.9rem, 2.6vw, 2.65rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.practice-item {
    min-width: 0;
    padding-left: clamp(20px, 3vw, 34px);
    border-left: 1px solid var(--line);
}

.practice-number {
    color: var(--oxide-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.practice-item h3 {
    margin: 38px 0 12px;
    font-family: var(--serif);
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.practice-item p {
    max-width: 28ch;
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.68;
}

.text-link,
.back-link {
    width: fit-content;
    display: inline-block;
    text-underline-offset: 0.28em;
    text-decoration-thickness: 1px;
    font-size: 0.88rem;
    font-weight: 700;
}

.section-block {
    padding-block: clamp(94px, 11vw, 150px);
    border-top: 1px solid var(--line);
}

.section-heading {
    margin-bottom: 52px;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: end;
}

.section-heading h2,
.cta-band h2,
.project-visit h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 3.8vw, 4rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.project-grid,
.work-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
}

.project-card {
    min-height: 390px;
    padding: 28px 28px 26px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line-strong);
    transition: color 180ms ease, background-color 180ms ease;
}

.project-card:first-child {
    border-left: 1px solid var(--line);
}

.project-card:hover {
    color: var(--paper-light);
    background: var(--charcoal);
}

.project-card:hover p,
.project-card:hover .project-card-meta,
.project-card:hover .project-card-footer {
    color: rgba(251, 248, 243, 0.72);
}

.project-card-meta,
.project-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-card-meta span:last-child {
    text-align: right;
}

.project-card h2,
.project-card h3 {
    margin: 68px 0 16px;
    font-family: var(--serif);
    font-size: clamp(2.1rem, 3.2vw, 3.2rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
}

.project-card h2 a,
.project-card h3 a {
    text-decoration: none;
}

.project-card p {
    max-width: 34ch;
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.7;
    transition: color 180ms ease;
}

.project-card-footer {
    margin-top: auto;
    padding-top: 34px;
    align-items: end;
}

.project-card-footer .text-link {
    font-size: 0.76rem;
    text-transform: none;
    letter-spacing: 0;
}

.principles-section {
    padding-top: 0;
    border-top: 0;
}

.section-heading.compact {
    padding-top: clamp(94px, 11vw, 150px);
    border-top: 1px solid var(--line);
    align-items: start;
}

.section-heading.compact > div {
    max-width: 660px;
}

.section-intro {
    max-width: 390px;
    margin: 0;
    padding-top: 38px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 68px);
}

.principle {
    padding-top: 18px;
    border-top: 1px solid var(--line-strong);
}

.principle-number {
    color: var(--oxide-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.principle h3 {
    margin: 54px 0 16px;
    font-family: var(--serif);
    font-size: 1.72rem;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.principle p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.linkedin-profile-section {
    padding-block: clamp(72px, 9vw, 112px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 366px;
    gap: clamp(54px, 9vw, 118px);
    align-items: center;
    border-top: 1px solid var(--line);
}

.linkedin-profile-heading {
    max-width: 620px;
}

.linkedin-profile-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 3.8vw, 4rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.linkedin-profile-card {
    width: 100%;
    max-width: 366px;
    padding: 14px;
    display: grid;
    align-content: start;
    row-gap: 8px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(251, 248, 243, 0.62);
    box-shadow: 0 18px 40px rgba(24, 21, 18, 0.08);
}

.linkedin-profile-embed {
    display: flex;
    justify-content: center;
    align-items: start;
}

.linkedin-profile-embed .LI-profile-badge {
    width: fit-content !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    display: block !important;
}

.linkedin-profile-embed .LI-profile-badge:has(iframe) > .badge-base__link {
    display: none !important;
}

.linkedin-profile-embed iframe {
    width: 335px !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 16px;
}

.linkedin-profile-fallback {
    margin: 0 4px 2px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.linkedin-profile-fallback a {
    text-underline-offset: 0.18em;
}

.cta-band {
    margin-bottom: clamp(74px, 9vw, 120px);
    padding: clamp(50px, 6vw, 78px);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: clamp(50px, 8vw, 110px);
    color: var(--paper-light);
    background: var(--charcoal);
}

.cta-band .eyebrow {
    color: #d9a392;
}

.cta-copy {
    align-self: end;
}

.cta-copy p {
    margin: 0 0 30px;
    color: rgba(251, 248, 243, 0.72);
    line-height: 1.75;
}

.site-footer {
    border-top: 1px solid var(--line);
}

.footer-inner {
    min-height: 148px;
    padding-block: 34px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    color: var(--muted);
    font-size: 0.82rem;
}

.footer-statement,
.footer-meta {
    margin: 0;
}

.footer-statement {
    font-family: var(--serif);
    color: var(--ink);
    font-size: 1.16rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-underline-offset: 0.22em;
}

.footer-meta {
    justify-self: end;
}

.inner-page {
    padding-block: clamp(86px, 10vw, 140px) clamp(74px, 9vw, 120px);
}

.page-intro {
    max-width: 930px;
    padding-bottom: clamp(82px, 10vw, 132px);
}

.page-intro h1 {
    max-width: 900px;
    font-size: clamp(3.6rem, 5.6vw, 6rem);
    line-height: 0.94;
}

.page-intro > p:last-child {
    max-width: 710px;
    margin: 36px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.7vw, 1.34rem);
    line-height: 1.72;
}

.facts {
    margin: 0 0 clamp(90px, 11vw, 150px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.fact {
    padding: 28px 24px 30px 0;
    border-right: 1px solid var(--line);
}

.fact + .fact {
    padding-left: 28px;
}

.fact:last-child {
    border-right: 0;
}

.fact dt {
    margin-bottom: 16px;
    color: var(--oxide-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fact dd {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.5rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.story-list,
.project-sections {
    margin-bottom: clamp(90px, 11vw, 150px);
    border-top: 1px solid var(--line-strong);
}

.story-section,
.project-section {
    padding-block: clamp(38px, 5vw, 64px);
    display: grid;
    grid-template-columns: 130px minmax(0, 760px);
    gap: clamp(36px, 7vw, 100px);
    border-bottom: 1px solid var(--line);
}

.story-index,
.project-section > span {
    color: var(--oxide-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.story-section h2,
.project-section h2 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: clamp(2.1rem, 3.4vw, 3.3rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.story-section p,
.project-section p {
    max-width: 65ch;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.82;
}

.work-list {
    margin-bottom: clamp(90px, 11vw, 150px);
}

.project-page {
    padding-top: 54px;
}

.back-link {
    margin-bottom: clamp(62px, 7vw, 96px);
}

.project-intro {
    padding-bottom: clamp(70px, 9vw, 116px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
    gap: clamp(50px, 9vw, 120px);
    align-items: end;
}

.project-intro h1 {
    font-size: clamp(4.5rem, 7vw, 7.5rem);
    line-height: 0.88;
}

.project-summary {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.72;
}

.project-details {
    margin-bottom: clamp(82px, 10vw, 132px);
    padding-block: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.project-details dl {
    margin: 0;
    display: flex;
    gap: clamp(42px, 8vw, 100px);
}

.project-details dl div {
    display: grid;
    gap: 8px;
}

.project-details dt {
    color: var(--oxide-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-details dd {
    margin: 0;
    font-size: 0.92rem;
}

.project-details ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
}

.project-details li {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
}

.project-visit {
    padding: clamp(46px, 6vw, 72px);
    display: flex;
    justify-content: space-between;
    gap: 52px;
    align-items: end;
    border: 1px solid var(--line-strong);
}

.project-visit h2 {
    max-width: 620px;
}

.contact-page .page-intro {
    padding-bottom: clamp(62px, 8vw, 100px);
}

.contact-options {
    margin-bottom: clamp(70px, 9vw, 116px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
}

.contact-option {
    min-height: 310px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line-strong);
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.contact-option:first-child {
    border-left: 1px solid var(--line);
}

.contact-option:hover {
    color: var(--paper-light);
    background: var(--charcoal);
}

.contact-option-label {
    color: var(--oxide-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-option:hover .contact-option-label,
.contact-option:hover > span:last-child {
    color: rgba(251, 248, 243, 0.72);
}

.contact-option strong {
    margin: auto 0 16px;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.contact-option > span:last-child {
    max-width: 36ch;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-note {
    max-width: 780px;
    padding-top: 26px;
    border-top: 1px solid var(--line-strong);
}

.contact-note p:last-child {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.3vw, 3rem);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.not-found {
    min-height: 62vh;
}

.not-found .button {
    margin-top: 36px;
}

.no-script {
    width: min(760px, calc(100% - 40px));
    margin: 80px auto;
}

.no-script h1 {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.9;
}

@media (max-width: 820px) {
    :root {
        --header-height: 68px;
    }

    .shell {
        width: min(100% - 32px, var(--shell));
    }

    .header-inner {
        min-height: var(--header-height);
        grid-template-columns: 1fr auto auto;
        gap: 12px;
    }

    .desktop-nav {
        display: none;
    }

    .header-action {
        min-height: 40px;
        padding-inline: 13px;
        display: inline-flex;
        font-size: 0.76rem;
    }

    .brand-name {
        display: inline;
        font-size: 1.08rem;
    }

    .menu-toggle {
        min-height: 44px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        border: 0;
        color: var(--ink);
        background: transparent;
        font-size: 0.84rem;
        font-weight: 700;
        cursor: pointer;
    }

    .mobile-nav {
        display: block;
        border-top: 1px solid var(--line);
        background: var(--paper);
    }

    .mobile-nav[hidden] {
        display: none;
    }

    .mobile-nav-inner {
        padding-block: 10px 20px;
        display: grid;
    }

    .mobile-nav .nav-link {
        min-height: 48px;
        border-bottom: 1px solid var(--line);
        font-family: var(--serif);
        font-size: 1.25rem;
        font-weight: 500;
    }

    .mobile-nav .nav-link::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-block: 54px 64px;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: clamp(3.15rem, 13vw, 4rem);
        line-height: 0.94;
    }

    .hero-intro {
        margin-top: 28px;
        font-size: 1.03rem;
    }

    .button {
        min-height: 52px;
    }

    .hero-note {
        max-width: 480px;
    }

    .practice-section {
        padding-block: 54px;
        display: block;
    }

    .practice-intro {
        margin-bottom: 36px;
    }

    .practice-intro h2 {
        max-width: 520px;
        font-size: 2.2rem;
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .practice-item {
        padding: 22px 0;
        display: grid;
        grid-template-columns: 42px 1fr;
        column-gap: 8px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .practice-item h3 {
        margin: 0 0 9px;
    }

    .practice-item p {
        grid-column: 2;
    }

    .section-block {
        padding-block: 76px;
    }

    .section-heading,
    .section-heading.compact {
        margin-bottom: 36px;
        display: block;
    }

    .section-heading.compact {
        padding-top: 76px;
    }

    .section-heading h2,
    .cta-band h2,
    .project-visit h2 {
        font-size: clamp(2.35rem, 9vw, 3.4rem);
    }

    .desktop-section-link {
        margin-top: 24px;
    }

    .project-grid,
    .work-list,
    .principles-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }

    .project-card {
        min-height: 330px;
        border-left: 1px solid var(--line);
    }

    .project-card h2,
    .project-card h3 {
        margin-top: 50px;
        font-size: 2.65rem;
    }

    .principles-section {
        padding-top: 0;
    }

    .section-intro {
        max-width: 600px;
        padding-top: 26px;
    }

    .principles-grid {
        gap: 42px;
    }

    .principle h3 {
        margin-top: 34px;
    }

    .linkedin-profile-section {
        padding-block: 72px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .linkedin-profile-heading h2 {
        font-size: clamp(2.35rem, 9vw, 3.4rem);
    }

    .linkedin-profile-card {
        justify-self: start;
    }

    .cta-band {
        padding: 42px 28px;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-inner {
        min-height: 0;
        padding-block: 38px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-meta {
        justify-self: start;
    }

    .inner-page {
        padding-block: 70px 82px;
    }

    .page-intro {
        padding-bottom: 76px;
    }

    .page-intro h1 {
        font-size: clamp(3.1rem, 12.5vw, 4.4rem);
        line-height: 0.94;
    }

    .page-intro > p:last-child {
        margin-top: 28px;
        font-size: 1.02rem;
    }

    .facts {
        margin-bottom: 82px;
        grid-template-columns: 1fr;
    }

    .fact,
    .fact + .fact {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .fact:last-child {
        border-bottom: 0;
    }

    .story-list,
    .project-sections,
    .work-list {
        margin-bottom: 82px;
    }

    .story-section,
    .project-section {
        padding-block: 38px;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .project-page {
        padding-top: 36px;
    }

    .project-intro {
        padding-bottom: 70px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .project-intro h1 {
        font-size: clamp(3.8rem, 16vw, 5.5rem);
    }

    .project-details {
        margin-bottom: 80px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .project-details dl {
        display: grid;
        gap: 22px;
    }

    .project-details ul {
        flex-wrap: wrap;
    }

    .project-visit {
        padding: 38px 26px;
        display: grid;
        gap: 36px;
        align-items: start;
    }

    .project-visit .button {
        width: fit-content;
    }

    .contact-option {
        min-height: 280px;
        border-left: 1px solid var(--line);
    }
}

@media (max-width: 430px) {
    .shell {
        width: calc(100% - 24px);
    }

    .hero {
        padding-top: 48px;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 13vw, 3.8rem);
    }

    .button-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button-row .button {
        width: 100%;
    }

    .project-card {
        padding: 24px 20px;
    }

    .project-card-meta {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .cta-band {
        padding-inline: 22px;
    }

    .page-intro h1 {
        font-size: clamp(3.05rem, 13vw, 4rem);
    }
}

@media (max-width: 350px) {
    .linkedin-profile-card {
        padding-inline: 4px;
    }

    .linkedin-profile-fallback {
        margin-inline: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
