:root {
  --ink: #1d211d;
  --ink-2: #2a2d27;
  --paper: #eee9de;
  --paper-2: #e4ddcf;
  --stone: #b8ad98;
  --gold: #c4a56a;
  --line: rgba(29, 33, 29, .22);
  --line-dark: rgba(238, 233, 222, .22);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; }
body.menu-open, body:has(.lightbox[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.skip-link { position: fixed; z-index: 1000; left: 1rem; top: -5rem; padding: .75rem 1rem; background: var(--paper); color: var(--ink); }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; min-height: 82px; padding: 0 clamp(20px, 4vw, 72px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 3rem; color: var(--paper); border-bottom: 1px solid rgba(238, 233, 222, .22); transition: background .35s ease, color .35s ease, border-color .35s ease, min-height .35s ease; }
.site-header.is-scrolled { min-height: 68px; color: var(--ink); background: rgba(238, 233, 222, .94); border-color: var(--line); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; white-space: nowrap; }
.brand-mark { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: .68rem; letter-spacing: .08em; }
.brand-name { font-size: .72rem; font-weight: 600; letter-spacing: .22em; }
.brand-name i { font-family: var(--serif); font-size: 1rem; font-weight: 400; letter-spacing: 0; }
.main-nav { justify-self: center; display: flex; gap: clamp(1rem, 2.25vw, 2.6rem); }
.main-nav a { position: relative; text-decoration: none; font-size: .69rem; text-transform: uppercase; letter-spacing: .14em; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -.55rem; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-cta { text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: .66rem; padding: .75rem 1rem; border: 1px solid currentColor; transition: background .2s, color .2s; }
.header-cta:hover { background: var(--paper); color: var(--ink); }
.site-header.is-scrolled .header-cta:hover { background: var(--ink); color: var(--paper); }
.menu-toggle { display: none; background: none; border: 0; padding: .6rem; }

/* Keep the statue's face clear in the desktop hero. The Dossiers section
   remains available in the page, the footer and the mobile navigation. */
@media (min-width: 821px) {
  .main-nav a[href="#dossiers"] { display: none; }
}

.hero { min-height: 100svh; position: relative; overflow: hidden; display: grid; grid-template-columns: 52% 48%; color: var(--paper); background: var(--ink); }
.hero::before { content: ""; pointer-events: none; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(18, 22, 18, .55) 0%, rgba(18, 22, 18, .04) 63%); }
.hero-copy { z-index: 3; align-self: center; padding: 150px clamp(28px, 7vw, 116px) 135px; }
.eyebrow, .section-index { margin: 0 0 2rem; font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 42px; height: 1px; margin: 0 .8rem .2rem 0; vertical-align: middle; background: var(--gold); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4rem, 7.4vw, 8.1rem); font-weight: 400; line-height: .84; letter-spacing: -.045em; }
.hero-intro { max-width: 520px; margin: 2.2rem 0 0; font-family: var(--serif); font-size: clamp(1.12rem, 1.65vw, 1.55rem); line-height: 1.45; color: rgba(238, 233, 222, .82); }
.hero-actions { margin-top: 2.4rem; display: flex; align-items: center; gap: 2rem; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: .85rem 1.15rem; border: 1px solid currentColor; text-decoration: none; text-transform: uppercase; font-size: .67rem; font-weight: 600; letter-spacing: .14em; transition: transform .2s, background .2s, color .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button-light:hover { color: var(--paper); background: transparent; }
.button-dark { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.button-dark:hover { color: var(--ink); background: transparent; }
.button-gold { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.button-gold:hover { color: var(--gold); background: transparent; }
.text-link { display: inline-flex; gap: .75rem; align-items: center; padding-bottom: .2rem; border-bottom: 1px solid currentColor; text-decoration: none; font-size: .73rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px, -2px); }
.text-link-light { color: var(--paper); }
.hero-facts { position: absolute; z-index: 4; left: clamp(28px, 7vw, 116px); right: calc(48% + 4vw); bottom: 32px; display: flex; gap: clamp(1.2rem, 3vw, 3.4rem); margin: 0; padding-top: 1.1rem; border-top: 1px solid rgba(238, 233, 222, .28); }
.hero-facts div { min-width: 100px; }
.hero-facts dt { margin-bottom: .25rem; color: var(--stone); font-size: .58rem; text-transform: uppercase; letter-spacing: .16em; }
.hero-facts dd { margin: 0; font-family: var(--serif); font-size: .95rem; }
.hero-visual { position: relative; z-index: 1; height: 100svh; margin: 0; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17, 20, 17, .2), transparent 50%, rgba(17, 20, 17, .48)); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.65) contrast(1.02); }
.hero-visual figcaption { position: absolute; z-index: 3; right: clamp(22px, 4vw, 64px); bottom: 32px; display: flex; flex-direction: column; align-items: flex-end; gap: .2rem; text-align: right; font-size: .68rem; letter-spacing: .09em; }
.hero-visual figcaption span:first-child { font-family: var(--serif); font-size: 1.05rem; letter-spacing: .03em; }
.scroll-cue { position: absolute; z-index: 4; left: 22px; top: 50%; display: flex; align-items: center; gap: .8rem; text-decoration: none; text-transform: uppercase; letter-spacing: .15em; font-size: .55rem; writing-mode: vertical-rl; transform: rotate(180deg) translateY(50%); }
.scroll-cue span { width: 1px; height: 45px; background: var(--gold); }

.section-pad { padding: clamp(88px, 11vw, 170px) clamp(24px, 7vw, 116px); }
.section-index { color: #797567; }
.display-title { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5.6vw, 6.7rem); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.display-title em { color: #807969; font-weight: 400; }
.manifesto { background: var(--paper); }
.manifesto-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(280px, .55fr); gap: 9vw; align-items: end; }
.manifesto-copy { padding-bottom: .55rem; }
.manifesto-copy p { margin: 0 0 1.4rem; color: #55554d; }
.manifesto-copy .text-link { margin-top: 1rem; }

.works { background: #d7d0c3; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(48px, 7vw, 90px); }
.section-heading .section-index { margin-bottom: 1.3rem; }
.filters { display: flex; flex-wrap: wrap; gap: .4rem; }
.filter { border: 1px solid var(--line); background: transparent; padding: .65rem .9rem; text-transform: uppercase; font-size: .62rem; letter-spacing: .14em; cursor: pointer; }
.filter:hover, .filter.is-active { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.work-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(36px, 5vw, 72px) clamp(16px, 2.6vw, 42px); align-items: start; }
.work-card, .work-card-wide { grid-column: span 4; margin: 0; transition: opacity .25s, transform .35s; }
.work-card.is-hidden { display: none; }
.work-image { position: relative; display: block; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; padding: 0; border: 0; background: #aaa397; cursor: zoom-in; }
.work-card-wide .work-image { aspect-ratio: 4 / 5; }
.work-card-monument { grid-column: span 6; }
.work-card-monument .work-image { aspect-ratio: 2 / 1; }
.work-card-monument .work-image img { object-fit: cover; }
.work-card-compact { grid-column: span 3; }
.work-card-compact .work-image { aspect-ratio: 1 / 1; }
.work-card-compact-model .work-image img { object-position: center top; }
.work-grid[data-active-filter="etude"] > .work-card { grid-column: span 4; }
.work-grid[data-active-filter="etude"] > .work-card .work-image { aspect-ratio: 3 / 4; }
.work-card-study-drawing .work-image img, .work-card-study-medallion .work-image img { object-fit: contain; background: #a8a093; }
.work-card-staff-wide .work-image { aspect-ratio: 4 / 3; }
.work-image::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.15); pointer-events: none; }
.work-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s; }
.work-card:nth-child(1) img { object-position: center 30%; }
.work-card:nth-child(3) img { object-position: center 35%; }
.work-card:nth-child(4) img { object-position: center 20%; }
.work-card:nth-child(5) img { object-position: center 22%; }
.work-card-full-figure .work-image img { object-fit: contain; background: #1d211d; }
.work-card:hover .work-image img { transform: scale(1.025); filter: saturate(.92); }
.zoom-cue { position: absolute; z-index: 2; right: .8rem; bottom: .8rem; padding: .48rem .6rem; opacity: 0; color: var(--paper); background: rgba(25, 29, 25, .75); text-transform: uppercase; font-size: .54rem; letter-spacing: .12em; transform: translateY(6px); transition: opacity .25s, transform .25s; }
.work-card:hover .zoom-cue, .work-image:focus-visible .zoom-cue { opacity: 1; transform: none; }
.work-meta { display: grid; grid-template-columns: auto 1fr; gap: .7rem 1rem; align-items: baseline; padding-top: 1rem; border-top: 1px solid var(--line); }
.work-meta h3 { margin: 0; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.work-meta p { justify-self: end; margin: 0; color: #666259; text-align: right; font-size: .66rem; letter-spacing: .04em; }
.section-end { margin-top: 5.5rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.section-end p { max-width: 330px; margin: 0; color: #656157; text-align: right; font-family: var(--serif); font-size: 1.1rem; }
.section-end .gallery-instruction { text-align: left; }

.project-reader { color: var(--paper); background: var(--ink); }
.project-reader.section-pad { padding-top: clamp(64px, 7vw, 108px); padding-bottom: clamp(64px, 7vw, 108px); }
.project-reader .section-index { color: var(--gold); }
.reader-intro { display: grid; grid-template-columns: .6fr 1.55fr .65fr; gap: 4vw; align-items: start; margin-bottom: 2.5rem; }
.reader-intro .section-index { margin-top: .8rem; }
.reader-intro > p:last-child { margin: .7rem 0 0; color: rgba(238,233,222,.65); }
.reader-shell { display: grid; grid-template-columns: 1.4fr .72fr; border: 1px solid var(--line-dark); }
.reader-form { padding: clamp(24px, 3vw, 42px); }
.reader-form fieldset { margin: 0; padding: 0 0 1.45rem; border: 0; }
.reader-form fieldset + fieldset { padding-top: 1.45rem; border-top: 1px solid var(--line-dark); }
.reader-form fieldset:last-child { padding-bottom: 0; }
.reader-form legend { width: 100%; margin-bottom: 1rem; font-family: var(--serif); font-size: 1.35rem; }
.reader-form legend span { display: inline-block; width: 2rem; color: var(--gold); font-family: var(--sans); font-size: .62rem; letter-spacing: .12em; }
.choice-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
.choice-row-four, .choice-row-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-row label { position: relative; }
.choice-row input { position: absolute; opacity: 0; pointer-events: none; }
.choice-row label span { min-height: 45px; display: grid; place-items: center; padding: .3rem; border: 1px solid var(--line-dark); color: rgba(238,233,222,.72); font-size: .875rem; text-align: center; cursor: pointer; transition: background .2s, color .2s, border .2s; }
.choice-row label:hover span, .choice-row input:checked + span { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.choice-row input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.range-line { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
input[type="range"] { width: 100%; accent-color: var(--gold); }
.range-line output { min-width: 92px; font-family: var(--serif); font-size: 1.2rem; text-align: right; }
.range-line output strong { font-size: 2rem; font-weight: 400; }
.range-labels { display: flex; justify-content: space-between; margin-top: .55rem; padding-right: 120px; color: rgba(238,233,222,.42); font-size: .58rem; text-transform: uppercase; letter-spacing: .09em; }
.project-result { padding: clamp(24px, 3vw, 42px); color: var(--ink); background: #d4c7ad; }
.result-label { margin: 0 0 1rem; text-transform: uppercase; font-size: .61rem; letter-spacing: .17em; }
.project-result h3 { margin: 0 0 1rem; font-family: var(--serif); font-size: clamp(1.9rem, 2.8vw, 2.7rem); font-weight: 400; line-height: 1.05; }
.project-result [data-rationale] { color: #4f4e46; }
.project-result .result-summary { margin: 1.5rem 0 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(29,33,29,.25); font-size: .9rem; }
.project-result .result-summary strong { font-weight: 500; }
.project-result .button { width: 100%; }

.materials { min-height: 850px; display: grid; grid-template-columns: 1.05fr .95fr; background: var(--paper-2); }
.material-image { position: relative; min-height: 850px; overflow: hidden; }
.material-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(21,24,21,.55)); }
.material-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #1d211d; filter: saturate(.65); }
.material-image p { position: absolute; z-index: 2; left: 2.3rem; bottom: 1.8rem; margin: 0; color: var(--paper); font-size: .65rem; letter-spacing: .09em; }
.material-content { align-self: center; max-width: 660px; padding: clamp(70px, 9vw, 140px); }
.material-content .display-title { font-size: clamp(3rem, 5vw, 5.6rem); }
.material-tabs { display: flex; gap: 1.8rem; margin: 3.5rem 0 2rem; border-bottom: 1px solid var(--line); }
.material-tab { position: relative; padding: .9rem 0; border: 0; background: none; color: #757064; text-transform: uppercase; font-size: .64rem; font-weight: 600; letter-spacing: .13em; cursor: pointer; }
.material-tab::after { content: ""; position: absolute; height: 2px; left: 0; right: 0; bottom: -1px; background: var(--ink); transform: scaleX(0); }
.material-tab.is-active { color: var(--ink); }
.material-tab.is-active::after { transform: scaleX(1); }
.material-lead { font-family: var(--serif); font-size: 1.35rem; line-height: 1.35; }
.material-panel > p:not(.material-lead) { color: #59574f; }
.material-panel ul { margin: 1.8rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.material-panel li { padding: .75rem 0; border-bottom: 1px solid var(--line); text-transform: uppercase; font-size: .61rem; letter-spacing: .13em; }

.process { background: var(--paper); }
.process-heading { display: grid; grid-template-columns: .5fr 1.25fr .55fr; gap: 4vw; align-items: start; margin-bottom: 6rem; }
.process-heading .section-index { margin-top: .7rem; }
.process-heading > p:last-child { margin-top: .7rem; color: #5b5a52; }
.process-body { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; align-items: start; }
.process-image { position: sticky; top: 105px; margin: 0; }
.process-image img { width: 100%; max-height: 620px; object-fit: cover; filter: saturate(.7); }
.process-image figcaption { margin-top: .85rem; color: #69665c; font-family: var(--serif); font-size: .95rem; font-style: italic; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 70px 1fr; gap: 1rem; padding: 2.4rem 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps > li > span { color: #8d8779; font-size: .66rem; letter-spacing: .14em; }
.steps h3 { margin: -.5rem 0 .65rem; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.8rem); font-weight: 400; }
.steps p { max-width: 610px; margin: 0; color: #5d5b53; }
.process-body-integrated { display: block; }
.process-triptych { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(10px, 2vw, 28px); margin-bottom: clamp(50px, 7vw, 95px); }
.process-triptych figure { margin: 0; }
.process-triptych figure > div { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #bdb5a7; }
.process-triptych img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.58); }
.process-triptych figure:nth-child(1) img { object-position: center 40%; }
.process-triptych figure:nth-child(2) img { object-position: center 38%; }
.process-triptych figure:nth-child(3) img { object-position: center 26%; }
.process-triptych figure > div > span { position: absolute; right: .75rem; top: .75rem; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--paper); background: rgba(29,33,29,.72); font-size: .55rem; }
.process-triptych figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-top: .85rem; border-top: 1px solid var(--line); }
.process-triptych strong { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 3.3rem); font-weight: 400; line-height: 1; }
.process-triptych small { color: #69655b; font-size: .65rem; }
.process-body-integrated .steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-body-integrated .steps li { min-height: 250px; padding: clamp(25px, 3.5vw, 50px); border-top: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-gesture { display: grid; grid-template-columns: minmax(180px, 250px) minmax(0, 1fr); gap: clamp(26px, 5vw, 74px); align-items: center; width: min(100%, 850px); margin: clamp(42px, 6vw, 82px) auto 0; padding-top: clamp(32px, 5vw, 65px); border-top: 1px solid var(--line); }
.process-gesture figure { margin: 0; }
.process-gesture img { display: block; width: 100%; height: auto; }
.process-gesture figcaption { margin-top: .7rem; color: #69665d; font-size: .7rem; }
.process-gesture .section-index { margin-bottom: 1rem; }
.process-gesture h3 { margin: 0 0 1rem; font-family: var(--serif); font-size: clamp(2rem, 3.3vw, 3.5rem); font-weight: 400; line-height: 1.08; }
.process-gesture p:last-child { max-width: 420px; margin: 0; color: #57554e; }

.commercial-section { background: var(--paper-2); }
.commercial-heading { display: grid; grid-template-columns: .42fr 1.2fr .5fr; gap: 4vw; align-items: start; margin-bottom: clamp(48px, 7vw, 92px); }
.commercial-heading .display-title { font-size: clamp(3rem, 5vw, 5.8rem); }
.commercial-heading .display-title em { color: #827864; }
.commercial-heading > p:last-child { margin: .6rem 0 0; color: #5b5a52; }
.commercial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.commercial-card { min-height: 330px; display: flex; flex-direction: column; padding: clamp(28px, 3.5vw, 52px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.commercial-card-featured { grid-column: span 3; min-height: auto; display: grid; grid-template-columns: .55fr 1fr 1fr; gap: 4vw; color: var(--paper); background: var(--ink); }
.commercial-card .card-kicker { margin: 0 0 2rem; color: #766b58; text-transform: uppercase; font-size: .62rem; letter-spacing: .15em; }
.commercial-card-featured .card-kicker { color: var(--gold); }
.commercial-card h3 { margin: 0 0 1.4rem; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.3rem); font-weight: 400; line-height: 1; }
.commercial-card p:not(.card-kicker) { margin: 0; color: #5b5a52; }
.commercial-card-featured p:not(.card-kicker) { color: rgba(238,233,222,.68); }
.commercial-card strong { margin-top: auto; padding-top: 2.4rem; color: #6c604c; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.commercial-card dl { margin: 0; }
.commercial-card dl div { display: flex; justify-content: space-between; gap: 1.5rem; padding: .85rem 0; border-top: 1px solid var(--line-dark); }
.commercial-card dl div:last-child { border-bottom: 1px solid var(--line-dark); }
.commercial-card dt { color: var(--stone); text-transform: uppercase; font-size: .58rem; letter-spacing: .12em; }
.commercial-card dd { margin: 0; font-family: var(--serif); }
.commercial-note { max-width: 850px; margin: 2rem 0 0 auto; color: #69665d; font-size: .82rem; }
.commercial-grid-condensed .commercial-card { min-height: 0; padding: clamp(24px, 2.5vw, 38px); }
.commercial-grid-condensed .card-kicker { margin-bottom: 1rem; }
.commercial-grid-condensed h3 { font-size: clamp(1.6rem, 2.1vw, 2.3rem); }
.commercial-grid-condensed strong { padding-top: 1.5rem; }

.quote-section { display: block; min-height: 650px; color: var(--paper); text-align: center; background: #777165; }
.quote-grid { width: 100%; max-width: 1320px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 7vw, 110px); align-items: start; margin: 0 auto; }
.quote-section blockquote { max-width: 680px; margin: 0 auto; }
.quote-section blockquote::before { content: "“"; display: block; height: 3.5rem; color: var(--gold); font-family: var(--serif); font-size: 5rem; line-height: 1; }
.quote-section p { margin: 1rem 0 2.5rem; font-family: var(--serif); font-size: clamp(1.75rem, 2.75vw, 3.15rem); line-height: 1.12; }
.quote-section footer { text-transform: uppercase; font-size: .62rem; letter-spacing: .14em; }

.atelier { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; align-items: center; overflow: hidden; background: var(--paper-2); }
.atelier-copy { max-width: 570px; }
.atelier-copy .display-title { margin-bottom: 2.2rem; }
.atelier-copy > p:not(.section-index) { color: #57554e; }
.atelier-copy .atelier-lead { color: var(--ink); font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; }
.atelier-copy .text-link { margin-top: 1.3rem; }
.atelier-facts { margin: 2.1rem 0 0; border-top: 1px solid var(--line); }
.atelier-facts div { display: flex; justify-content: space-between; gap: 1.5rem; padding: .78rem 0; border-bottom: 1px solid var(--line); }
.atelier-facts dt { color: #767166; text-transform: uppercase; font-size: .58rem; letter-spacing: .13em; }
.atelier-facts dd { margin: 0; text-align: right; font-family: var(--serif); font-size: .88rem; }
.atelier-composition { position: relative; min-height: 760px; }
.atelier-main-image { position: absolute; inset: 0 0 0 15%; margin: 0; overflow: hidden; }
.atelier-main-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(.58); }
.atelier-detail-image { position: absolute; z-index: 2; width: 38%; left: 0; bottom: -6%; margin: 0; border: 10px solid var(--paper-2); }
.atelier-detail-image img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 15%; filter: saturate(.6); }
.atelier-note { position: absolute; z-index: 3; right: -1.8rem; top: 4rem; margin: 0; color: var(--paper); font-family: var(--serif); font-size: 1.2rem; font-style: italic; transform: rotate(90deg); }
.atelier-main-image--crucifix { background: var(--ink); }
.atelier-main-image--crucifix img { object-fit: contain; object-position: center; filter: none; }
.atelier-copy .atelier-artwork-credit { margin-top: 1.8rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .85rem; }

@media (min-width: 821px) {
  .atelier--crucifix { grid-template-columns: .68fr 1.32fr; gap: 6vw; }
  .atelier--crucifix .atelier-composition { min-height: 940px; }
  .atelier--crucifix .atelier-main-image { left: 5%; }
}

.dossiers { color: var(--paper); background: var(--ink-2); }
.dossiers .section-index { color: var(--gold); }
.dossiers-heading { display: grid; grid-template-columns: .42fr 1.2fr .5fr; gap: 4vw; align-items: start; margin-bottom: clamp(52px, 7vw, 96px); }
.dossiers-heading .display-title { font-size: clamp(3rem, 5vw, 5.8rem); }
.dossiers-heading .display-title em { color: var(--stone); }
.dossiers-heading > p:last-child { margin: .6rem 0 0; color: rgba(238,233,222,.65); }
.dossier-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 3vw, 46px); }
.dossier-card { display: grid; grid-template-columns: minmax(170px, .7fr) 1fr; min-height: 430px; border: 1px solid var(--line-dark); text-decoration: none; overflow: hidden; transition: border-color .25s, transform .3s; }
.dossier-card-large { grid-column: 1 / -1; grid-template-columns: 1.2fr .8fr; min-height: 520px; }
.dossier-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.dossier-card figure { min-height: 100%; margin: 0; overflow: hidden; background: #777165; }
.dossier-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55); transition: transform .7s, filter .5s; }
.dossier-card-large img { object-position: center 48%; }
.dossier-card:nth-child(2) img { object-position: center 25%; }
.dossier-card-monument img { object-fit: contain; background: #1b1e1b; }
.dossier-card:hover img { transform: scale(1.025); filter: saturate(.78); }
.dossier-card > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4.5vw, 70px); }
.dossier-card span { color: var(--gold); text-transform: uppercase; font-size: .61rem; letter-spacing: .15em; }
.dossier-card h3 { margin: 1.15rem 0; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.8rem); font-weight: 400; line-height: .95; }
.dossier-card:not(.dossier-card-large) h3 { font-size: clamp(2rem, 3vw, 3.4rem); }
.dossier-card p { max-width: 450px; margin: 0; color: rgba(238,233,222,.63); }
.dossier-card strong { margin-top: 2.4rem; font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.dossier-card strong i { display: inline-block; margin-left: .5rem; color: var(--gold); font-size: 1rem; font-style: normal; transition: transform .2s; }
.dossier-card:hover strong i { transform: translate(3px,-3px); }

.faq-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; align-items: start; background: var(--paper); }
.faq-heading { position: sticky; top: 120px; }
.faq-heading > p:last-child { max-width: 420px; margin-top: 2rem; color: #5b5a52; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: 1.8rem 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.85rem); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #837a68; font-family: var(--sans); font-size: 1.2rem; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -.35rem 4rem 1.8rem 0; color: #5b5a52; }

.contact-section { color: var(--paper); background: var(--ink); }
.contact-section .section-index { color: var(--gold); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; align-items: start; }
.contact-copy .display-title { margin-bottom: 2rem; }
.contact-copy > p { margin: 0 0 2rem; color: rgba(238,233,222,.68); }
.contact-copy dl { margin: 2.3rem 0 0; }
.contact-copy dl div { display: flex; justify-content: space-between; gap: 2rem; padding: .75rem 0; border-top: 1px solid var(--line-dark); }
.contact-copy dl div:last-child { border-bottom: 1px solid var(--line-dark); }
.contact-copy dt { color: var(--stone); text-transform: uppercase; font-size: .58rem; letter-spacing: .13em; }
.contact-copy dd { margin: 0; font-family: var(--serif); }
.contact-form { display: grid; gap: 1.35rem; padding: clamp(26px, 4vw, 54px); border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem; }
.contact-form label { display: grid; gap: .55rem; color: var(--stone); text-transform: uppercase; font-size: .62rem; font-weight: 600; letter-spacing: .12em; }
.contact-form label span { color: rgba(238,233,222,.45); font-weight: 400; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 50px; padding: .85rem 1rem; border: 1px solid var(--line-dark); border-radius: 0; color: var(--paper); background: rgba(238,233,222,.045); font-family: var(--sans); font-size: 1rem; line-height: 1.4; letter-spacing: 0; text-transform: none; }
.contact-form textarea { min-height: 165px; resize: vertical; }
.contact-extra { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.contact-extra summary { padding: 1rem 0; color: var(--paper); cursor: pointer; font-family: var(--serif); font-size: 1.1rem; list-style: none; }
.contact-extra summary::-webkit-details-marker { display: none; }
.contact-extra summary::after { content: "+"; float: right; color: var(--gold); font-family: var(--sans); }
.contact-extra[open] summary::after { content: "−"; }
.contact-extra summary span { color: var(--stone); font-family: var(--sans); font-size: .72rem; }
.contact-extra summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.contact-extra-fields { display: grid; gap: 1.35rem; padding: .3rem 0 1.35rem; }
.contact-form select { appearance: none; color-scheme: dark; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(238,233,222,.38); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; border-color: transparent; }
.contact-form .button { width: 100%; margin-top: .35rem; }
.contact-form .button:disabled { cursor: wait; opacity: .65; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note, .form-status { margin: 0; color: rgba(238,233,222,.52); font-size: .72rem; }
.form-status { min-height: 1.2rem; color: var(--gold); }

.site-footer { padding: 2rem clamp(24px, 7vw, 116px); display: grid; grid-template-columns: 1fr 1fr 1.3fr 1fr; align-items: center; gap: 2rem; color: var(--paper); background: #131613; border-top: 1px solid rgba(238,233,222,.13); font-size: .63rem; letter-spacing: .05em; }
.footer-brand { justify-self: start; }
.site-footer > p { margin: 0; color: rgba(238,233,222,.58); }
.site-footer > div { display: flex; justify-content: center; gap: 1.4rem; }
.site-footer > div a { text-decoration: none; }
.site-footer > div a:hover { color: var(--gold); }
.concept-note { text-align: right; }

.lightbox { width: min(92vw, 1120px); max-width: none; height: 91vh; max-height: none; padding: 0; border: 0; color: var(--paper); background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(16,18,16,.92); backdrop-filter: blur(10px); }
.lightbox figure { width: 100%; height: 100%; margin: 0; display: grid; grid-template-rows: 1fr auto; place-items: center; gap: 1rem; }
.lightbox img { max-width: 100%; max-height: calc(91vh - 3.5rem); object-fit: contain; }
.lightbox figcaption { font-family: var(--serif); font-size: 1rem; text-align: center; }
.lightbox-close { position: fixed; z-index: 2; right: 2.2rem; top: 1.4rem; width: 46px; height: 46px; border: 1px solid rgba(238,233,222,.45); border-radius: 50%; color: var(--paper); background: transparent; font-family: var(--serif); font-size: 2rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s cubic-bezier(.22,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: 1.5rem; }
  .main-nav { gap: 1.3rem; }
  .main-nav a { font-size: .62rem; }
  .header-cta { display: none; }
  .hero { grid-template-columns: 56% 44%; }
  .hero-facts { right: calc(44% + 3vw); }
  .reader-intro, .process-heading { grid-template-columns: 1fr 2fr; }
  .reader-intro > p:last-child, .process-heading > p:last-child { grid-column: 2; }
  .materials { grid-template-columns: 1fr 1fr; }
  .material-content { padding: 7vw; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > div { justify-content: flex-end; }
  .concept-note { text-align: left; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 67px; }
  .site-header { min-height: 68px; grid-template-columns: 1fr auto; background: rgba(29,33,29,.92); backdrop-filter: blur(12px); }
  .site-header.is-scrolled { background: rgba(238,233,222,.96); }
  .menu-toggle { display: grid; gap: 7px; }
  .menu-toggle span:not(.sr-only) { width: 27px; height: 1px; display: block; background: currentColor; transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 68px 0 0; height: calc(100vh - 68px); height: calc(100dvh - 68px); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; padding: clamp(22px, 5vh, 44px) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left)); color: var(--paper); background: var(--ink); overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s, visibility .25s, transform .25s; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { flex: 0 0 auto; width: 100%; padding: clamp(.72rem, 2vh, 1rem) 0; border-bottom: 1px solid var(--line-dark); font-family: var(--serif); font-size: clamp(1.6rem, min(7vw, 5vh), 2.8rem); line-height: 1.08; text-transform: none; letter-spacing: 0; overflow-wrap: anywhere; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; display: block; padding-top: 68px; }
  .hero::before { background: linear-gradient(180deg, rgba(20,23,20,.05) 35%, rgba(20,23,20,.92) 75%); }
  .hero-copy { position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; padding: 6rem 24px 2.2rem; }
  .hero h1 { font-size: clamp(3.6rem, 15vw, 6rem); }
  .hero-intro { max-width: 520px; margin-top: 1.5rem; }
  .hero-visual { height: calc(100svh - 68px); min-height: 650px; }
  .hero-visual img { object-position: center 25%; }
  .hero-visual figcaption, .scroll-cue, .hero-facts { display: none; }
  .section-pad { padding: 84px 24px; }
  .manifesto-grid, .reader-intro, .reader-shell, .materials, .process-heading, .process-body, .atelier, .dossiers-heading, .faq-section, .contact-grid, .commercial-heading { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 2.5rem; }
  .manifesto .display-title br { display: none; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 1rem; }
  .work-card, .work-card-wide { grid-column: span 1; margin: 0 !important; }
  .work-card-monument { grid-column: span 2; }
  .work-card-compact, .work-grid[data-active-filter="etude"] > .work-card { grid-column: span 1; }
  .work-card-compact .work-image { aspect-ratio: 3 / 4; }
  .work-meta { display: block; }
  .work-meta p { margin-top: .3rem; text-align: left; }
  .section-end { align-items: flex-start; flex-direction: column; }
  .section-end p { text-align: left; }
  .reader-intro, .process-heading { gap: 1.4rem; }
  .reader-intro > p:last-child, .process-heading > p:last-child { grid-column: 1; }
  .reader-shell { border: 0; }
  .reader-form { border: 1px solid var(--line-dark); }
  .choice-row { grid-template-columns: 1fr; }
  .choice-row-four, .choice-row-two { grid-template-columns: 1fr; }
  .range-labels { padding-right: 0; }
  .materials { min-height: auto; }
  .material-image { min-height: min(125vw, 680px); }
  .material-content { padding: 84px 24px; }
  .process-body { gap: 3rem; }
  .process-body-integrated .steps { grid-template-columns: 1fr; }
  .process-body-integrated .steps li { min-height: auto; }
  .process-image { position: relative; top: 0; }
  .process-image img { width: 70%; }
  .atelier { gap: 4rem; }
  .atelier-composition { min-height: 0; }
  .atelier-main-image { position: relative; inset: auto; height: 72vw; }
  .atelier-detail-image, .atelier-note { display: none; }
  .dossiers-heading { gap: 1.4rem; }
  .dossier-card, .dossier-card-large { grid-column: auto; grid-template-columns: 1fr; min-height: auto; }
  .dossier-card figure { min-height: 48vw; }
  .dossier-card:nth-child(2) figure { min-height: 72vw; }
  .dossier-card > div { min-height: 320px; }
  .faq-heading { position: relative; top: 0; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 540px) {
  .process-gesture { grid-template-columns: 1fr; max-width: 340px; }
  .process-gesture figure { max-width: 240px; }
  .brand-name { font-size: .62rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.1rem; }
  .display-title { font-size: clamp(2.65rem, 14vw, 4rem); }
  .work-grid { grid-template-columns: 1fr; }
  .work-card-monument { grid-column: span 1; }
  .work-image, .work-card-wide .work-image { aspect-ratio: 4 / 5; }
  .work-card-compact .work-image, .work-grid[data-active-filter="etude"] > .work-card .work-image { aspect-ratio: 4 / 5; }
  .work-card-staff-wide .work-image { aspect-ratio: 4 / 3; }
  .work-meta { display: grid; }
  .work-meta p { margin: 0; text-align: right; }
  .choice-row-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .range-line { gap: .8rem; }
  .range-labels span:nth-child(2) { display: none; }
  .material-tabs { gap: 1rem; }
  .process-triptych { gap: .55rem; }
  .process-triptych figure > div > span { right: .45rem; top: .45rem; width: 27px; height: 27px; }
  .process-triptych figcaption { display: block; }
  .process-triptych strong { display: block; font-size: 1.35rem; }
  .process-triptych small { font-size: .54rem; }
  .steps li { grid-template-columns: 40px 1fr; }
  .commercial-grid { grid-template-columns: 1fr; }
  .commercial-card-featured { grid-column: auto; grid-template-columns: 1fr; }
  .commercial-card { min-height: auto; }
  .quote-section { min-height: 520px; }
  .quote-grid { grid-template-columns: 1fr; }
  .atelier-main-image { height: 92vw; }
  .atelier-facts div { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .atelier-facts dd { text-align: left; }
  .dossier-grid { grid-template-columns: 1fr; }
  .dossier-card figure, .dossier-card:nth-child(2) figure { min-height: 80vw; }
  .faq-list details p { margin-right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > div { justify-content: flex-start; }
  .concept-note { text-align: left; }
  .lightbox-close { top: .7rem; right: .7rem; }
}

@media (max-width: 820px) {
  .atelier-main-image--crucifix { height: auto; aspect-ratio: 981 / 1604; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
