:root {
    --ink: #11110f;
    --muted: #6f6a62;
    --paper: #f7f4ee;
    --white: #fffdf8;
    --clay: #8c6f5a;
    --line: rgba(17, 17, 15, 0.14);
    --dark: #0f0f0d;
    --ease: cubic-bezier(.19, 1, .22, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    letter-spacing: 0;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 24px 38px;
    color: var(--white);
    transition: background .45s var(--ease), color .45s var(--ease), padding .45s var(--ease);
}

.site-header.is-scrolled,
body:not(.home) .site-header {
    background: rgba(247, 244, 238, .88);
    color: var(--ink);
    padding-block: 16px;
    backdrop-filter: blur(18px);
}

.site-brand,
.footer-brand {
    display: inline-grid;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    letter-spacing: .12em;
    line-height: .95;
    text-transform: uppercase;
}

.site-nav__list {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2.5vw, 38px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a,
.header-cta {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-nav a {
    opacity: .86;
}

.site-nav a:hover,
.header-cta:hover {
    opacity: 1;
}

.header-cta {
    padding: 12px 18px;
    border: 1px solid currentColor;
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 7px auto;
    background: currentColor;
}

.fullscreen,
.page-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--white);
}

.fullscreen-min {
    position: relative;
    min-height: 84vh;
    overflow: hidden;
    color: var(--white);
}

.hero__media,
.page-hero__media,
.trade-band__media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.05);
}

.hero__media,
.page-hero__media {
    animation: kenburns 22s var(--ease) infinite alternate;
}

.hero::after,
.page-hero::after,
.trade-band::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .18) 52%, rgba(0, 0, 0, .34));
}

.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .22;
    background-image: radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
    background-size: 4px 4px;
    mix-blend-mode: overlay;
}

.hero__copy,
.page-hero__content,
.trade-band__copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100vh;
    max-width: 780px;
    flex-direction: column;
    justify-content: center;
    padding: 130px clamp(24px, 7vw, 110px) 80px;
}

.page-hero.compact,
.page-hero.compact .page-hero__content {
    min-height: 72vh;
}

.trade-band__copy {
    margin-left: auto;
}

.eyebrow {
    margin: 0 0 22px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--clay);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: .98;
}

h1 {
    max-width: 900px;
    margin-bottom: 28px;
    font-size: clamp(54px, 9vw, 132px);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(38px, 6vw, 88px);
}

h3 {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 400;
}

.lead,
.page-hero__content p,
.trade-band__copy p {
    max-width: 600px;
    color: rgba(255,255,255,.78);
    font-size: clamp(18px, 2vw, 24px);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}

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

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

.button.ghost.light {
    border: 1px solid rgba(255,255,255,.62);
    background: transparent;
    color: var(--white);
}

.button.dark {
    background: var(--ink);
    color: var(--white);
}

.scroll-cue {
    position: absolute;
    right: 38px;
    bottom: 32px;
    z-index: 2;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.section-pad {
    padding: clamp(82px, 12vw, 170px) clamp(22px, 6vw, 92px);
}

.statement {
    min-height: 70vh;
    display: grid;
    place-items: center;
}

.statement__inner,
.section-heading,
.narrow-copy {
    max-width: 920px;
}

.statement__inner p,
.narrow-copy p,
.product-story__copy p,
.project-feature p {
    color: var(--muted);
    font-size: clamp(17px, 1.6vw, 21px);
}

.collection-preview {
    background: var(--white);
}

.section-heading {
    margin-bottom: 48px;
}

.expanding-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-height: 620px;
}

.expand-card {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    color: var(--white);
    isolation: isolate;
    transition: grid-column .6s var(--ease), transform .6s var(--ease);
}

.expand-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease), filter .6s var(--ease);
}

.expand-card::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(0deg, rgba(0,0,0,.62), rgba(0,0,0,.04) 62%);
}

.expand-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.expand-card__index,
.expand-card div {
    position: absolute;
    z-index: 2;
}

.expand-card__index {
    top: 24px;
    left: 24px;
    font-size: 12px;
    letter-spacing: .15em;
}

.expand-card div {
    right: 24px;
    bottom: 26px;
    left: 24px;
}

.expand-card p {
    max-width: 360px;
    color: rgba(255,255,255,.76);
}

.studio-split {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    gap: clamp(34px, 6vw, 92px);
    align-items: center;
}

.dark-section {
    background: var(--dark);
    color: var(--white);
}

.studio-split__media {
    min-height: 76vh;
    background-position: center;
    background-size: cover;
}

.steps {
    display: grid;
    gap: 24px;
    margin: 38px 0;
}

.steps div,
.process-card,
.benefit {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.22);
}

.steps span,
.process-card span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.48);
    font-size: 12px;
    letter-spacing: .18em;
}

.steps p {
    margin-bottom: 0;
    color: rgba(255,255,255,.68);
}

.project-stack {
    display: grid;
    gap: 16px;
}

.project-row {
    display: grid;
    grid-template-columns: 42% 1fr auto;
    gap: clamp(18px, 4vw, 70px);
    align-items: center;
    min-height: 240px;
    padding: 18px 0;
}

.project-row img {
    height: 240px;
    object-fit: cover;
}

.project-row h3 {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 5vw, 76px);
}

.project-row p {
    max-width: 320px;
    color: var(--muted);
}

.final-cta {
    min-height: 64vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.product-editorial,
.project-gallery {
    display: grid;
    gap: clamp(70px, 10vw, 140px);
}

.product-story,
.project-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
}

.product-story:nth-child(even),
.project-feature:nth-child(even) {
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
}

.product-story:nth-child(even) img,
.project-feature:nth-child(even) img {
    order: 2;
}

.product-story img,
.project-feature img {
    min-height: 560px;
    object-fit: cover;
}

dl {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

dt {
    color: var(--clay);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

dd {
    margin: 4px 0 0;
    color: var(--muted);
}

.text-link {
    display: inline-block;
    padding-bottom: 7px;
    border-bottom: 1px solid currentColor;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.configurator-demo {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
    gap: clamp(30px, 6vw, 94px);
    align-items: start;
}

.configurator {
    display: grid;
    gap: 26px;
    padding: clamp(24px, 4vw, 48px);
    background: var(--white);
}

.configurator__preview {
    position: relative;
}

.configurator__preview img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.configurator__preview div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0 0;
}

.configurator__preview span,
.option-group p {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.configurator__preview strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 400;
}

.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.option-group p {
    flex: 0 0 100%;
    margin-bottom: 4px;
}

.option-group button {
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.option-group button.is-active {
    background: var(--ink);
    color: var(--white);
}

.process-grid,
.benefits,
.about-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card h3,
.benefit h2,
.about-columns h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
}

.benefit {
    border-top-color: var(--line);
}

.benefit span {
    display: block;
    width: 9px;
    height: 9px;
    margin-bottom: 42px;
    border-radius: 999px;
    background: var(--clay);
}

.form-section,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, .82fr) minmax(320px, 1.18fr);
    gap: clamp(34px, 7vw, 110px);
    align-items: start;
}

.inquiry-form {
    display: grid;
    gap: 18px;
}

.inquiry-form label {
    display: grid;
    gap: 8px;
}

.inquiry-form span {
    color: rgba(255,255,255,.68);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-layout .inquiry-form span {
    color: var(--muted);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.32);
    border-radius: 0;
    background: transparent;
    color: inherit;
    padding: 14px 0;
    outline: 0;
}

.contact-layout .inquiry-form input,
.contact-layout .inquiry-form select,
.contact-layout .inquiry-form textarea {
    border-bottom-color: var(--line);
}

.contact-card {
    display: grid;
    gap: 14px;
}

.contact-card a {
    font-size: clamp(20px, 2.4vw, 34px);
    font-family: Georgia, "Times New Roman", serif;
}

.notice {
    grid-column: 1 / -1;
    padding: 18px 22px;
    background: var(--ink);
    color: var(--white);
}

.about-columns {
    margin-top: 70px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(240px, .7fr) minmax(280px, 1fr);
    gap: 40px;
    padding: 60px clamp(22px, 6vw, 92px);
    background: var(--ink);
    color: var(--white);
}

.site-footer p,
.footer-contact {
    color: rgba(255,255,255,.68);
}

.footer-contact {
    display: grid;
    gap: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes kenburns {
    from { transform: scale(1.05) translate3d(0, 0, 0); }
    to { transform: scale(1.14) translate3d(-1.5%, 1%, 0); }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        padding: 18px 22px;
    }

    .site-nav,
    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .site-header.is-open .site-nav {
        position: fixed;
        inset: 70px 16px auto;
        display: block;
        padding: 22px;
        background: rgba(17,17,15,.94);
        color: var(--white);
        backdrop-filter: blur(20px);
    }

    .site-header.is-open .site-nav__list {
        display: grid;
        gap: 18px;
        justify-content: stretch;
    }

    .expanding-grid,
    .studio-split,
    .product-story,
    .product-story:nth-child(even),
    .project-feature,
    .project-feature:nth-child(even),
    .configurator-demo,
    .form-section,
    .contact-layout,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .product-story:nth-child(even) img,
    .project-feature:nth-child(even) img {
        order: 0;
    }

    .expanding-grid,
    .expand-card {
        min-height: auto;
    }

    .expand-card {
        aspect-ratio: 4 / 5;
    }

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

    .process-grid,
    .benefits,
    .about-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero__copy,
    .page-hero__content,
    .trade-band__copy {
        padding: 112px 22px 70px;
    }

    h1 {
        font-size: clamp(48px, 18vw, 72px);
    }

    h2 {
        font-size: clamp(36px, 13vw, 58px);
    }

    .section-pad {
        padding: 76px 22px;
    }

    .process-grid,
    .benefits,
    .about-columns {
        grid-template-columns: 1fr;
    }

    .product-story img,
    .project-feature img,
    .studio-split__media {
        min-height: 420px;
    }
}

.category-index {
    background: var(--paper);
    padding-bottom: clamp(38px, 5vw, 72px);
}

.category-index__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.category-tile {
    display: grid;
    min-height: 220px;
    align-content: space-between;
    padding: clamp(22px, 3vw, 36px);
    background: var(--paper);
    transition: background .45s var(--ease), color .45s var(--ease), transform .45s var(--ease);
}

.category-tile span {
    color: var(--clay);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.category-tile strong {
    max-width: 220px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.02;
}

.category-tile:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-3px);
}

.product-story__image {
    display: block;
    overflow: hidden;
}

.product-story__image img {
    transition: transform 1.1s var(--ease);
}

.product-story__image:hover img {
    transform: scale(1.045);
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.text-link.muted {
    color: var(--muted);
}

@media (max-width: 980px) {
    .category-index__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .category-index__grid {
        grid-template-columns: 1fr;
    }

    .category-tile {
        min-height: 160px;
    }
}
