:root {
  --ink: #11100f;
  --ink-soft: #1b1917;
  --bone: #f2ede5;
  --paper: #fbf8f3;
  --rust: #b65932;
  --rust-dark: #7e351f;
  --line: rgba(17, 16, 15, .18);
  --line-light: rgba(242, 237, 229, .22);
  --muted: #706a63;
  --serif: Iowan Old Style, Palatino Linotype, Book Antiqua, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1480px;
  --gutter: clamp(1.2rem, 3.4vw, 4rem);
  --section: clamp(4.5rem, 9vw, 9rem);
  --radius: .3rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:hover { text-decoration-color: var(--rust); }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, [tabindex]:focus-visible { outline: 3px solid #f59a70; outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: .98; }
h1 { font-size: clamp(3rem, 7.2vw, 8rem); }
h2 { font-size: clamp(2.3rem, 5vw, 5.6rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.6rem); }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.skip-link { position: fixed; left: 1rem; top: .7rem; z-index: 1000; padding: .7rem 1rem; background: var(--paper); color: var(--ink); transform: translateY(-200%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin-bottom: 1.1rem; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.lede { max-width: 58ch; font-size: clamp(1.05rem, 1.55vw, 1.35rem); line-height: 1.55; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.15rem 1.6rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .85rem 1.3rem; border: 1px solid var(--ink); background: var(--paper); color: var(--ink); font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { background: var(--rust); border-color: var(--rust); color: #fff; text-decoration: none; transform: translateY(-1px); }
.button--light { border-color: var(--bone); background: var(--bone); }
.button--dark { border-color: var(--ink); background: var(--ink); color: var(--bone); }
.button--outline { background: transparent; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: .6rem; font-size: .85rem; font-weight: 700; letter-spacing: .04em; text-decoration: none; }
.text-link:hover span { transform: translateX(.2rem); }
.text-link span { transition: transform .2s ease; }
.text-link--light { color: var(--bone); }

.site-header { position: absolute; z-index: 50; top: 0; left: 0; width: 100%; display: grid; grid-template-columns: minmax(170px, 1fr) auto; align-items: center; gap: 2rem; padding: 1.15rem var(--gutter); color: var(--bone); }
.site-header::after { content: ""; position: absolute; right: var(--gutter); bottom: 0; left: var(--gutter); border-bottom: 1px solid rgba(255,255,255,.22); }
.site-header.is-solid { position: fixed; background: rgba(17,16,15,.95); backdrop-filter: blur(12px); }
.brand { display: inline-grid; width: max-content; color: inherit; font-family: var(--serif); font-size: 1.05rem; font-weight: 700; letter-spacing: .1em; line-height: .83; text-decoration: none; text-transform: uppercase; }
.brand span:last-child { margin-left: 1.8rem; font-style: italic; font-weight: 400; letter-spacing: .04em; }
.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2rem); }
.site-nav > a { position: relative; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.site-nav > a[aria-current="page"]::after { content: ""; position: absolute; right: 0; bottom: -.55rem; left: 0; height: 1px; background: currentColor; }
.site-nav .nav-cta { min-height: 42px; display: inline-flex; align-items: center; padding: .4rem .9rem; border: 1px solid currentColor; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: inherit; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .2s ease; }

.hero { position: relative; min-height: min(900px, 100svh); background: var(--ink); color: var(--bone); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-img { object-position: 62% 48%; }
.hero-shade { background: linear-gradient(90deg, rgba(10,9,8,.88) 0%, rgba(10,9,8,.64) 43%, rgba(10,9,8,.18) 72%, rgba(10,9,8,.32) 100%), linear-gradient(0deg, rgba(10,9,8,.55) 0%, transparent 45%); }
.hero-copy { position: relative; z-index: 2; width: min(850px, calc(100% - (2 * var(--gutter)))); padding: clamp(9rem, 18vh, 12rem) 0 7rem var(--gutter); }
.hero-copy h1 { max-width: 8.7ch; margin-bottom: 1.8rem; }
.hero-copy .lede { color: #d8d0c7; }
.hero-copy .actions { margin-top: 2rem; }
.hero-scroll { position: absolute; z-index: 2; right: var(--gutter); bottom: 2rem; display: flex; gap: 1rem; color: var(--bone); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }

.statement { display: grid; grid-template-columns: .45fr 1.55fr; gap: clamp(2rem, 7vw, 8rem); padding: var(--section) var(--gutter); background: var(--bone); }
.statement > p { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.statement h2 { max-width: 16ch; margin-bottom: 0; }
.contact-sheet { padding: var(--section) 0; background: var(--paper); }
.section-head { display: grid; grid-template-columns: .5fr 1.25fr .5fr; align-items: end; gap: 2rem; padding: 0 var(--gutter) 2.5rem; }
.section-head h2 { max-width: 10ch; margin-bottom: 0; }
.section-head > .text-link { justify-self: end; }
.exposure-rail { display: grid; grid-auto-columns: minmax(260px, 25vw); grid-auto-flow: column; gap: .7rem; overflow-x: auto; padding: 0 var(--gutter) 1.2rem; scroll-snap-type: x proximity; scrollbar-width: thin; overscroll-behavior-inline: contain; }
.exposure { position: relative; height: clamp(350px, 52vw, 620px); overflow: hidden; background: var(--ink-soft); color: #fff; scroll-snap-align: start; text-decoration: none; }
.exposure--wide { grid-column: span 1; }
.exposure img { transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.exposure:hover img { transform: scale(1.025); }
.exposure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.exposure span { position: absolute; z-index: 2; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; display: grid; gap: .25rem; }
.exposure b { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 2rem); font-weight: 400; }
.exposure em { font-size: .73rem; font-style: normal; letter-spacing: .05em; text-transform: uppercase; }
.service-journey { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 5vw; padding: var(--section) var(--gutter); background: var(--ink); color: var(--bone); }
.service-journey__intro { align-self: start; position: sticky; top: 7rem; }
.service-journey__intro h2 { max-width: 10ch; }
.service-journey__intro > p:not(.eyebrow) { max-width: 50ch; color: #c9c1b8; }
.service-stack { border-top: 1px solid var(--line-light); }
.service-stack a { display: grid; grid-template-columns: .75fr 1.25fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line-light); text-decoration: none; }
.service-stack span { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.7rem); line-height: 1.05; }
.service-stack small { max-width: 45ch; color: #b9b1a9; font-size: .9rem; }
.split-feature { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 720px; }
.split-feature--dark { background: #171513; color: var(--bone); }
.split-media { min-height: 720px; }
.split-media img { object-position: 50% 25%; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.split-copy h2 { max-width: 8ch; }
.split-copy p:not(.eyebrow) { max-width: 46ch; color: #c9c1b8; }
.split-copy .text-link { margin-top: 1.5rem; align-self: flex-start; }
.proof-line { display: grid; grid-template-columns: 1.25fr .75fr; gap: 6vw; align-items: end; padding: clamp(3.5rem,7vw,6.5rem) var(--gutter); background: var(--rust); color: #fff; }
.proof-line h2 { max-width: 13ch; margin-bottom: 0; font-size: clamp(2.1rem,4vw,4.7rem); }
.proof-line > p { max-width: 46ch; margin-bottom: .4rem; }
.proof-line--light { background: var(--bone); color: var(--ink); }
.final-cta { padding: var(--section) var(--gutter); background: var(--paper); }
.final-cta h2 { max-width: 12ch; }

.page-hero { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: var(--bone); }
.page-hero > div:first-child { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(8rem,14vw,12rem) var(--gutter) clamp(4rem,8vw,7rem); }
.page-hero h1 { max-width: 8.5ch; margin-bottom: 2rem; }
.page-hero .lede { color: #cfc7bf; }
.page-hero__image { min-height: 720px; }
.page-hero__image img { object-position: center; }
.page-hero--services .page-hero__image img { object-position: 50% 50%; }
.subnav { display: flex; gap: 1.7rem; overflow-x: auto; padding: 1.1rem var(--gutter); border-bottom: 1px solid var(--line); background: var(--paper); white-space: nowrap; }
.subnav a { min-height: 42px; display: inline-flex; align-items: center; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.portfolio-section { padding: var(--section) 0; background: var(--paper); }
.portfolio-section--bone { background: var(--bone); }
.masonry { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: clamp(110px, 11vw, 190px); gap: .6rem; padding: 0 var(--gutter); }
.masonry img { grid-column: span 4; grid-row: span 2; }
.masonry img:nth-child(1), .masonry img:nth-child(6) { grid-column: span 5; grid-row: span 3; }
.masonry img:nth-child(4), .masonry img:nth-child(8) { grid-column: span 7; grid-row: span 2; }
.masonry img:nth-child(9) { grid-column: span 5; }
.portfolio-feature { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 760px; background: var(--rust-dark); color: #fff; }
.portfolio-feature__image { min-height: 760px; }
.portfolio-feature__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem,7vw,7rem); }
.portfolio-feature__copy h2 { max-width: 8ch; }
.portfolio-feature__copy p:not(.eyebrow) { max-width: 40ch; }
.commercial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 0 var(--gutter); }
.commercial-grid figure, .commercial-canvas figure { margin: 0; }
.commercial-grid img { aspect-ratio: 4/5; }
.commercial-grid figcaption, .commercial-canvas figcaption { padding-top: .7rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.event-band { display: grid; grid-template-columns: 1.1fr .9fr; gap: 5vw; padding: var(--section) var(--gutter); background: var(--ink); color: var(--bone); }
.event-band h2 { max-width: 9ch; margin-bottom: 0; }
.event-band > div:last-child { align-self: end; }
.event-band > div:last-child p { max-width: 45ch; color: #c8c0b8; }

.service-index { display: grid; grid-template-columns: repeat(5,1fr); border-bottom: 1px solid var(--line); background: var(--bone); }
.service-index a { min-height: 170px; display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; padding: 1.5rem; border-right: 1px solid var(--line); text-decoration: none; }
.service-index a:last-child { border-right: 0; }
.service-index strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; line-height: 1.05; }
.service-index span { color: var(--muted); font-size: .78rem; }
.service-editorial { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6vw; padding: var(--section) var(--gutter); }
.service-editorial__sticky { align-self: start; position: sticky; top: 7rem; }
.service-editorial__sticky h2 { max-width: 9ch; }
.service-editorial__list { border-top: 1px solid var(--line); }
.service-editorial__list article { padding: 2.5rem 0 3rem; border-bottom: 1px solid var(--line); }
.service-editorial__list h3 { margin-bottom: 1rem; }
.service-editorial__list p { max-width: 60ch; color: #514d48; }
.service-editorial__list a { font-size: .8rem; font-weight: 700; text-transform: uppercase; }
.finishing { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; background: var(--rust-dark); color: #fff; }
.finishing__image { min-height: 650px; }
.finishing > div:last-child { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem,7vw,7rem); }
.finishing h2 { max-width: 9ch; }
.finishing p:not(.eyebrow) { max-width: 50ch; color: #eaded6; }
.tag-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.tag-list span { padding: .55rem .75rem; border: 1px solid rgba(255,255,255,.35); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }

.service-hero { min-height: 760px; display: grid; grid-template-columns: 1.1fr .9fr; background: var(--ink); color: var(--bone); }
.service-hero__image { min-height: 760px; }
.service-hero__copy { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(8rem,13vw,11rem) var(--gutter) clamp(4rem,7vw,6rem); }
.service-hero__copy h1 { max-width: 8ch; }
.service-hero__copy p:not(.eyebrow) { max-width: 48ch; color: #c9c1b8; }
.service-hero__copy .button { align-self: flex-start; margin-top: 1rem; }
.service-hero--events { grid-template-columns: 1.15fr .85fr; background: var(--rust-dark); }
.service-hero__type { display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 7rem 2rem 4rem 0; color: rgba(255,255,255,.88); font-family: var(--serif); font-size: clamp(5rem,10vw,11rem); font-style: italic; letter-spacing: -.07em; line-height: .72; text-align: right; }
.service-hero__type span:nth-child(2) { transform: translateX(-8%); color: rgba(255,255,255,.35); }
.service-hero__type span:nth-child(3) { transform: translateX(12%); }
.service-hero--portrait .service-hero__image img { object-position: 50% 35%; }
.package-intro { display: grid; grid-template-columns: .5fr 1fr .65fr; gap: 3rem; align-items: end; padding: var(--section) var(--gutter) 3rem; background: var(--bone); }
.package-intro h2 { max-width: 10ch; margin-bottom: 0; }
.package-intro > p:last-child { color: var(--muted); }
.packages { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding: 0 var(--gutter) var(--section); background: var(--bone); }
.packages article { min-height: 540px; display: flex; flex-direction: column; padding: 2rem; background: var(--paper); }
.packages article.package--featured { background: var(--ink); color: var(--bone); }
.packages header { padding-bottom: 2rem; border-bottom: 1px solid currentColor; }
.packages h3 { margin-bottom: .4rem; }
.packages header p { color: var(--muted); }
.package--featured header p { color: #bcb3aa; }
.packages strong { display: block; margin-top: 1.5rem; font-family: var(--serif); font-size: clamp(2.6rem,4vw,4.7rem); font-weight: 400; }
.packages ul { margin: 2rem 0 0; padding: 0; list-style: none; }
.packages li { position: relative; padding: .55rem 0 .55rem 1.15rem; border-bottom: 1px solid var(--line); font-size: .88rem; }
.package--featured li { border-bottom-color: var(--line-light); }
.packages li::before { content: "—"; position: absolute; left: 0; }
.gallery-ribbon { display: grid; grid-template-columns: 1fr 1.4fr .8fr; gap: .6rem; padding: .6rem; background: var(--ink); }
.gallery-ribbon figure { min-height: clamp(300px, 50vw, 680px); margin: 0; }
.detail-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; padding: var(--section) var(--gutter); background: var(--paper); }
.detail-split h2 { max-width: 10ch; }
.detail-split > div:last-child { align-self: end; max-width: 53ch; }
.proof-feature { display: grid; grid-template-columns: 1.35fr .65fr; gap: 4vw; align-items: center; padding: var(--section) var(--gutter); background: var(--ink); color: var(--bone); }
.proof-feature h2 { max-width: 12ch; }
.proof-feature p:not(.eyebrow) { max-width: 58ch; color: #c9c1b8; }
.proof-feature__mark { justify-self: end; width: min(310px,100%); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line-light); border-radius: 50%; text-align: center; }
.proof-feature__mark span { font-family: var(--serif); font-size: 4.4rem; font-style: italic; }
.proof-feature__mark small { max-width: 12ch; letter-spacing: .08em; text-transform: uppercase; }
.event-options { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; padding: var(--section) var(--gutter); background: var(--rust-dark); color: #fff; }
.event-options h2 { max-width: 9ch; }
.event-options ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.35); }
.event-options li { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.event-options--light { background: var(--paper); color: var(--ink); }
.event-options--light ul { border-top-color: var(--line); }
.event-options--light li { border-bottom-color: var(--line); }
.portrait-manifesto { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: var(--bone); }
.portrait-manifesto__image { min-height: 680px; }
.portrait-manifesto > div:last-child { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem,7vw,7rem); }
.portrait-manifesto h2 { max-width: 9ch; }
.portrait-manifesto p:not(.eyebrow) { max-width: 48ch; color: #c9c1b8; }

.commercial-hero { min-height: 820px; display: grid; grid-template-columns: 1.2fr .8fr; padding-top: 6rem; background: var(--bone); }
.commercial-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; padding: .6rem; }
.commercial-hero__grid > div:first-child { margin-top: 4rem; }
.commercial-hero__grid > div:last-child { margin-bottom: 4rem; }
.commercial-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem,6vw,6rem); }
.commercial-hero__copy h1 { max-width: 8ch; font-size: clamp(3rem,6vw,7rem); }
.commercial-hero__copy p:not(.eyebrow) { max-width: 42ch; }
.commercial-hero__copy .button { align-self: flex-start; margin-top: 1rem; }
.commercial-purpose { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; padding: var(--section) var(--gutter); background: var(--ink); color: var(--bone); }
.commercial-purpose h2 { max-width: 10ch; }
.commercial-purpose > div:last-child { align-self: end; max-width: 52ch; color: #c9c1b8; }
.commercial-canvas { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; padding: var(--section) var(--gutter); }
.commercial-canvas img { aspect-ratio: 4/5; }
.brief-builder { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6vw; padding: var(--section) var(--gutter); background: var(--rust-dark); color: #fff; }
.brief-builder h2 { max-width: 8ch; }
.brief-builder__items { border-top: 1px solid rgba(255,255,255,.35); }
.brief-builder__items p { display: grid; grid-template-columns: .4fr 1.6fr; gap: 1rem; margin: 0; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.brief-builder__items strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.brief-builder > .button { grid-column: 2; justify-self: start; }

.about-hero { min-height: 820px; display: grid; grid-template-columns: .9fr 1.1fr; background: var(--ink); color: var(--bone); }
.about-hero__copy { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(8rem,14vw,12rem) var(--gutter) clamp(4rem,7vw,6rem); }
.about-hero__copy h1 { max-width: 8ch; }
.about-hero__copy .lede { color: #c9c1b8; }
.about-hero__image { min-height: 820px; }
.about-hero__image img { object-position: center 25%; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; padding: var(--section) var(--gutter); }
.about-story h2 { max-width: 10ch; }
.about-story > div:last-child { align-self: end; max-width: 54ch; color: #514d48; }
.philosophy { display: grid; grid-template-columns: repeat(3,1fr); padding: 0 var(--gutter) var(--section); }
.philosophy p { margin: 0; padding: clamp(2rem,5vw,5rem) .4rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(3rem,7vw,8rem); font-style: italic; letter-spacing: -.06em; text-align: center; }
.philosophy p + p { border-left: 1px solid var(--line); }
.founder-profile { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--ink); color: var(--bone); }
.founder-profile__media { min-height: 760px; display: grid; grid-template-columns: 1fr .72fr; gap: .6rem; padding: .6rem; }
.founder-profile__media img:last-child { margin-top: 16%; height: 68%; }
.founder-profile__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem,7vw,7rem); }
.founder-profile__copy h2 { max-width: 9ch; }
.founder-profile__copy p:not(.eyebrow) { max-width: 49ch; color: #c9c1b8; }

.contact-hero { min-height: 760px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 6vw; align-items: end; padding: clamp(9rem,15vw,13rem) var(--gutter) var(--section); background: var(--ink); color: var(--bone); }
.contact-hero h1 { max-width: 9ch; }
.contact-hero .lede { color: #c9c1b8; }
.contact-card { display: flex; flex-direction: column; padding: clamp(1.8rem,4vw,3.5rem); border: 1px solid var(--line-light); }
.contact-card__name { margin-bottom: .15rem; font-family: var(--serif); font-size: clamp(2rem,4vw,4rem); }
.contact-card > p:nth-child(2) { color: #bcb4ab; }
.contact-card > a { padding: .7rem 0; border-top: 1px solid var(--line-light); font-size: clamp(.95rem,1.5vw,1.15rem); text-decoration: none; overflow-wrap: anywhere; }
.contact-card__social { display: flex; gap: 1.5rem; padding-top: 1.4rem; }
.contact-brief { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; padding: var(--section) var(--gutter); background: var(--bone); }
.contact-brief h2 { max-width: 10ch; }
.contact-brief > div:first-child > p:last-child { max-width: 48ch; }
.contact-brief__actions { display: flex; align-items: flex-end; justify-content: flex-end; gap: .8rem; flex-wrap: wrap; }
.contact-image { height: min(68vw,850px); min-height: 420px; }
.not-found { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 8rem var(--gutter); background: var(--bone); }
.not-found h1 { max-width: 7ch; }
.not-found .actions { margin-top: 1.5rem; }

.site-footer { padding: var(--section) var(--gutter) 2rem; background: var(--ink); color: var(--bone); }
.footer-intro { display: grid; grid-template-columns: .5fr 1.5fr; gap: 4rem; padding-bottom: 5rem; border-bottom: 1px solid var(--line-light); }
.brand--footer { align-self: start; font-size: 1.3rem; }
.footer-intro p { max-width: 16ch; margin: 0; font-family: var(--serif); font-size: clamp(2.3rem,4vw,4.5rem); line-height: 1.02; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 3rem 0; border-bottom: 1px solid var(--line-light); }
.footer-links > div { display: grid; align-content: start; gap: .5rem; }
.footer-links h2 { margin-bottom: .8rem; font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: #c9c1b8; text-decoration: none; overflow-wrap: anywhere; }
.footer-base { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.5rem; color: #8e8780; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.mobile-call { display: none; }

@media (max-width: 1100px) {
  .service-index { grid-template-columns: repeat(2,1fr); }
  .service-index a { border-bottom: 1px solid var(--line); }
  .service-index a:nth-child(even) { border-right: 0; }
  .service-index a:last-child { grid-column: 1 / -1; }
  .section-head { grid-template-columns: .45fr 1.2fr; }
  .section-head > .text-link { grid-column: 2; justify-self: start; }
  .exposure-rail { grid-auto-columns: minmax(290px, 42vw); }
  .commercial-hero { grid-template-columns: 1fr; padding-top: 5.8rem; }
  .commercial-hero__grid { min-height: 620px; }
  .commercial-hero__copy { padding-top: 3rem; padding-bottom: 5rem; }
}

@media (max-width: 820px) {
  :root { --section: 4.7rem; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(1) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: .6rem; padding: 8rem var(--gutter) 5rem; background: var(--ink); color: var(--bone); visibility: hidden; opacity: 0; transform: translateY(-1rem); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav > a { font-family: var(--serif); font-size: clamp(2rem,9vw,4rem); font-weight: 400; letter-spacing: -.03em; text-transform: none; }
  .site-nav > a[aria-current="page"]::after { bottom: .1rem; }
  .site-nav .nav-cta { width: 100%; margin-top: 1rem; font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: 820px; }
  .hero-media { inset: 0; }
  .hero-img { object-position: 68% 50%; }
  .hero-shade { background: linear-gradient(0deg, rgba(10,9,8,.9) 0%, rgba(10,9,8,.58) 55%, rgba(10,9,8,.12) 100%); }
  .hero-copy { display: flex; min-height: 820px; flex-direction: column; justify-content: flex-end; width: auto; padding: 8rem var(--gutter) 5rem; }
  .hero-copy h1 { max-width: 10ch; font-size: clamp(3rem,12.5vw,5.5rem); }
  .hero-copy .lede { max-width: 43ch; font-size: 1rem; }
  .hero-scroll { display: none; }
  .statement, .service-journey, .split-feature, .proof-line, .page-hero, .portfolio-feature, .event-band, .service-editorial, .finishing, .service-hero, .package-intro, .detail-split, .proof-feature, .event-options, .portrait-manifesto, .commercial-purpose, .brief-builder, .about-hero, .about-story, .founder-profile, .contact-hero, .contact-brief { grid-template-columns: 1fr; }
  .statement { gap: 1.5rem; }
  .section-head { grid-template-columns: 1fr; gap: .6rem; }
  .section-head > .text-link { grid-column: auto; }
  .exposure-rail { grid-auto-columns: minmax(285px, 78vw); }
  .service-journey__intro, .service-editorial__sticky { position: static; }
  .service-stack a { grid-template-columns: 1fr; gap: .6rem; }
  .split-feature { min-height: auto; }
  .split-media { min-height: 560px; }
  .proof-line > p { align-self: start; }
  .page-hero { min-height: auto; }
  .page-hero > div:first-child { min-height: 560px; padding-top: 9rem; }
  .page-hero__image { min-height: 520px; }
  .masonry { grid-template-columns: repeat(2,1fr); grid-auto-rows: auto; }
  .masonry img, .masonry img:nth-child(1), .masonry img:nth-child(4), .masonry img:nth-child(6), .masonry img:nth-child(8), .masonry img:nth-child(9) { grid-column: auto; grid-row: auto; aspect-ratio: 4/5; }
  .masonry img:nth-child(3n+1) { grid-column: 1 / -1; aspect-ratio: 16/10; }
  .portfolio-feature__image, .finishing__image, .portrait-manifesto__image { min-height: 560px; }
  .commercial-grid { grid-template-columns: 1fr; }
  .service-index { grid-template-columns: 1fr; }
  .service-index a, .service-index a:nth-child(even) { border-right: 0; }
  .service-index a:last-child { grid-column: auto; }
  .service-index a { min-height: 130px; }
  .service-hero { min-height: auto; }
  .service-hero__image { min-height: 570px; order: 1; }
  .service-hero__copy { min-height: 630px; order: 2; padding-top: 9rem; }
  .service-hero--events .service-hero__copy { order: 1; }
  .service-hero__type { order: 2; min-height: 420px; padding-top: 2rem; }
  .package-intro { gap: 1rem; }
  .packages { grid-template-columns: 1fr; }
  .packages article { min-height: auto; }
  .gallery-ribbon { grid-template-columns: 1fr 1fr; }
  .gallery-ribbon figure:first-child { grid-column: 1 / -1; }
  .proof-feature__mark { justify-self: start; margin-top: 1rem; }
  .commercial-hero__grid { min-height: 540px; }
  .commercial-purpose > div:last-child { align-self: start; }
  .brief-builder > .button { grid-column: auto; justify-self: start; }
  .about-hero { min-height: auto; }
  .about-hero__copy { min-height: 580px; }
  .about-hero__image { min-height: 640px; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy p + p { border-left: 0; border-top: 0; }
  .founder-profile__media { min-height: 610px; }
  .contact-hero { align-items: stretch; }
  .contact-brief__actions { justify-content: flex-start; }
  .footer-intro { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
  :root { --gutter: 1.15rem; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .site-header { padding-top: calc(.9rem + env(safe-area-inset-top)); }
  .brand { font-size: .9rem; }
  .hero { min-height: 760px; }
  .hero-copy { min-height: 760px; padding-top: 7rem; padding-bottom: 3.8rem; }
  .hero-copy h1 { margin-bottom: 1.1rem; font-size: clamp(2.8rem,13vw,4.2rem); }
  .hero-copy .actions { align-items: flex-start; flex-direction: column; gap: .55rem; margin-top: 1.3rem; }
  .statement h2, .section-head h2, .service-journey__intro h2, .final-cta h2 { font-size: clamp(2.3rem,10.5vw,3.7rem); }
  .exposure-rail { grid-auto-columns: 82vw; }
  .exposure { height: 470px; }
  .split-media { min-height: 480px; }
  .split-copy { padding: 3.5rem var(--gutter); }
  .page-hero > div:first-child { min-height: 500px; padding-bottom: 3rem; }
  .page-hero h1 { font-size: clamp(3rem,13vw,4.4rem); }
  .page-hero__image { min-height: 430px; }
  .masonry { gap: .35rem; padding: 0 .35rem; }
  .portfolio-feature__image, .finishing__image, .portrait-manifesto__image { min-height: 480px; }
  .portfolio-feature__copy, .finishing > div:last-child, .portrait-manifesto > div:last-child, .founder-profile__copy { padding: 3.8rem var(--gutter); }
  .commercial-grid { gap: 2.2rem; }
  .service-index a { min-height: 118px; padding: 1.2rem; }
  .service-editorial { gap: 2rem; }
  .service-hero__image { min-height: 470px; }
  .service-hero__copy { min-height: 550px; padding: 8rem var(--gutter) 3.8rem; }
  .service-hero__copy h1 { font-size: clamp(3rem,13vw,4.6rem); }
  .service-hero__type { min-height: 360px; padding-right: .6rem; font-size: 21vw; }
  .package-intro { padding-bottom: 2rem; }
  .packages { padding-right: var(--gutter); padding-left: var(--gutter); }
  .packages article { padding: 1.5rem; }
  .gallery-ribbon { grid-template-columns: 1fr; }
  .gallery-ribbon figure, .gallery-ribbon figure:first-child { grid-column: auto; min-height: 380px; }
  .proof-feature__mark { width: 220px; }
  .commercial-hero__grid { min-height: 450px; }
  .commercial-hero__grid > div:first-child { margin-top: 2rem; }
  .commercial-hero__grid > div:last-child { margin-bottom: 2rem; }
  .commercial-hero__copy { padding: 3.5rem var(--gutter) 5rem; }
  .commercial-canvas { grid-template-columns: 1fr; gap: 2.2rem; }
  .brief-builder__items p { grid-template-columns: 1fr; gap: .2rem; }
  .about-hero__copy { min-height: 530px; padding-top: 8rem; }
  .about-hero__image { min-height: 520px; }
  .founder-profile__media { min-height: 520px; }
  .contact-hero { padding-top: 8rem; }
  .contact-card { padding: 1.4rem; }
  .contact-card__social { flex-direction: column; gap: .55rem; }
  .contact-brief__actions { align-items: stretch; flex-direction: column; }
  .contact-brief__actions .button { width: 100%; }
  .contact-image { min-height: 360px; }
  .footer-links { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-base { flex-direction: column; gap: .6rem; }
  .mobile-call { position: fixed; z-index: 60; right: .7rem; bottom: calc(.65rem + env(safe-area-inset-bottom)); left: .7rem; min-height: 52px; display: flex; align-items: center; justify-content: space-between; padding: .65rem 1rem; border: 1px solid rgba(255,255,255,.18); background: rgba(17,16,15,.96); box-shadow: 0 8px 28px rgba(0,0,0,.28); color: var(--bone); font-size: .73rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; backdrop-filter: blur(12px); }
  .mobile-call strong { font-family: var(--serif); font-size: 1rem; font-weight: 400; letter-spacing: .01em; }
}

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