/* ─────────────────────────────────────────────────────────────────
   IRONBOUND ROOFING CO. — EDITORIAL INDUSTRIAL
   Cream paper · Brick rust · Slate ink · Fraunces + JetBrains Mono
   ───────────────────────────────────────────────────────────────── */

:root {
  /* paper & ink */
  --paper:    #F2EBDD;
  --paper-2:  #E9DFC8;
  --paper-3:  #DCD0B4;
  --ink:      #15110D;
  --ink-2:    #3F362A;
  --ink-3:    #7F7461;
  --ink-4:    #B5A98F;
  --line:     #C9BC9F;
  --line-2:   #D8CCAF;

  /* accents */
  --rust:        #B43D27;
  --rust-bright: #D14A2C;
  --rust-soft:   rgba(180,61,39,.10);
  --slate:       #1F3340;
  --slate-2:     #16242E;
  --copper:      #C7873E;

  --maxw: 1240px;
  --rad: 4px;

  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --display: 'Newsreader', 'Times New Roman', serif;
  --body:    'DM Sans', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ─── INTRO CURTAIN ─── */
.intro {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  animation: introOut 1.8s cubic-bezier(.7,0,.2,1) .2s forwards;
  pointer-events: none;
}
.intro__inner {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  opacity: 0;
  animation: introIn .8s var(--ease-out) .15s forwards, introContentOut .35s var(--ease) 1.35s forwards;
}
.intro__mark {
  width: 52px; height: 52px;
  color: var(--paper);
  transform: rotate(-4deg) scale(.9);
  animation: introMark 1.2s var(--ease-out) .2s forwards;
}
.intro__name {
  font-family: var(--display); font-size: 26px; font-weight: 500;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 36;
}
.intro__rule {
  display: block; width: 0; height: 1px;
  background: var(--copper);
  animation: introRule 1.0s cubic-bezier(.6,0,.2,1) .55s forwards;
}
.intro__est {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(242,235,221,.45);
}

@keyframes introIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes introMark {
  0% { transform: rotate(-4deg) scale(.9); }
  100% { transform: rotate(0) scale(1); }
}
@keyframes introRule {
  0% { width: 0; }
  100% { width: 96px; }
}
@keyframes introContentOut {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes introOut {
  0%, 60%  { transform: translateY(0); }
  100%     { transform: translateY(-101%); }
}

.intro.is-done { display: none; }

/* lock scroll while curtain is up */
body.is-loading { overflow: hidden; }

/* hero contents start hidden — JS unhides them when curtain lifts */
body.is-loading .hero__title .hero__word,
body.is-loading .hero__title .hero__em { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
  body.is-loading { overflow: auto; }
}

/* ─── PAGE GRAIN — subtle paper texture across whole page ─── */
.page-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 60;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ─── CURSOR GLOW — warm copper instead of cold orange ─── */
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 1;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(199,135,62,.18) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .3s var(--ease);
  mix-blend-mode: multiply;
}
@media (hover: hover) and (min-width: 900px) { .cursor-glow { opacity: 1; } }

/* ─── TYPE BASELINES ─── */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; letter-spacing: -.02em; line-height: 1.02; margin: 0; font-variation-settings: "opsz" 60; }
h1 em, h2 em { font-style: italic; font-variation-settings: "opsz" 60; color: var(--rust); }
h2 { font-size: clamp(40px, 5.6vw, 76px); }
h3 { font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: -.015em; line-height: 1.15; }
p { margin: 0; }

.eyebrow, .chapter__num, .nav__num {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 14px;
  padding: 12px 22px; border-radius: var(--rad);
  border: 0; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap; letter-spacing: .005em;
}
.btn--lg { padding: 17px 28px; font-size: 15px; }
.btn--rust {
  background: var(--rust); color: var(--paper);
  box-shadow: 0 0 0 1px var(--rust), 0 8px 20px -6px rgba(180,61,39,.6);
}
.btn--rust:hover {
  background: var(--rust-bright);
  box-shadow: 0 0 0 1px var(--rust-bright), 0 14px 28px -6px rgba(209,74,44,.7);
  transform: translateY(-2px);
}
.btn--cream {
  background: var(--paper); color: var(--ink);
  box-shadow: 0 0 0 1px var(--paper);
}
.btn--cream:hover { background: var(--paper-2); transform: translateY(-2px); }

.link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--rust);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link span { transition: transform .35s var(--ease); }
.link:hover span { transform: translateX(4px); }

/* ─── MASTHEAD ─── */
.masthead {
  background: var(--ink);
  color: var(--paper-3);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.masthead__inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 36px;
}
.masthead__item--center { text-align: center; opacity: .8; }
.masthead__phone { justify-self: end; color: var(--copper); }
.masthead__dot {
  display: inline-block; width: 6px; height: 6px;
  background: #2ecc71; border-radius: 50%; margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(46,204,113,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,.6); }
  70% { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
@media (max-width: 800px) {
  .masthead__inner { grid-template-columns: 1fr 1fr; }
  .masthead__item--center { display: none; }
}

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,235,221,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled { background: rgba(242,235,221,.96); border-bottom-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark { width: 32px; height: 32px; }
.brand__words { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand__name { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.015em; }
.brand__sub { font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--body); font-size: 14px; font-weight: 500;
  color: var(--ink-2); position: relative;
  transition: color .2s var(--ease);
}
.nav__num {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .12em; color: var(--ink-4);
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover .nav__num { color: var(--rust); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 1px; background: var(--rust);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
@media (max-width: 980px) { .nav__links { display: none; } }

/* ─── HERO — editorial asymmetric ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: stretch;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; will-change: transform; }
.hero__bg picture, .hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__bg img {
  object-fit: cover; object-position: center 35%;
  animation: droneCinema 32s cubic-bezier(.4,0,.2,1) infinite alternate;
  transform-origin: 60% 40%;
  filter: contrast(1.08) saturate(.92);
}
@keyframes droneCinema {
  0%   { transform: scale(1.12) translate3d(0,0,0); }
  100% { transform: scale(1.32) translate3d(-4%, -3.5%, 0); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(21,17,13,.40) 0%, rgba(21,17,13,.65) 60%, rgba(21,17,13,.95) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(180,61,39,.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(199,135,62,.10), transparent 50%);
}
.hero__vignette { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.55) 100%); mix-blend-mode: multiply; }
.hero__grain {
  position: absolute; inset: -50%; pointer-events: none;
  opacity: .08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grainShift 1.2s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -2%); }
  100% { transform: translate(0,0); }
}

.hero__rail {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(242,235,221,.55);
  white-space: nowrap;
  pointer-events: none;
}
.hero__rail-rule { width: 60px; height: 1px; background: rgba(242,235,221,.4); }
@media (max-width: 1000px) { .hero__rail { display: none; } }

.hero__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 96px 32px 88px;
  width: 100%;
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-self: end;
  position: relative;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(44px, 7.2vw, 104px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 72;
  margin: 0;
  max-width: 1100px;
}
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: .12em;
  margin-bottom: -.06em;
}
.hero__word, .hero__em {
  display: inline-block;
  transform: translateY(110%);
  animation: heroWord 1.1s var(--ease-out) forwards;
}
.hero__em {
  font-style: italic;
  font-variation-settings: "opsz" 72;
  color: var(--copper);
  position: relative;
  padding: 0 .12em 0 0;
}
.hero__line:nth-child(1) .hero__word:nth-child(1) { animation-delay: .15s; }
.hero__line:nth-child(1) .hero__word:nth-child(2) { animation-delay: .22s; }
.hero__line:nth-child(1) .hero__word:nth-child(3) { animation-delay: .29s; }
.hero__line:nth-child(2) .hero__em               { animation-delay: .42s; }
.hero__line:nth-child(2) .hero__word:nth-child(2) { animation-delay: .55s; }
.hero__line:nth-child(3) .hero__word:nth-child(1) { animation-delay: .68s; }
.hero__line:nth-child(3) .hero__word:nth-child(2) { animation-delay: .75s; }

@keyframes heroWord {
  0% { transform: translateY(110%); }
  100% { transform: translateY(0); }
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero__meta {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 48px; align-items: start;
  border-top: 1px solid rgba(242,235,221,.18);
  padding-top: 28px;
  animation: fadeUp 1.4s var(--ease-out) .9s both;
}
.hero__lede {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(242,235,221,.78);
  max-width: 520px;
}
.hero__dropcap {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 72;
  font-size: 44px;
  font-weight: 600;
  float: left;
  line-height: .9;
  margin: 6px 10px 0 0;
  color: var(--copper);
}
.hero__data {
  display: grid; gap: 10px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
}
.hero__data > div {
  display: grid; grid-template-columns: 22px 1fr auto;
  gap: 12px; align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(242,235,221,.22);
  color: rgba(242,235,221,.55);
}
.hero__data > div:last-child { border-bottom: 0; padding-bottom: 0; }
.hero__data span { color: rgba(242,235,221,.4); }
.hero__data strong {
  font-family: var(--display);
  font-style: normal;
  font-variation-settings: "opsz" 36;
  font-size: 20px; font-weight: 500;
  color: var(--paper); letter-spacing: -.015em; text-transform: none;
}
@media (max-width: 720px) {
  .hero__meta { grid-template-columns: 1fr; gap: 24px; padding-top: 20px; }
}

.hero__form {
  max-width: 620px;
  animation: fadeUp 1.5s var(--ease-out) 1.1s both;
}
.hero__form label {
  display: block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(242,235,221,.5);
  margin-bottom: 10px;
}
.hero__formRow {
  display: flex; gap: 6px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(242,235,221,.18);
  padding: 6px;
  backdrop-filter: blur(20px);
  border-radius: 4px;
}
.hero__form input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  padding: 14px 16px; color: var(--paper);
  font-family: var(--display); font-size: 17px; font-weight: 400;
}
.hero__form input::placeholder { color: rgba(242,235,221,.4); font-style: italic; }
.hero__form small {
  display: block; margin-top: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(242,235,221,.45);
}

.hero__scroll {
  position: absolute; right: 32px; bottom: 32px;
  display: flex; align-items: center; gap: 14px;
  color: rgba(242,235,221,.6);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
}
.hero__scrollLine {
  display: inline-block; width: 60px; height: 1px;
  background: linear-gradient(to right, rgba(242,235,221,.3), var(--copper));
  position: relative; overflow: hidden;
}
.hero__scrollLine::after {
  content: ''; position: absolute; left: -100%; top: 0; width: 50%; height: 100%;
  background: var(--copper); animation: scrollSweep 2.2s ease-in-out infinite;
}
@keyframes scrollSweep {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}

@media (max-width: 800px) {
  .hero__meta { grid-template-columns: 1fr; gap: 32px; }
  .hero__formRow { flex-direction: column; padding: 8px; }
  .hero__scroll { display: none; }
}

/* ─── MARQUEE ─── */
.marquee {
  background: var(--ink); color: var(--paper-3);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
  pointer-events: none; z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
.marquee__track {
  display: flex; gap: 0;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee__set {
  display: flex; align-items: center; gap: 36px;
  padding-right: 36px;
  font-family: var(--display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.marquee__dot { color: var(--rust); font-size: 16px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ─── EDITORIAL SPREAD ─── */
.spread {
  background: var(--paper);
  padding: 100px 0 0;
}
.spread__figure {
  position: relative;
  margin: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.spread__figure img {
  width: 100%; height: clamp(420px, 70vh, 720px);
  object-fit: cover; object-position: center 60%;
  filter: contrast(1.04) saturate(1.05);
}
.spread__overlay {
  position: absolute; inset: 0 32px 0 32px;
  background:
    linear-gradient(180deg, transparent 50%, rgba(21,17,13,.85) 100%),
    linear-gradient(90deg, rgba(21,17,13,.4) 0%, transparent 40%);
  pointer-events: none;
}
.spread__caption {
  position: absolute; left: 64px; right: 64px; bottom: 48px;
  color: var(--paper);
  display: grid; gap: 18px;
  max-width: 920px;
}
.spread__plate {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--copper);
  display: inline-flex; align-items: center; gap: 14px;
}
.spread__plate::before { content: ''; width: 36px; height: 1px; background: var(--copper); }
.spread__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -.025em;
  margin: 0; max-width: 22ch;
  font-variation-settings: "opsz" 72;
}
.spread__title em {
  font-style: italic; color: var(--copper);
  font-variation-settings: "opsz" 72;
}
.spread__metaRow {
  display: flex; flex-wrap: wrap; gap: 32px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(242,235,221,.6);
  padding-top: 18px;
  border-top: 1px solid rgba(242,235,221,.18);
  max-width: 100%;
}
.spread__metaRow strong {
  display: block; font-weight: 500; font-size: 9px;
  color: rgba(242,235,221,.4); margin-bottom: 4px;
}
@media (max-width: 720px) {
  .spread__caption { left: 32px; right: 32px; bottom: 28px; }
  .spread__metaRow { gap: 18px; font-size: 10px; }
}

/* ─── MATERIALS GALLERY ─── */
.materials { padding: 140px 0; background: var(--paper-2); }
.materials__head {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 64px;
}
.materials__title {
  font-size: clamp(36px, 4.8vw, 64px);
  letter-spacing: -.025em;
  margin-top: 24px;
  max-width: 14ch;
}
.materials__title em {
  font-style: italic; color: var(--rust);
  font-variation-settings: "opsz" 72;
}
.materials__head p {
  font-family: var(--display); font-weight: 400;
  font-variation-settings: "opsz" 18;
  font-size: 18px; line-height: 1.55;
  color: var(--ink-2);
  max-width: 50ch;
  padding-bottom: 12px;
}
.materials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.material {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
  overflow: hidden;
}
.material:hover { transform: translateY(-6px); border-color: var(--rust); }
.material__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.material__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  filter: contrast(1.05);
}
.material:hover .material__media img { transform: scale(1.05); }
.material figcaption {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.material__num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust);
}
.material h4 {
  font-family: var(--display); font-size: 26px;
  font-weight: 600; letter-spacing: -.015em;
  color: var(--ink); margin: 0;
}
.material p { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.material__price {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 16px; margin-top: auto;
  border-top: 1px dashed var(--line);
}
.material__price strong {
  font-family: var(--display); font-weight: 600;
  font-size: 17px; color: var(--ink);
  letter-spacing: -.01em;
}
@media (max-width: 980px) {
  .materials__head { grid-template-columns: 1fr; gap: 28px; }
  .materials__grid { grid-template-columns: 1fr; }
}

/* ─── SECTIONS ─── */
.section { padding: 140px 0; position: relative; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--slate-2); color: var(--paper); }
.section--ink p { color: rgba(242,235,221,.7); }

.chapter {
  max-width: 920px; margin: 0 auto 80px; text-align: left;
}
.chapter__num {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.chapter__num::before {
  content: ''; width: 28px; height: 1px; background: var(--rust);
}
.chapter__num--rust { color: var(--rust); }
.chapter__title {
  font-size: clamp(36px, 5.2vw, 72px);
  letter-spacing: -.025em;
  margin-bottom: 24px;
  max-width: 16ch;
}
.chapter__sub {
  font-size: 19px; line-height: 1.5;
  color: var(--ink-2);
  max-width: 60ch;
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 18;
}
.chapter--light .chapter__num { color: var(--copper); }
.chapter--light .chapter__num::before { background: var(--copper); }
.chapter--light .chapter__sub { color: rgba(242,235,221,.7); }

/* ─── CHAPTER — split variant for catalogue ─── */
.chapter--split {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 80px; align-items: end;
  max-width: 100%;
}
.chapter--split .chapter__sub { padding-bottom: 12px; }
@media (max-width: 980px) { .chapter--split { grid-template-columns: 1fr; gap: 28px; } }

/* ─── THE CATALOGUE ─── */
.catalog {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.catalog__row {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr 280px 110px;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), padding .4s var(--ease);
  overflow: hidden;
}
.catalog__row:hover { background: var(--paper-2); padding-left: 12px; padding-right: 12px; }

.catalog__num {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 72;
  font-weight: 600;
  font-size: clamp(72px, 8vw, 112px);
  line-height: .85;
  color: var(--rust);
  letter-spacing: -.05em;
  transition: transform .5s var(--ease), color .5s var(--ease);
  align-self: center;
}
.catalog__row:hover .catalog__num {
  transform: translateY(-8px) translateX(4px);
  color: var(--rust-bright);
}

.catalog__main { display: grid; gap: 10px; min-width: 0; }
.catalog__class {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3);
}
.catalog__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.02em; line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.catalog__title em {
  font-style: italic; color: var(--rust);
  font-variation-settings: "opsz" 60;
}
.catalog__desc {
  font-family: var(--display); font-weight: 400;
  font-variation-settings: "opsz" 18;
  font-size: 16px; line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  margin-top: 4px;
}

.catalog__spec {
  display: grid; gap: 12px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
  transition: border-color .4s var(--ease);
}
.catalog__row:hover .catalog__spec { border-color: var(--rust); }
.catalog__spec > div {
  display: grid; grid-template-columns: 80px 1fr;
  align-items: baseline; gap: 14px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
}
.catalog__spec span { color: var(--ink-3); }
.catalog__spec strong {
  font-family: var(--display); font-style: italic;
  font-variation-settings: "opsz" 36;
  font-weight: 600; font-size: 17px;
  color: var(--ink); letter-spacing: -.005em; text-transform: none;
}

.catalog__link {
  display: inline-flex; align-items: center; gap: 10px;
  justify-self: end;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
  white-space: nowrap;
}
.catalog__link svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.catalog__link:hover {
  background: var(--rust); color: var(--paper);
  border-color: var(--rust);
  gap: 14px;
}
.catalog__link:hover svg { transform: translateX(3px); }

/* The hover peek — image floats in from the right */
.catalog__peek {
  position: absolute;
  top: 50%; right: 140px;
  width: 220px; height: 140px;
  transform: translateY(-50%) translateX(40px);
  opacity: 0;
  pointer-events: none;
  border-radius: 4px;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 24px 48px -12px rgba(21,17,13,.4);
  transition: opacity .45s var(--ease), transform .55s var(--ease-out);
}
.catalog__peek img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.06);
}
.catalog__row:hover .catalog__peek {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.catalog__foot {
  margin-top: 32px;
  text-align: right;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}
.catalog__foot a { display: inline-flex; align-items: center; gap: 6px; margin-left: 10px; }

@media (max-width: 1100px) {
  .catalog__peek { display: none; }
}
@media (max-width: 880px) {
  .catalog__row {
    grid-template-columns: 80px 1fr;
    gap: 20px 24px;
    padding: 28px 0;
  }
  .catalog__num { font-size: 64px; }
  .catalog__spec {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
    border-top: 1px dashed var(--line);
    padding-top: 18px;
  }
  .catalog__link { grid-column: 2; justify-self: start; }
}

/* ─── THE LEDGER ─── */
.ledger {
  background: var(--paper);
  padding: 140px 0;
  position: relative;
}
.ledger .container { max-width: 1100px; }

.ledger__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2);
}

.ledger__intro { padding: 64px 0 80px; max-width: 720px; }
.ledger__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -.025em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
}
.ledger__lede {
  margin-top: 24px;
  font-family: var(--display); font-weight: 400;
  font-variation-settings: "opsz" 18;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 50ch;
}

/* HERO — headline figure, framed as a ledger "entry of record" */
.ledger__hero {
  position: relative;
  padding: 28px 0 44px;
  margin: 0;
  border-top: 2px solid var(--ink);
}
.ledger__hero::before {
  content: ''; position: absolute; left: 0; right: 0;
  top: 6px; border-top: 1px solid var(--ink);
}
.ledger__heroKicker {
  display: block;
  padding: 18px 0 32px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rust);
}
.ledger__heroBody {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 56px;
  align-items: end;
}
.ledger__heroNum {
  display: block;
  font-family: var(--display); font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 96;
  font-size: clamp(120px, 15vw, 220px);
  line-height: .82;
  letter-spacing: -.05em;
  color: var(--ink);
}
.ledger__heroLabel {
  margin: 0 0 14px;
  font-family: var(--display); font-weight: 400;
  font-variation-settings: "opsz" 20;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 28ch;
}
.ledger__heroLabel em {
  display: block;
  font-family: var(--mono); font-style: normal;
  font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}

/* ROWS — vertical ledger entries, i–iv */
.ledger__rowsHead {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 56px 0 14px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-3);
}
.ledger__rows {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ledger__row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease), padding .35s var(--ease);
  position: relative;
}
.ledger__row:last-child { border-bottom: 0; }
.ledger__row:hover { background: var(--paper-2); padding-left: 16px; }
.ledger__rowIndex {
  font-family: var(--display); font-style: italic;
  font-variation-settings: "opsz" 32;
  font-size: 26px; font-weight: 500;
  color: var(--rust);
  letter-spacing: -.02em;
  line-height: 1;
}
.ledger__rowBody {
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0;
}
.ledger__rowLabel {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(19px, 1.6vw, 22px); line-height: 1.25;
  color: var(--ink);
  letter-spacing: -.01em;
  font-variation-settings: "opsz" 24;
}
.ledger__rowNote {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}
.ledger__rowVal {
  font-family: var(--display); font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 64;
  font-size: clamp(44px, 4.4vw, 60px);
  line-height: 1; letter-spacing: -.035em;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 3px;
  white-space: nowrap;
  transition: color .35s var(--ease);
}
.ledger__row:hover .ledger__rowVal { color: var(--rust); }
.ledger__rowSuffix {
  font-family: var(--mono); font-style: normal;
  font-size: 14px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust);
  align-self: flex-end;
  padding-bottom: 6px;
}

/* FOOTER */
.ledger__foot {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  padding-top: 24px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2);
}

@media (max-width: 880px) {
  .ledger__heroBody { grid-template-columns: 1fr; gap: 20px; }
  .ledger__heroLabel { max-width: none; margin-bottom: 0; }
  .ledger__row { grid-template-columns: 44px 1fr; gap: 18px; padding: 26px 0; }
  .ledger__row:hover { padding-left: 8px; }
  .ledger__rowVal { grid-column: 2; justify-self: end; }
  .ledger__foot { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 540px) {
  .ledger__rowsHead { font-size: 9px; letter-spacing: .18em; }
  .ledger__row { grid-template-columns: 36px 1fr; gap: 14px; padding: 22px 0; }
  .ledger__rowLabel { font-size: 18px; }
  .ledger__rowVal { font-size: 40px; }
}

/* ─── BEFORE / AFTER ─── */
.ba {
  --pos: 50%;
  position: relative;
  max-width: 1100px; margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  user-select: none; touch-action: none;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(242,235,221,.06);
  cursor: ew-resize;
  border: 1px solid rgba(242,235,221,.08);
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  will-change: clip-path;
}
.ba__before .ba__img { width: 100%; }
.ba__divider {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: var(--copper);
  transform: translateX(-1px);
  pointer-events: none;
  z-index: 1;
  will-change: left;
}
.ba__handle {
  position: absolute; top: 50%; left: var(--pos);
  width: 56px; height: 56px;
  background: var(--paper); color: var(--ink);
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
  box-shadow: 0 0 0 4px rgba(242,235,221,.15), 0 8px 24px rgba(0,0,0,.4);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
  z-index: 2;
  will-change: left;
}
.ba__handle:hover { background: var(--copper); color: var(--paper); }
.ba.is-dragging .ba__handle { box-shadow: 0 0 0 6px rgba(199,135,62,.25), 0 8px 24px rgba(0,0,0,.5); }
.ba__handle svg { width: 22px; height: 22px; }
.ba__tag {
  position: absolute; top: 18px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(0,0,0,.65); color: var(--paper);
  backdrop-filter: blur(10px); border-radius: 2px;
}
.ba__tag--before { left: 18px; }
.ba__tag--after { right: 18px; background: var(--rust); }
.ba__caption {
  text-align: center; margin-top: 32px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(242,235,221,.45);
}

/* ─── PROCESS ─── */
.process {
  list-style: none; padding: 0; margin: 64px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process__step {
  position: relative;
  padding: 0 28px 40px;
  display: flex; flex-direction: column;
  isolation: isolate;
  transition: transform .5s var(--ease);
}
.process__step + .process__step { border-left: 1px dashed var(--line); }
.process__step:hover { transform: translateY(-4px); }

.process__timing {
  font-family: var(--display); font-style: italic;
  font-variation-settings: "opsz" 24;
  font-size: 13px; letter-spacing: .02em;
  color: var(--ink-3);
  padding: 0 0 18px;
}

.process__marker {
  position: relative;
  height: 1px; background: var(--ink);
  margin: 0 -28px;
}
.process__step:first-child .process__marker { margin-left: 0; }
.process__step:last-child  .process__marker { margin-right: 0; }
.process__dot {
  position: absolute; left: 28px; top: 50%;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  transform: translate(-50%, -50%);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.process__step:first-child .process__dot { left: 0; }
.process__step:hover .process__dot {
  background: var(--rust);
  border-color: var(--rust);
  box-shadow: 0 0 0 6px rgba(180,61,39,.12);
  transform: translate(-50%, -50%) scale(1.15);
}

.process__num {
  position: absolute; top: 48px; right: 18px;
  font-family: var(--display); font-style: italic;
  font-variation-settings: "opsz" 96;
  font-size: clamp(120px, 12vw, 180px);
  font-weight: 500;
  line-height: .85; letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  pointer-events: none; user-select: none;
  z-index: -1;
  transition: -webkit-text-stroke-color .4s var(--ease), color .4s var(--ease), transform .5s var(--ease);
}
.process__step:hover .process__num {
  color: var(--rust-soft);
  -webkit-text-stroke-color: var(--rust);
  transform: translateY(-6px) rotate(-1.5deg);
}

.process__title {
  font-size: 24px;
  margin: 40px 0 12px;
  max-width: 14ch;
}
.process__step p {
  color: var(--ink-2); font-size: 15px; line-height: 1.6;
  max-width: 32ch;
}

.process__chip {
  margin-top: auto; padding-top: 28px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: baseline; gap: 8px;
}
.process__chip::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: var(--rust);
  transform: translateY(-3px);
}
.process__chip em {
  font-family: var(--display); font-style: italic;
  font-variation-settings: "opsz" 18;
  font-size: 12px; letter-spacing: .01em; text-transform: none;
  color: var(--rust);
}

@media (max-width: 960px) {
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
  .process__step:nth-child(3) { border-left: 0; }
  .process__num { font-size: clamp(140px, 22vw, 200px); }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; row-gap: 48px; margin-top: 48px; }
  .process__step { padding: 0 0 36px; }
  .process__step + .process__step { border-left: 0; border-top: 1px dashed var(--line); padding-top: 36px; }
  .process__marker { margin: 0; }
  .process__dot { left: 6px; }
  .process__num { top: 28px; right: 8px; font-size: 160px; }
  .process__title { max-width: none; }
  .process__step p { max-width: none; }
}

/* ─── PULL QUOTE ─── */
.pullquote {
  background: var(--rust);
  color: var(--paper);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pullquote__bg {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden;
}
.pullquote__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.4) contrast(1.1);
  animation: slowDrift 28s ease-in-out infinite alternate;
}
@keyframes slowDrift {
  0%   { transform: scale(1.08) translate(0,0); }
  100% { transform: scale(1.18) translate(-2%, -1.5%); }
}
.pullquote::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(135deg, rgba(180,61,39,.92) 0%, rgba(180,61,39,.78) 100%),
    radial-gradient(ellipse at 80% 0%, rgba(255,255,255,.15), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,.25), transparent 50%);
  mix-blend-mode: multiply;
  background-blend-mode: multiply, normal, normal;
}
.pullquote::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(180,61,39,.65);
}
.pullquote__inner { position: relative; max-width: 1000px; margin: 0 auto; padding: 0 32px; }
.pullquote__open {
  font-family: var(--display); font-style: italic;
  font-variation-settings: "opsz" 72;
  font-size: 240px; line-height: .7;
  color: rgba(242,235,221,.25);
  position: absolute; top: -40px; left: -10px;
  pointer-events: none;
}
.pullquote blockquote {
  font-family: var(--display); font-weight: 500;
  font-variation-settings: "opsz" 72;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin: 0; color: var(--paper);
  max-width: 22ch;
  position: relative;
}
.pullquote blockquote em {
  font-style: italic;
  font-variation-settings: "opsz" 72;
  color: rgba(255,255,255,.85);
}
.pullquote footer {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(242,235,221,.3);
  max-width: 22ch;
}
.pullquote__name { font-family: var(--display); font-size: 22px; font-weight: 600; }
.pullquote__loc {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(242,235,221,.7);
}

/* ─── FIELD NOTES ─── */
.notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.note {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  border-radius: var(--rad);
}
.note:hover {
  transform: translateY(-4px);
  border-color: var(--rust);
  box-shadow: 0 12px 30px -10px rgba(180,61,39,.2);
}
.note__stamp {
  color: var(--rust); font-size: 16px; letter-spacing: 4px;
  margin-bottom: 18px;
}
.note p {
  font-family: var(--display); font-weight: 400;
  font-variation-settings: "opsz" 18;
  font-size: 19px; line-height: 1.45;
  color: var(--ink); margin-bottom: 28px;
  letter-spacing: -.005em;
}
.note footer {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.note footer strong { font-family: var(--display); font-size: 17px; font-weight: 600; color: var(--ink); }
.note footer span {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 880px) { .notes { grid-template-columns: 1fr; } }

/* ─── FAQ ─── */
.faq__grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start;
}
.faq { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: 0;
  transition: border-color .25s var(--ease);
}
.faq__item:last-of-type { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: grid; grid-template-columns: 60px 1fr 24px;
  gap: 16px; align-items: center;
  padding: 24px 0; cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__index {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; color: var(--ink-3);
}
.faq__q {
  font-family: var(--display); font-size: 22px; font-weight: 500;
  letter-spacing: -.015em; line-height: 1.2;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.faq__chev {
  width: 14px; height: 14px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(45deg);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
  justify-self: end;
}
.faq__item[open] .faq__chev {
  transform: rotate(-135deg);
  border-color: var(--rust);
}
.faq__item[open] .faq__q { color: var(--rust); font-style: italic; font-variation-settings: "opsz" 36; }
.faq__item p {
  padding: 0 0 28px 76px;
  color: var(--ink-2);
  font-size: 16px; line-height: 1.55;
  max-width: 64ch;
}
@media (max-width: 880px) {
  .faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .faq__item summary { grid-template-columns: 50px 1fr 20px; }
  .faq__item p { padding-left: 66px; }
}

/* ─── CTA ─── */
.cta {
  background: var(--ink);
  color: var(--paper);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta__bg {
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
}
.cta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .35;
  filter: grayscale(.6) contrast(1.1);
  animation: slowDrift 36s ease-in-out infinite alternate;
}
.cta::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(135deg, rgba(21,17,13,.92) 0%, rgba(21,17,13,.7) 100%),
    radial-gradient(ellipse at 80% 0%, rgba(180,61,39,.32), transparent 55%);
  pointer-events: none;
}
.cta::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--rust), transparent);
}
.cta__inner { position: relative; max-width: 800px; margin: 0 auto; text-align: left; }
.cta__inner h2 {
  font-size: clamp(40px, 6vw, 84px);
  margin-bottom: 24px;
  letter-spacing: -.03em;
}
.cta__inner > p {
  font-family: var(--display); font-weight: 400;
  font-variation-settings: "opsz" 18;
  font-size: 20px;
  color: rgba(242,235,221,.78);
  margin-bottom: 40px; max-width: 56ch;
}
.cta__form {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 6px;
  background: rgba(242,235,221,.05);
  border: 1px solid rgba(242,235,221,.14);
  padding: 6px;
  backdrop-filter: blur(20px);
}
.cta__form input {
  background: transparent; border: 0; outline: 0;
  padding: 16px 18px; color: var(--paper);
  font-family: var(--display); font-size: 17px; min-width: 0;
}
.cta__form input::placeholder { color: rgba(242,235,221,.4); font-style: italic; }
.cta__fineprint {
  margin-top: 24px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(242,235,221,.55);
}
.cta__fineprint a { color: var(--copper); }
@media (max-width: 720px) { .cta__form { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
.footer { background: var(--slate-2); color: rgba(242,235,221,.65); padding: 80px 0 32px; }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 64px;
}
.brand--light { color: var(--paper); }
.footer__brand p { margin-top: 18px; max-width: 280px; font-size: 15px; line-height: 1.55; }
.footer__col h4 {
  font-family: var(--mono); color: var(--paper);
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 22px;
}
.footer__col a, .footer__addr {
  display: block; padding: 6px 0;
  font-size: 14px;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.footer__col a:hover { color: var(--copper); padding-left: 8px; }
.footer__rule { height: 1px; background: rgba(242,235,221,.1); margin-bottom: 24px; }
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 12px 32px;
  justify-content: center; text-align: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(242,235,221,.4);
}
@media (max-width: 880px) { .footer__inner { grid-template-columns: 1fr 1fr; } }

/* ─── STICKY MOBILE CTA ─── */
.sticky-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  display: none; align-items: center; justify-content: center; gap: 10px;
  background: var(--rust); color: var(--paper);
  padding: 16px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(180,61,39,.5);
  z-index: 40; border-radius: 4px;
}
.sticky-cta svg { width: 16px; height: 16px; }
@media (max-width: 720px) { .sticky-cta { display: inline-flex; } }

/* ─── REVEALS ─── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__word, .hero__em, .hero__stamp, .hero__meta, .hero__form { transform: none; opacity: 1; animation: none; }
}

/* ─── SELECTION ─── */
::selection { background: var(--rust); color: var(--paper); }
