:root {
  --ink: #080807;
  --ink-soft: #11100e;
  --paper: #e8e3d8;
  --paper-muted: #a8a296;
  --paper-faint: rgba(232, 227, 216, .62);
  --line: rgba(232, 227, 216, .16);
  --line-strong: rgba(232, 227, 216, .3);
  --ember: #b85d30;
  --ember-soft: #dc8f5a;
  --danger: #8f271b;
  --max-width: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
body.is-loading { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

::selection { color: #11100e; background: var(--ember-soft); }

.site-container { width: min(var(--max-width), calc(100% - 64px)); margin: 0 auto; }
.section { position: relative; padding: clamp(98px, 12vw, 176px) 0; }

.film-grain,
.site-vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
}
.film-grain {
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.site-vignette {
  z-index: 79;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, .72);
}

.site-loader {
  align-items: center;
  background: #050504;
  display: flex;
  flex-direction: column;
  gap: 18px;
  inset: 0;
  justify-content: center;
  position: fixed;
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
  z-index: 100;
}
.site-loader.is-hidden { opacity: 0; visibility: hidden; }
.site-loader__mark {
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: .15em;
  line-height: .8;
  padding-left: .15em;
}
.site-loader__line { width: 152px; height: 1px; background: rgba(232, 227, 216, .22); overflow: hidden; }
.site-loader__line span { display: block; width: 36%; height: 100%; background: var(--ember-soft); animation: loader-scan 1.25s ease-in-out infinite; }
.site-loader__copy { color: var(--paper-muted); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; }
@keyframes loader-scan { from { transform: translateX(-120%); } to { transform: translateX(420%); } }

.site-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 60;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(8, 8, 7, .88);
  border-bottom: 1px solid rgba(232, 227, 216, .12);
  backdrop-filter: blur(14px);
}
.header-shell {
  align-items: center;
  display: flex;
  height: 84px;
  justify-content: space-between;
  margin: 0 auto;
  width: min(var(--max-width), calc(100% - 64px));
}
.wordmark { display: inline-flex; flex-direction: column; gap: 3px; line-height: 1; position: relative; z-index: 2; }
.wordmark__name {
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.65rem;
  letter-spacing: .16em;
  padding-left: .16em;
}
.wordmark__studio { color: var(--paper-muted); font-size: .54rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.header-actions { align-items: center; display: flex; gap: 22px; }
.main-nav { align-items: center; display: flex; gap: 22px; }
.main-nav a {
  color: rgba(232, 227, 216, .74);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  position: relative;
  text-transform: uppercase;
  transition: color .25s var(--ease);
}
.main-nav a::after { background: var(--ember-soft); bottom: -8px; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); width: 100%; }
.main-nav a:hover, .main-nav a.is-active { color: var(--paper); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.audio-control {
  align-items: center;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--paper);
  cursor: pointer;
  display: flex;
  gap: 9px;
  min-height: 34px;
  padding: 0 0 0 18px;
  text-align: left;
}
.audio-control:focus-visible, .menu-toggle:focus-visible, .button:focus-visible, .text-link:focus-visible, .gallery-item:focus-visible, .trailer-start:focus-visible, .lightbox__close:focus-visible { outline: 2px solid var(--ember-soft); outline-offset: 4px; }
.audio-control__icon { align-items: flex-end; display: flex; gap: 2px; height: 16px; width: 16px; }
.audio-control__icon span { background: var(--paper); display: block; height: 35%; opacity: .46; transition: height .25s var(--ease), opacity .25s var(--ease); width: 2px; }
.audio-control__icon span:nth-child(2) { height: 65%; }
.audio-control__icon span:nth-child(3) { height: 100%; }
.audio-control.is-playing .audio-control__icon span { animation: sound-bar .9s ease-in-out infinite alternate; opacity: 1; }
.audio-control.is-playing .audio-control__icon span:nth-child(2) { animation-delay: -.4s; }
.audio-control.is-playing .audio-control__icon span:nth-child(3) { animation-delay: -.68s; }
@keyframes sound-bar { from { transform: scaleY(.35); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }
.audio-control__copy { display: flex; flex-direction: column; line-height: 1.05; }
.audio-control__copy strong { font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.audio-control__copy small { color: var(--paper-muted); font-size: .53rem; letter-spacing: .08em; margin-top: 3px; text-transform: uppercase; }
.audio-control__state { color: var(--ember-soft); font-size: .57rem; font-weight: 800; letter-spacing: .1em; margin-left: 2px; }

.menu-toggle { background: transparent; border: 0; cursor: pointer; display: none; height: 36px; padding: 8px 0 8px 8px; width: 34px; }
.menu-toggle span { background: var(--paper); display: block; height: 1px; margin: 6px 0; transition: transform .25s var(--ease); width: 24px; }
.menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { background: rgba(8, 8, 7, .97); border-bottom: 1px solid var(--line); padding: 14px 32px 26px; }
.mobile-nav a { border-top: 1px solid var(--line); color: var(--paper); display: block; font-size: .76rem; font-weight: 800; letter-spacing: .14em; padding: 17px 0; text-transform: uppercase; }
.mobile-nav a:last-child { border-bottom: 1px solid var(--line); }

.hero { align-items: flex-end; background: #0d0907; display: flex; min-height: 100svh; overflow: hidden; padding: 132px 0 68px; position: relative; }
.hero__visual {
  background-image: linear-gradient(90deg, rgba(4, 4, 3, .85) 0%, rgba(5, 4, 3, .37) 54%, rgba(5, 4, 3, .76) 100%), linear-gradient(0deg, rgba(5, 4, 3, .9) 0%, rgba(5, 4, 3, 0) 42%), url("../assets/images/hero-ritual.png");
  background-position: center;
  background-size: cover;
  inset: -18px;
  position: absolute;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.035);
  transition: transform 1.3s cubic-bezier(.16, .84, .44, 1);
  z-index: 0;
}
.hero__visual::after { background: linear-gradient(180deg, rgba(8, 8, 7, .36), transparent 25%, transparent 70%, rgba(8, 8, 7, .93)); content: ""; inset: 0; position: absolute; }
.hero__smoke { background: rgba(204, 186, 159, .075); border-radius: 50%; filter: blur(48px); height: 36vw; pointer-events: none; position: absolute; width: 36vw; }
.hero__smoke--one { animation: drift-one 20s ease-in-out infinite alternate; right: 6%; top: 9%; }
.hero__smoke--two { animation: drift-two 24s ease-in-out infinite alternate; bottom: 9%; left: 18%; }
@keyframes drift-one { from { transform: translate3d(-3vw, 0, 0) scale(.8); opacity: .22; } to { transform: translate3d(5vw, 5vh, 0) scale(1.2); opacity: .7; } }
@keyframes drift-two { from { transform: translate3d(2vw, 4vh, 0) scale(.9); opacity: .15; } to { transform: translate3d(-7vw, -2vh, 0) scale(1.25); opacity: .45; } }
.hero__gridline { border-left: 1px solid rgba(232, 227, 216, .12); bottom: 0; left: max(calc((100% - var(--max-width)) / 2 + 18px), 8vw); position: absolute; top: 0; z-index: 1; }
.hero__content { align-items: end; display: grid; gap: 50px; grid-template-columns: minmax(0, 1fr) minmax(240px, 300px); position: relative; z-index: 2; }
.hero__main { max-width: 780px; }
.kicker, .eyebrow { align-items: center; color: var(--paper-faint); display: flex; font-size: .65rem; font-weight: 800; gap: 10px; letter-spacing: .17em; margin: 0 0 20px; text-transform: uppercase; }
.kicker span { background: var(--ember-soft); display: inline-block; height: 7px; width: 7px; }
.hero h1 { color: var(--paper); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(6.7rem, 19vw, 15rem); font-weight: 400; letter-spacing: -.025em; line-height: .72; margin: 0; text-shadow: 0 16px 38px rgba(0, 0, 0, .34); }
.hero__statement { color: var(--paper); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 3.1vw, 3rem); font-weight: 400; letter-spacing: -.045em; line-height: 1; margin: 29px 0 18px; }
.hero__statement em { color: var(--ember-soft); font-style: italic; }
.hero__description { color: rgba(232, 227, 216, .79); font-size: clamp(.92rem, 1.25vw, 1.08rem); line-height: 1.75; margin: 0; max-width: 560px; }
.hero__actions { align-items: center; display: flex; flex-wrap: wrap; gap: 25px; margin-top: 31px; }
.button { align-items: center; border: 1px solid var(--paper); display: inline-flex; font-size: .69rem; font-weight: 900; gap: 10px; justify-content: center; letter-spacing: .14em; min-height: 48px; padding: 0 20px; text-transform: uppercase; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button--solid { background: var(--paper); color: #11100e; }
.button--solid:hover { background: var(--ember-soft); border-color: var(--ember-soft); }
.button--outline { background: transparent; border-color: rgba(232, 227, 216, .56); color: var(--paper); }
.button--outline:hover { background: var(--paper); color: var(--ink); }
.button__glyph { font-size: .64rem; }
.text-link { color: var(--paper); font-size: .66rem; font-weight: 900; letter-spacing: .14em; padding-bottom: 5px; position: relative; text-transform: uppercase; }
.text-link::after { background: var(--ember-soft); bottom: 0; content: ""; height: 1px; left: 0; position: absolute; transition: width .25s var(--ease); width: 34px; }
.text-link:hover::after { width: 100%; }
.text-link span { color: var(--ember-soft); margin-left: 6px; }
.hero__brief { align-items: flex-start; border-left: 1px solid rgba(232, 227, 216, .45); display: grid; gap: 18px; grid-template-columns: auto 1fr; padding: 3px 0 3px 18px; }
.hero__brief-index { color: var(--ember-soft); font-size: .64rem; font-weight: 900; letter-spacing: .12em; }
.hero__brief-title { color: var(--paper); font-size: .91rem; font-weight: 800; letter-spacing: .025em; margin: 0 0 7px; }
.hero__brief p:last-child { color: rgba(232, 227, 216, .68); font-size: .8rem; line-height: 1.65; margin: 0; }
.scroll-cue { align-items: center; bottom: 26px; color: rgba(232, 227, 216, .65); display: flex; font-size: .58rem; font-weight: 800; gap: 12px; letter-spacing: .15em; left: 50%; position: absolute; text-transform: uppercase; transform: translateX(-50%); white-space: nowrap; z-index: 3; }
.scroll-cue i { border-bottom: 1px solid var(--paper); border-right: 1px solid var(--paper); display: block; height: 7px; transform: rotate(45deg) translateY(-2px); width: 7px; animation: cue-drop 1.8s ease-in-out infinite; }
@keyframes cue-drop { 0%, 100% { opacity: .35; transform: rotate(45deg) translate(0, 0); } 50% { opacity: 1; transform: rotate(45deg) translate(3px, 3px); } }

.section-intro { max-width: 730px; }
.section-intro--wide { max-width: 860px; }
.eyebrow { color: var(--paper-muted); gap: 12px; margin-bottom: 22px; }
.eyebrow span { color: var(--ember-soft); }
.eyebrow--light { color: rgba(232, 227, 216, .75); }
.section-intro h2, .closing h2 { color: var(--paper); font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6vw, 6.45rem); font-weight: 400; letter-spacing: -.065em; line-height: .89; margin: 0; }
.story { background: #0b0b09; overflow: hidden; }
.story::before { border-top: 1px solid rgba(232, 227, 216, .1); content: ""; left: 0; position: absolute; right: 0; top: 0; }
.story-layout { align-items: start; display: grid; gap: clamp(44px, 8vw, 132px); grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); margin-top: clamp(46px, 7vw, 88px); }
.story-copy { max-width: 530px; padding-top: 12px; }
.story-copy p { color: rgba(232, 227, 216, .73); font-size: clamp(.95rem, 1.17vw, 1.08rem); line-height: 1.82; margin: 0 0 23px; }
.story-copy .lead-copy { color: var(--paper); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 2vw, 1.82rem); letter-spacing: -.027em; line-height: 1.34; }
.story-frame { margin: 0; position: relative; }
.story-frame::before { border: 1px solid rgba(232, 227, 216, .21); content: ""; inset: -13px 13px 13px -13px; pointer-events: none; position: absolute; }
.story-frame img { filter: saturate(.72) contrast(1.07); height: clamp(340px, 41vw, 600px); object-fit: cover; width: 100%; }
.story-frame figcaption { align-items: center; border-top: 1px solid var(--line); color: var(--paper-muted); display: flex; font-size: .59rem; font-weight: 800; justify-content: space-between; letter-spacing: .14em; margin-top: 14px; padding-top: 12px; text-transform: uppercase; }
.story-frame figcaption span:last-child { color: var(--paper); }

.fracture { align-items: center; display: flex; min-height: 64vh; overflow: hidden; position: relative; }
.fracture__image { background: linear-gradient(90deg, rgba(8, 8, 7, .92), rgba(8, 8, 7, .46) 52%, rgba(8, 8, 7, .78)), url("../assets/images/living-room.jpg") center/cover no-repeat; inset: 0; position: absolute; }
.fracture__image::after { background: rgba(116, 49, 27, .16); content: ""; inset: 0; mix-blend-mode: color; position: absolute; }
.fracture__content { max-width: 850px; padding: clamp(104px, 15vw, 190px) 0; position: relative; z-index: 1; }
.fracture blockquote { color: var(--paper); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.35rem, 5vw, 5.4rem); letter-spacing: -.065em; line-height: .91; margin: 0; max-width: 900px; }
.fracture__note { border-left: 1px solid var(--ember-soft); color: var(--paper-faint); font-size: .9rem; line-height: 1.65; margin: 32px 0 0; padding-left: 14px; }

.experience { background: #090908; }
.experience-header { align-items: end; display: grid; gap: 60px; grid-template-columns: minmax(0, 1fr) minmax(290px, .7fr); }
.experience-header__copy { color: var(--paper-faint); font-size: 1rem; line-height: 1.75; margin: 0 0 8px; max-width: 410px; }
.feature-list { border-top: 1px solid var(--line); margin-top: clamp(50px, 8vw, 100px); }
.feature-row { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 32px; grid-template-columns: 54px minmax(210px, .72fr) minmax(240px, 1fr) 22px; min-height: 134px; padding: 26px 0; position: relative; transition: padding .35s var(--ease), background .35s var(--ease); }
.feature-row::before { background: rgba(184, 93, 48, .1); content: ""; inset: 0 -100vw; opacity: 0; pointer-events: none; position: absolute; transition: opacity .3s var(--ease); }
.feature-row > * { position: relative; z-index: 1; }
.feature-row:hover { padding-left: 14px; padding-right: 14px; }
.feature-row:hover::before { opacity: 1; }
.feature-row__number { color: var(--ember-soft); font-size: .67rem; font-weight: 800; letter-spacing: .12em; }
.feature-row__title { color: var(--paper); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2vw, 1.85rem); letter-spacing: -.04em; line-height: 1.1; }
.feature-row p { color: var(--paper-faint); font-size: .87rem; line-height: 1.65; margin: 0; max-width: 470px; }
.feature-row__mark { color: var(--paper-muted); font-size: 1.15rem; transition: color .3s var(--ease), transform .3s var(--ease); }
.feature-row:hover .feature-row__mark { color: var(--ember-soft); transform: translate(4px, -4px); }

.gallery { background: #0e0d0b; overflow: hidden; }
.gallery::before { background: rgba(184, 93, 48, .09); content: ""; filter: blur(80px); height: 44vw; left: -16vw; position: absolute; top: 13%; width: 50vw; }
.gallery-head, .trailer-head { align-items: end; display: flex; gap: 60px; justify-content: space-between; position: relative; }
.gallery-head > p, .trailer-head > p { color: var(--paper-muted); font-size: .82rem; line-height: 1.7; margin: 0 0 6px; max-width: 245px; }
.gallery-grid { display: grid; gap: 14px; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 275px 275px; margin-top: clamp(50px, 7vw, 90px); position: relative; }
.gallery-item { background: #171410; border: 0; color: var(--paper); cursor: zoom-in; min-height: 0; overflow: hidden; padding: 0; position: relative; text-align: left; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-column: 3; grid-row: span 2; }
.gallery-item img { filter: saturate(.75) contrast(1.06) brightness(.92); height: 100%; object-fit: cover; transition: filter .65s var(--ease), transform .8s var(--ease); width: 100%; }
.gallery-item__overlay { background: linear-gradient(0deg, rgba(5, 5, 4, .76), transparent 54%); inset: 0; position: absolute; }
.gallery-item__meta { align-items: baseline; bottom: 17px; display: flex; font-size: .69rem; font-weight: 800; gap: 10px; left: 18px; letter-spacing: .12em; position: absolute; text-transform: uppercase; z-index: 1; }
.gallery-item__meta b { color: var(--ember-soft); font-size: .59rem; }
.gallery-item:hover img { filter: saturate(.92) contrast(1.08) brightness(1.05); transform: scale(1.06); }
.gallery-item:focus-visible { outline-offset: -5px; }

.trailer { background: #080807; }
.trailer-head { position: relative; }
.trailer-stage { background: #11100e; margin-top: clamp(48px, 7vw, 90px); overflow: hidden; position: relative; }
.trailer-stage::after { border: 1px solid rgba(232, 227, 216, .18); content: ""; inset: 12px; pointer-events: none; position: absolute; z-index: 2; }
.trailer-video { aspect-ratio: 16 / 9; background: #050504; height: auto; object-fit: cover; width: 100%; }
.trailer-start { align-items: center; background: rgba(7, 7, 6, .36); border: 0; color: var(--paper); cursor: pointer; display: flex; gap: 17px; inset: 0; justify-content: center; position: absolute; transition: background .35s var(--ease), opacity .35s var(--ease), visibility .35s var(--ease); width: 100%; z-index: 3; }
.trailer-start:hover { background: rgba(7, 7, 6, .16); }
.trailer-start.is-hidden { opacity: 0; pointer-events: none; visibility: hidden; }
.trailer-start__icon { align-items: center; border: 1px solid rgba(232, 227, 216, .72); display: inline-flex; font-size: .75rem; height: 56px; justify-content: center; padding-left: 2px; transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); width: 56px; }
.trailer-start:hover .trailer-start__icon { background: var(--paper); color: var(--ink); transform: scale(1.06); }
.trailer-start span:last-child { display: flex; flex-direction: column; font-size: .74rem; font-weight: 900; gap: 3px; letter-spacing: .14em; text-align: left; text-transform: uppercase; }
.trailer-start small { color: var(--paper-muted); font-size: .55rem; letter-spacing: .14em; }

.closing { align-items: center; display: flex; min-height: min(92svh, 960px); overflow: hidden; position: relative; }
.closing__visual { background: linear-gradient(90deg, rgba(8, 8, 7, .88), rgba(8, 8, 7, .43) 60%, rgba(8, 8, 7, .84)), url("../assets/images/hero-ritual.png") center/cover no-repeat; inset: 0; position: absolute; transform: scale(1.03); }
.closing__visual::after { background: linear-gradient(180deg, rgba(8, 8, 7, .5), rgba(8, 8, 7, .2) 45%, rgba(8, 8, 7, .88)); content: ""; inset: 0; position: absolute; }
.closing__content { position: relative; z-index: 1; }
.closing h2 { max-width: 960px; }
.closing__content > p:not(.eyebrow) { color: var(--paper-faint); font-size: 1rem; line-height: 1.7; margin: 27px 0 32px; }

.site-footer { background: #070706; border-top: 1px solid var(--line); color: var(--paper-muted); padding: 25px 0; position: relative; }
.site-footer__inner { align-items: center; display: flex; font-size: .59rem; font-weight: 700; justify-content: space-between; letter-spacing: .11em; text-transform: uppercase; }
.site-footer p { margin: 0; }

.lightbox { align-items: center; background: rgba(5, 5, 4, .96); display: flex; inset: 0; justify-content: center; opacity: 0; padding: 44px; pointer-events: none; position: fixed; transition: opacity .25s var(--ease), visibility .25s var(--ease); visibility: hidden; z-index: 90; }
.lightbox.is-open { opacity: 1; pointer-events: auto; visibility: visible; }
.lightbox figure { margin: 0; max-height: 100%; max-width: min(1060px, 100%); position: relative; }
.lightbox img { max-height: calc(100vh - 100px); object-fit: contain; width: auto; }
.lightbox figcaption { color: var(--paper-muted); font-size: .62rem; font-weight: 800; letter-spacing: .13em; padding-top: 12px; text-transform: uppercase; }
.lightbox__close { background: transparent; border: 0; color: var(--paper); cursor: pointer; font-size: 2.5rem; font-weight: 200; line-height: 1; position: absolute; right: 25px; top: 18px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-container, .header-shell { width: min(var(--max-width), calc(100% - 40px)); }
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .header-actions { gap: 14px; }
  .audio-control { border-left: 0; padding-left: 0; }
  .hero__gridline { left: 20px; }
  .hero__content { gap: 48px; grid-template-columns: 1fr; }
  .hero__brief { max-width: 430px; }
  .story-layout, .experience-header { grid-template-columns: 1fr; }
  .story-copy { max-width: 650px; }
  .story-frame { max-width: 720px; }
  .gallery-head, .trailer-head { align-items: start; flex-direction: column; gap: 26px; }
  .gallery-head > p, .trailer-head > p { max-width: 430px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 260px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-column: 2; grid-row: span 2; }
  .feature-row { gap: 18px; grid-template-columns: 42px minmax(0, 1fr) 20px; }
  .feature-row p { grid-column: 2 / 4; }
  .feature-row__mark { grid-column: 3; grid-row: 1; }
}

@media (max-width: 600px) {
  .site-container, .header-shell { width: calc(100% - 32px); }
  .header-shell { height: 72px; }
  .wordmark__name { font-size: 1.46rem; }
  .wordmark__studio { font-size: .48rem; }
  .audio-control__copy { display: none; }
  .audio-control__state { font-size: .56rem; }
  .hero { min-height: 100svh; padding: 109px 0 52px; }
  .hero__visual { background-image: linear-gradient(90deg, rgba(4, 4, 3, .75), rgba(5, 4, 3, .38) 100%), linear-gradient(0deg, rgba(5, 4, 3, .93) 0%, rgba(5, 4, 3, 0) 58%), url("../assets/images/hero-ritual.png"); background-position: 58% center; }
  .hero__content { gap: 40px; }
  .hero h1 { font-size: clamp(5.5rem, 27vw, 8.2rem); }
  .hero__statement { font-size: 1.7rem; margin-top: 24px; }
  .hero__description { font-size: .89rem; line-height: 1.7; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 21px; margin-top: 27px; }
  .hero__brief { gap: 12px; grid-template-columns: auto 1fr; padding-left: 13px; }
  .hero__brief p:last-child { font-size: .75rem; }
  .scroll-cue { bottom: 18px; font-size: .51rem; }
  .section { padding: 95px 0; }
  .section-intro h2, .closing h2 { font-size: clamp(2.8rem, 14.4vw, 4rem); }
  .story-layout { gap: 40px; margin-top: 46px; }
  .story-frame::before { inset: -8px 8px 8px -8px; }
  .story-frame img { height: 320px; }
  .fracture { min-height: 570px; }
  .fracture__content { padding: 102px 0; }
  .fracture blockquote { font-size: clamp(2.1rem, 12vw, 3.4rem); }
  .feature-list { margin-top: 48px; }
  .feature-row { gap: 15px; min-height: 0; padding: 25px 0; }
  .feature-row:hover { padding-left: 5px; padding-right: 5px; }
  .feature-row__title { font-size: 1.4rem; }
  .feature-row p { font-size: .8rem; }
  .gallery-grid { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; grid-template-rows: 190px 250px 190px; margin-top: 43px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-column: 2; grid-row: span 2; }
  .gallery-item__meta { bottom: 12px; font-size: .58rem; left: 12px; }
  .trailer-stage::after { inset: 7px; }
  .trailer-start { gap: 12px; }
  .trailer-start__icon { height: 48px; width: 48px; }
  .trailer-start span:last-child { font-size: .64rem; }
  .site-footer { padding: 22px 0; }
  .site-footer__inner { align-items: flex-start; flex-direction: column; font-size: .54rem; gap: 9px; line-height: 1.45; }
  .lightbox { padding: 56px 16px 24px; }
  .lightbox__close { right: 13px; top: 11px; }
  .lightbox img { max-height: calc(100vh - 110px); }
}

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

.hero__gridline {
  display: none;
}

.hero__series {
  color: rgba(232, 227, 216, .72);
  font-size: clamp(.58rem, .75vw, .72rem);
  font-weight: 200;
  letter-spacing: .16em;
  line-height: 1;
  margin: 0 0 15px;
}

.hero__brief {
  border-left: 0;
  border-top: 1px solid rgba(232, 227, 216, .34);
  padding: 15px 0 0;
}

.story-layout--sentence {
  align-items: start;
  column-gap: clamp(52px, 7vw, 116px);
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .84fr);
  margin-top: 0;
}

.story-content {
  max-width: 680px;
}

.story-layout--sentence .eyebrow {
  margin-bottom: 25px;
}

.story-title {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 5.15vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .9;
  margin: 0;
}

.story-title em {
  color: var(--ember-soft);
  font-style: italic;
}

.story-layout--sentence .story-copy {
  margin-top: clamp(34px, 4.5vw, 58px);
  max-width: 555px;
  padding-top: 0;
}

.story-layout--sentence .story-copy p {
  color: rgba(232, 227, 216, .73);
  font-size: clamp(.95rem, 1.17vw, 1.08rem);
  line-height: 1.82;
  margin: 0 0 23px;
}

.story-layout--sentence .story-copy .lead-copy {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 1.8vw, 1.68rem);
  letter-spacing: -.03em;
  line-height: 1.35;
  margin-bottom: 27px;
}

.story-layout--sentence .story-copy__final {
  border-top: 1px solid rgba(232, 227, 216, .24);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.24rem, 1.7vw, 1.58rem);
  letter-spacing: -.03em;
  line-height: 1.18;
  margin-top: 38px;
  padding-top: 18px;
}

.story-layout--sentence .story-frame {
  justify-self: end;
  margin: 39px 0 0;
  max-width: 520px;
  width: 100%;
}

.story-frame__visual {
  overflow: hidden;
  position: relative;
}

.story-layout--sentence .story-frame img {
  aspect-ratio: 5 / 4;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.story-layout--sentence .story-frame figcaption {
  margin-top: 15px;
}

@media (max-width: 980px) {
  .story-layout--sentence {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .story-content {
    max-width: 720px;
  }

  .story-layout--sentence .story-frame {
    justify-self: start;
    margin-top: 0;
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .hero__series {
    font-size: .57rem;
    letter-spacing: .12em;
    margin-bottom: 13px;
  }

  .hero__brief {
    padding-top: 13px;
  }

  .story-title {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .story-layout--sentence .story-copy {
    margin-top: 32px;
  }

  .story-layout--sentence .story-frame img {
    aspect-ratio: 4 / 3;
  }
}
