:root {
  --paper: #f2eee8;
  --paper-2: #e8e1d8;
  --cream: #fbf8f3;
  --ink: #171512;
  --ink-soft: #655f58;
  --smoke: #91877c;
  --accent: #a8513b;
  --gold: #b28e63;
  --rule: rgba(23, 21, 18, .17);
  --rule-light: rgba(255, 255, 255, .24);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 72px));
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .022;
  background-image: url('grain.svg');
  mix-blend-mode: multiply;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 1px solid currentColor; outline-offset: 5px; }
[hidden] { display: none !important; }
.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; }
.shell { width: var(--shell); margin-inline: auto; }

/* Identity */
.brand-lockup { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; color: var(--ink); text-decoration: none; line-height: 1; }
.brand-lockup-light { color: var(--cream); }
.brand-mark {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .28em;
}
.brand-company {
  font-family: var(--sans);
  font-size: .60rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .17em;
  opacity: .78;
}
.overline {
  margin: 0 0 24px;
  font-family: var(--sans);
  font-size: .63rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--smoke);
}
.overline-light { color: rgba(255,255,255,.65); }
em { font-weight: 400; }

/* Navigation */
.site-header {
  width: var(--shell);
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 50;
}
.site-header-overlay { position: absolute; inset: 0 0 auto; color: var(--cream); }
.site-header-paper { background: var(--paper); }
.desktop-nav { display: flex; gap: 28px; }
.desktop-nav a,
.header-cta,
.menu-toggle {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}
.desktop-nav a { opacity: .72; transition: opacity .2s ease; }
.desktop-nav a:hover { opacity: 1; }
.header-cta { justify-self: end; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.header-cta-light { color: var(--cream); }
.menu-toggle { display: none; justify-self: end; border: 0; padding: 8px 0; background: transparent; color: inherit; cursor: pointer; }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(18, 16, 14, .98);
  color: var(--cream);
  padding: 118px 26px 36px;
}
.mobile-nav a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  text-decoration: none;
}
body.menu-open { overflow: hidden; }

/* Home hero */
.hero { position: relative; min-height: 92svh; overflow: hidden; background: #15120f; color: var(--cream); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; transform: scale(1.01); }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,12,10,.58) 0%, rgba(14,12,10,.28) 46%, rgba(14,12,10,.06) 76%),
    linear-gradient(0deg, rgba(14,12,10,.42) 0%, rgba(14,12,10,.04) 55%, rgba(14,12,10,.22) 100%);
}
.hero-content { position: relative; z-index: 2; min-height: 92svh; padding: 142px 0 78px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.9rem, 5.4vw, 6rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.045em;
}
.hero h1 em { color: #ddc2a2; }
.hero-lede { max-width: 500px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.6; }
.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.text-cta,
.ghost-cta {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}
.text-cta { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid currentColor; }
.text-cta-light { color: var(--cream); }
.ghost-cta { color: rgba(255,255,255,.62); }

/* Meaning */
.meaning { padding: clamp(130px, 15vw, 230px) 0; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(70px, 11vw, 160px); align-items: start; }
.meaning-intro h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(3.8rem, 6.2vw, 6.7rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.045em;
}
.meaning-copy { padding-top: 8px; }
.meaning-ever { margin: 0 0 18px; font-family: var(--sans); font-size: clamp(2.5rem, 4.6vw, 4.5rem); font-weight: 600; letter-spacing: .26em; line-height: 1; color: var(--accent); }
.meaning-tagline { margin: 0 0 36px; font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1; letter-spacing: -.02em; }
.meaning-copy > p:last-child { margin: 0; color: var(--ink-soft); font-size: 1.13rem; line-height: 1.7; }

/* Intertitle */
.intertitle { padding: clamp(110px, 13vw, 190px) max(36px, calc((100vw - 1180px) / 2)); }
.intertitle-dark { background: var(--ink); color: var(--cream); }
.intertitle p { margin: 0 0 22px; font-family: var(--sans); font-size: .64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .22em; color: rgba(255,255,255,.45); }
.intertitle h2 { max-width: 1000px; margin: 0; font-size: clamp(4rem, 7.3vw, 8rem); line-height: .86; font-weight: 400; letter-spacing: -.05em; }
.intertitle h2 em { color: #d5b48e; }

/* Films */
.films { background: #0f0e0c; color: var(--cream); }
.films-heading { padding: clamp(120px, 14vw, 210px) 0 clamp(70px, 8vw, 110px); }
.films-heading h2 { margin: 0; font-size: clamp(4rem, 6.5vw, 7rem); line-height: .9; font-weight: 400; letter-spacing: -.045em; }
.films-heading h2 em { color: #c5a785; }
.film-chapter { position: relative; min-height: 86svh; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); }
.film-chapter > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.01); }
.chapter-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,10,9,.82), rgba(12,10,9,.22) 55%, rgba(12,10,9,.08)), linear-gradient(0deg, rgba(12,10,9,.62), transparent 50%); }
.film-chapter-right .chapter-shade { background: linear-gradient(270deg, rgba(12,10,9,.82), rgba(12,10,9,.2) 55%, rgba(12,10,9,.08)), linear-gradient(0deg, rgba(12,10,9,.62), transparent 50%); }
.chapter-copy { position: relative; z-index: 2; min-height: 86svh; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding-bottom: clamp(60px, 7vw, 92px); }
.film-chapter-right .chapter-copy { align-items: flex-end; text-align: right; }
.chapter-number { margin: 0 0 14px; font-family: var(--sans); font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.58); }
.chapter-copy h3 { max-width: 720px; margin: 0; font-size: clamp(3.8rem, 6.7vw, 7rem); line-height: .88; font-weight: 400; letter-spacing: -.045em; }
.chapter-copy h3 em { color: #e0c5a8; }
.chapter-copy > p:not(.chapter-number) { max-width: 520px; margin: 24px 0 30px; color: rgba(255,255,255,.76); font-size: 1.15rem; line-height: 1.55; }

/* Process */
.process { padding: clamp(130px, 15vw, 220px) 0; }
.section-heading { max-width: 860px; }
.section-heading h2 em { color: var(--accent); }
.process-lines { list-style: none; margin: 86px 0 0; padding: 0; border-top: 1px solid var(--rule); }
.process-lines li { display: grid; grid-template-columns: 72px 1fr; gap: 28px; padding: 34px 0 40px; border-bottom: 1px solid var(--rule); }
.process-lines li > span { padding-top: 6px; font-family: var(--sans); font-size: .62rem; font-weight: 600; letter-spacing: .16em; color: var(--smoke); }
.process-lines h3 { margin: 0 0 8px; font-size: clamp(2.2rem, 3.8vw, 3.7rem); line-height: 1; font-weight: 400; }
.process-lines p { max-width: 760px; margin: 0; color: var(--ink-soft); font-size: 1.08rem; }

/* Human-led storytelling */
.human-story { background: #11100e; color: var(--cream); padding: clamp(130px, 15vw, 220px) 0; }
.human-story-inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(70px, 10vw, 150px); align-items: start; }
.human-story-lead { position: sticky; top: 110px; }
.human-story-kicker { max-width: 520px; margin: 0 0 24px; color: rgba(255,255,255,.58); font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.human-story h2 { max-width: 760px; margin: 0; font-size: clamp(4rem, 6.4vw, 7rem); line-height: .86; font-weight: 400; letter-spacing: -.05em; }
.human-story h2 em { color: #d8b794; }
.human-story-declaration { margin: 34px 0 0; color: #d8b794; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.05; font-style: italic; }
.human-story-copy { padding-top: 12px; }
.human-story-copy > p { margin: 0 0 28px; color: rgba(255,255,255,.72); font-size: 1.12rem; line-height: 1.7; }
.human-story-copy strong { color: var(--cream); font-weight: 500; }
.human-story-cannot { margin: 42px 0 !important; color: var(--cream) !important; font-size: clamp(2rem, 3.1vw, 3.05rem) !important; line-height: 1.08 !important; letter-spacing: -.025em; }
.human-story blockquote { margin: 58px 0 48px; padding: 0; border: 0; color: var(--cream); font-size: clamp(2.6rem, 4.5vw, 4.8rem); line-height: .95; letter-spacing: -.035em; }
.human-story blockquote em { color: #d8b794; }
.human-story-ever { padding-top: 28px; border-top: 1px solid var(--rule-light); font-family: var(--sans); font-size: .72rem !important; letter-spacing: .08em; text-transform: uppercase; }
.human-story-ever span { display: inline-block; margin-right: 14px; color: #d8b794; font-size: 1.3rem; font-weight: 600; letter-spacing: .26em; }
.human-story-ever small { display: inline-block; margin-top: 10px; color: rgba(255,255,255,.43); font-size: .6rem; letter-spacing: .04em; text-transform: none; }
.human-promise { margin-top: 24px !important; padding-top: 22px; border-top: 1px solid var(--rule); font-family: var(--sans); font-size: .72rem !important; line-height: 1.65 !important; letter-spacing: .015em; color: var(--ink-soft); }
.human-promise strong { color: var(--ink); font-weight: 600; }

/* Memory peak */
.memory-line { position: relative; min-height: 78svh; overflow: hidden; background: #29241f; color: var(--cream); }
.memory-line > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.memory-line-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,12,10,.68), rgba(14,12,10,.06) 68%); }
.memory-line-copy { position: relative; z-index: 2; min-height: 78svh; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(60px, 7vw, 96px); }
.memory-line h2 { max-width: 920px; margin: 0; font-size: clamp(3.8rem, 6.6vw, 7rem); line-height: .88; font-weight: 400; letter-spacing: -.045em; }
.memory-line h2 em { color: #ead4bc; }

/* Pricing */
.pricing { background: var(--ink); color: var(--cream); padding: clamp(130px, 15vw, 220px) 0; }
.section-heading-light h2 { color: var(--cream); }
.section-heading-light h2 em { color: #d6b590; }
.price-lines { margin-top: 86px; border-top: 1px solid var(--rule-light); }
.price-lines article { display: grid; grid-template-columns: 1.1fr 1.1fr .72fr auto; gap: 44px; align-items: center; padding: 32px 0 38px; border-bottom: 1px solid var(--rule-light); }
.price-name { display: flex; align-items: baseline; gap: 20px; }
.price-name span { font-family: var(--sans); font-size: .58rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.42); white-space: nowrap; }
.price-name h3 { margin: 0; font-size: clamp(2.3rem, 3.7vw, 3.8rem); font-weight: 400; line-height: 1; }
.price-lines article > p { margin: 0; color: rgba(255,255,255,.63); }
.price-meta { font-family: var(--sans); font-size: .62rem; line-height: 1.5; letter-spacing: .07em; text-transform: uppercase; }
.price-lines strong { font-size: 1.55rem; font-weight: 500; }
.price-featured .price-name h3 { color: #e2c3a1; }
.pricing-cta { margin-top: 52px; }

/* FAQ */
.faq { padding: clamp(130px, 15vw, 220px) 0; display: grid; grid-template-columns: .75fr 1fr; gap: clamp(70px, 11vw, 150px); align-items: start; }
.faq .section-heading { position: sticky; top: 110px; }
.faq-lines { border-top: 1px solid var(--rule); }
.faq-lines details { border-bottom: 1px solid var(--rule); }
.faq-lines summary { list-style: none; cursor: pointer; padding: 26px 0; font-size: 1.42rem; line-height: 1.2; }
.faq-lines summary::-webkit-details-marker { display: none; }
.faq-lines p { margin: -4px 0 28px; color: var(--ink-soft); line-height: 1.65; }

/* Finale */
.finale { position: relative; min-height: 90svh; overflow: hidden; background: #161310; color: var(--cream); }
.finale > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.finale-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,10,8,.78), rgba(12,10,8,.24) 62%, rgba(12,10,8,.12)), linear-gradient(0deg, rgba(12,10,8,.62), transparent 60%); }
.finale-copy { position: relative; z-index: 2; min-height: 90svh; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding-bottom: clamp(66px, 8vw, 110px); }
.finale h2 { max-width: 900px; margin: 0; font-size: clamp(4rem, 7vw, 7.6rem); line-height: .86; font-weight: 400; letter-spacing: -.05em; }
.finale h2 em { color: #ead2b6; }
.finale-copy > p:not(.overline) { max-width: 540px; margin: 28px 0 34px; color: rgba(255,255,255,.72); font-size: 1.16rem; }

/* Footer */
.site-footer { min-height: 132px; padding: 34px 0 42px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: end; border-top: 1px solid var(--rule); }
.site-footer > p { margin: 0; color: var(--ink-soft); font-size: .92rem; font-style: italic; }
.copyright { justify-self: end; font-family: var(--sans); font-size: .56rem !important; font-style: normal !important; letter-spacing: .14em; text-transform: uppercase; }

/* Intake */
.commission-page,
.thanks-page { background: var(--paper); }
.commission-layout { min-height: calc(100svh - 88px); display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); }
.commission-main { padding: clamp(70px, 7vw, 110px) max(48px, calc((100vw - 1180px) / 2)); padding-right: clamp(60px, 7vw, 100px); }
.commission-intro { max-width: 740px; margin-bottom: 72px; }
.commission-intro h1,
.thanks-copy h1 { margin: 0; font-size: clamp(4rem, 6.3vw, 6.8rem); font-weight: 400; line-height: .88; letter-spacing: -.05em; }
.commission-intro h1 em,
.thanks-copy h1 em { color: var(--accent); }
.commission-intro > p:last-child { max-width: 600px; margin: 28px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.commission-image { position: relative; min-height: calc(100svh - 88px); overflow: hidden; background: #2b2622; }
.commission-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.commission-image-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,10,9,.68), rgba(12,10,9,.08) 66%); }
.commission-image-copy { position: absolute; z-index: 2; left: 36px; right: 36px; bottom: 36px; color: var(--cream); }
.commission-image-copy .brand-mark { font-size: 2.4rem; opacity: .86; }
.commission-image-copy p:last-child { margin: 12px 0 0; font-style: italic; font-size: 1.2rem; }
.intake-progress { max-width: 760px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; margin-bottom: 70px; color: var(--ink-soft); font-family: var(--sans); text-transform: uppercase; letter-spacing: .15em; font-size: .58rem; }
.progress-track { height: 1px; background: var(--rule); overflow: hidden; }
.progress-track span { display: block; height: 100%; width: 20%; background: var(--accent); transition: width .4s var(--ease); }
.intake-form { max-width: 760px; }
.form-step { animation: quietReveal .45s var(--ease) both; }
@keyframes quietReveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step-heading { margin-bottom: 54px; }
.step-number { margin: 0 0 16px; font-family: var(--sans); color: var(--accent); font-size: .62rem; font-weight: 600; letter-spacing: .18em; }
.step-heading h2,
.recommendation-stage h2 { margin: 0; font-size: clamp(3rem, 4.8vw, 5rem); font-weight: 400; letter-spacing: -.045em; line-height: .94; }
.step-heading > p:last-child { max-width: 560px; margin: 18px 0 0; color: var(--ink-soft); }
.choice-list { margin: 0; padding: 0; border: 0; border-top: 1px solid var(--rule); }
.choice-row { display: grid; grid-template-columns: 24px 1fr; gap: 18px; align-items: start; padding: 23px 0 25px; border-bottom: 1px solid var(--rule); cursor: pointer; }
.choice-row input { width: 14px; height: 14px; margin: 6px 0 0; accent-color: var(--accent); }
.choice-row strong { display: block; font-size: 1.45rem; font-weight: 400; line-height: 1.1; }
.choice-row small { display: block; margin-top: 6px; color: var(--ink-soft); font-family: var(--sans); font-size: .72rem; line-height: 1.5; }
.intake-form label:not(.choice-row) { display: block; margin: 0 0 34px; color: var(--ink-soft); font-family: var(--sans); font-size: .72rem; letter-spacing: .04em; }
.intake-form input[type="text"],
.intake-form textarea { width: 100%; margin-top: 10px; border: 0; border-bottom: 1px solid var(--rule); border-radius: 0; padding: 10px 0 14px; background: transparent; color: var(--ink); outline: none; font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; resize: vertical; }
.intake-form input[type="text"]:focus,
.intake-form textarea:focus { border-bottom-color: var(--accent); }
.intake-form ::placeholder { color: #a59b90; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.step-actions { margin-top: 48px; display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.step-actions-end { justify-content: flex-end; }
.step-actions-left { justify-content: flex-start; margin-top: 38px; }
.editorial-button,
.back-button { border: 0; background: transparent; color: var(--ink); cursor: pointer; font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.editorial-button { padding: 0 0 6px; border-bottom: 1px solid var(--accent); }
.back-button { color: var(--ink-soft); padding: 8px 0; }
.recommendation-label { margin: 0 0 14px; color: var(--ink-soft); font-family: var(--sans); text-transform: uppercase; letter-spacing: .17em; font-size: .6rem; }
.recommendation-price { margin: 24px 0 28px; font-size: 1.5rem; }
.recommendation-copy { max-width: 560px; margin: 0; color: var(--ink-soft); font-size: 1.2rem; }
.recommendation-includes { list-style: none; padding: 0; margin: 44px 0 0; border-top: 1px solid var(--rule); }
.recommendation-includes li { padding: 14px 0; border-bottom: 1px solid var(--rule); color: var(--ink-soft); }
.recommendation-actions { margin-top: 48px; display: flex; gap: 38px; align-items: center; flex-wrap: wrap; }
.text-link { font-family: var(--sans); font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 4px; }

/* Thanks */
.thanks-layout { min-height: calc(100svh - 88px); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 11vw, 170px); align-items: center; padding: 7vh 0 10vh; }
.thanks-image { margin: 0; height: min(68vh, 720px); overflow: hidden; background: #d5ccc0; }
.thanks-image img { width: 100%; height: 100%; object-fit: cover; }
.thanks-copy { max-width: 650px; }
.thanks-ever { margin: 0 0 18px; font-family: var(--sans); font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 600; letter-spacing: .28em; color: var(--accent); }
.thanks-copy > p:not(.overline):not(.thanks-ever):not(.thanks-tagline) { margin: 30px 0 0; color: var(--ink-soft); font-size: 1.15rem; line-height: 1.65; }
.thanks-tagline { margin: 34px 0 38px; font-size: 1.4rem; font-style: italic; color: var(--ink); }

/* Responsive */
@media (max-width: 980px) {
  :root { --shell: min(900px, calc(100vw - 48px)); }
  .site-header { min-height: 76px; grid-template-columns: 1fr auto; }
  .desktop-nav, .site-header .header-cta { display: none; }
  .menu-toggle { display: block; }
  .meaning { grid-template-columns: 1fr; gap: 60px; }
  .meaning-copy { max-width: 620px; }
  .human-story-inner { grid-template-columns: 1fr; gap: 64px; }
  .human-story-lead { position: static; }
  .faq { grid-template-columns: 1fr; }
  .faq .section-heading { position: static; }
  .price-lines article { grid-template-columns: 1fr 1fr auto; }
  .price-lines article > p:first-of-type { grid-column: 1 / 3; grid-row: 2; }
  .price-meta { grid-column: 1 / 3; grid-row: 3; }
  .price-lines strong { grid-column: 3; grid-row: 1; }
  .commission-layout { grid-template-columns: 1fr; }
  .commission-image { min-height: 46svh; order: -1; }
  .commission-main { padding: 80px 24px 110px; }
  .thanks-layout { grid-template-columns: 1fr; padding-top: 30px; }
  .thanks-image { height: 48svh; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 40px); }
  body { font-size: 17px; }
  .site-header { width: calc(100vw - 36px); min-height: 68px; }
  .brand-mark { font-size: 1.02rem; }
  .brand-company { font-size: .50rem; }
  .hero { min-height: 88svh; }
  .hero-image { object-position: 56% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(14,12,10,.72) 0%, rgba(14,12,10,.12) 70%, rgba(14,12,10,.20) 100%); }
  .hero-content { min-height: 88svh; padding: 112px 0 54px; justify-content: flex-end; }
  .hero h1 { max-width: 11ch; font-size: clamp(3rem, 12.5vw, 4.4rem); line-height: .88; }
  .hero-lede { max-width: 31ch; margin-top: 22px; font-size: .98rem; line-height: 1.55; }
  .hero-actions { margin-top: 26px; gap: 20px; }
  .meaning { padding: 100px 0; gap: 48px; }
  .meaning-intro h2, .section-heading h2 { font-size: clamp(3.2rem, 14vw, 4.8rem); }
  .meaning-ever { font-size: 3.2rem; }
  .meaning-tagline { font-size: 2.1rem; }
  .intertitle { padding: 100px 20px; }
  .intertitle h2 { font-size: clamp(3.6rem, 16vw, 5.6rem); }
  .films-heading { padding: 100px 0 64px; }
  .films-heading h2 { font-size: clamp(3.4rem, 15vw, 5rem); }
  .film-chapter { min-height: 72svh; }
  .film-chapter > img { object-position: center; }
  .chapter-shade,
  .film-chapter-right .chapter-shade { background: linear-gradient(0deg, rgba(12,10,9,.82), rgba(12,10,9,.04) 72%); }
  .chapter-copy,
  .film-chapter-right .chapter-copy { min-height: 72svh; padding-bottom: 32px; align-items: flex-start; text-align: left; }
  .chapter-copy h3 { max-width: 12ch; font-size: clamp(3.1rem, 14.5vw, 4.8rem); }
  .chapter-copy > p:not(.chapter-number) { max-width: 32ch; margin: 18px 0 24px; font-size: 1rem; }
  .process { padding: 100px 0; }
  .human-story { padding: 100px 0; }
  .human-story-inner { gap: 50px; }
  .human-story h2 { font-size: clamp(3.45rem, 15vw, 5.2rem); }
  .human-story-cannot { font-size: clamp(2rem, 9vw, 2.85rem) !important; }
  .human-story blockquote { margin: 44px 0 38px; font-size: clamp(2.7rem, 12vw, 4rem); }
  .process-lines { margin-top: 56px; }
  .process-lines li { grid-template-columns: 42px 1fr; gap: 18px; padding: 26px 0 30px; }
  .process-lines h3 { font-size: 2.25rem; }
  .memory-line { min-height: 70svh; }
  .memory-line > img { object-position: center; }
  .memory-line-copy { min-height: 70svh; padding-bottom: 34px; }
  .memory-line h2 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .pricing { padding: 100px 0; }
  .price-lines { margin-top: 56px; }
  .price-lines article { display: grid; grid-template-columns: 1fr auto; gap: 12px 22px; align-items: start; padding: 26px 0 30px; }
  .price-name { grid-column: 1 / -1; display: block; }
  .price-name span { display: block; margin-bottom: 8px; }
  .price-name h3 { font-size: 2.75rem; }
  .price-lines article > p:first-of-type { grid-column: 1 / -1; grid-row: auto; }
  .price-meta { grid-column: 1; grid-row: auto; }
  .price-lines strong { grid-column: 2; grid-row: 3; align-self: end; }
  .faq { padding: 100px 0; gap: 56px; }
  .faq-lines summary { font-size: 1.28rem; }
  .finale { min-height: 78svh; }
  .finale-shade { background: linear-gradient(0deg, rgba(12,10,8,.82), rgba(12,10,8,.06) 72%); }
  .finale-copy { min-height: 78svh; padding-bottom: 36px; }
  .finale h2 { font-size: clamp(3.5rem, 15.5vw, 5.3rem); }
  .site-footer { min-height: 0; padding: 34px 0 42px; grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .copyright { justify-self: start; }
  .commission-image { min-height: 38svh; }
  .commission-image-copy { left: 20px; right: 20px; bottom: 20px; }
  .commission-main { padding: 68px 20px 96px; }
  .commission-intro { margin-bottom: 56px; }
  .commission-intro h1, .thanks-copy h1 { font-size: clamp(3.3rem, 15vw, 4.8rem); }
  .intake-progress { margin-bottom: 54px; gap: 14px; }
  .step-heading h2, .recommendation-stage h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .field-pair { grid-template-columns: 1fr; gap: 0; }
  .step-actions { align-items: flex-start; }
  .recommendation-actions { align-items: flex-start; }
  .thanks-layout { width: calc(100vw - 40px); padding: 10px 0 80px; gap: 52px; }
  .thanks-image { height: 42svh; }
}

@media (max-width: 390px) {
  :root { --shell: calc(100vw - 32px); }
  .site-header { width: calc(100vw - 30px); }
  .hero h1 { font-size: 2.95rem; }
  .chapter-copy h3 { font-size: 3rem; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions-end { flex-direction: row; }
}

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