/* =========================================================
   Brandywine Blinds — "The Atelier"
   Luxury editorial / design-magazine concept
   Vanilla CSS. No frameworks.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette — warm ivory, deep espresso, antique brass accent */
  --ivory:      #f4efe7;
  --ivory-2:    #ede5d8;
  --paper:      #faf7f1;
  --espresso:   #211c17;
  --charcoal:   #2c2620;
  --ink:        #3a332b;
  --brass:      #a9854f;
  --brass-deep: #8a6a3a;
  --terracotta: #b5683f;
  --muted:      #6f655a;
  --line:       rgba(33, 28, 23, 0.14);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; margin: 0; }

/* ---------- Accessibility helpers ---------- */
.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;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--espresso); color: var(--ivory);
  padding: 0.6rem 1rem; border-radius: 2px; text-decoration: none;
  font-family: var(--sans); transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.95rem; --pad-x: 2rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 400; font-size: 0.82rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: var(--pad-y) var(--pad-x);
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent; border-radius: 2px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn-primary {
  background: var(--espresso); color: var(--ivory); border-color: var(--espresso);
}
.btn-primary:hover { background: var(--brass-deep); border-color: var(--brass-deep); }
.btn-ghost {
  background: transparent; color: var(--ivory); border-color: rgba(244, 239, 231, 0.5);
}
.btn-ghost:hover { border-color: var(--ivory); background: rgba(244, 239, 231, 0.08); }
.btn-block { width: 100%; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: padding 0.5s var(--ease);
}
/* Scrolled state (toggled by JS) */
.site-header.is-scrolled {
  background: rgba(244, 239, 231, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-scrolled .header-inner { padding-top: 0.85rem; padding-bottom: 0.85rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ivory); }
.site-header.is-scrolled .brand { color: var(--espresso); }
.brand-mark {
  display: grid; place-items: center;
  width: 2.4rem; height: 2.4rem; flex: none;
  border: 1px solid currentColor; border-radius: 50%;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
}
.brand-name { font-family: var(--serif); font-size: 1.35rem; line-height: 1; display: flex; flex-direction: column; }
.brand-sub {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.28em;
  text-transform: uppercase; opacity: 0.75; margin-top: 0.25rem; font-weight: 400;
}

/* Nav menu */
.nav-menu {
  list-style: none; display: flex; align-items: center; gap: 2rem;
  margin: 0; padding: 0;
}
.nav-menu a {
  text-decoration: none; color: var(--ivory);
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  position: relative; padding: 0.4rem 0; transition: color 0.3s var(--ease);
}
.site-header.is-scrolled .nav-menu a { color: var(--ink); }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--brass); transition: width 0.35s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a:focus-visible::after { width: 100%; }
.nav-cta {
  border: 1px solid currentColor; padding: 0.55rem 1.1rem !important;
  border-radius: 2px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--brass); border-color: var(--brass); color: var(--ivory) !important; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 2.6rem; height: 2.6rem; padding: 0;
  background: transparent; border: 0; cursor: pointer; z-index: 110;
}
.nav-toggle-bar {
  display: block; width: 26px; height: 2px; background: var(--ivory);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background 0.4s var(--ease);
}
.site-header.is-scrolled .nav-toggle-bar,
.nav-open .nav-toggle-bar { background: var(--espresso); }
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 var(--gutter) clamp(4rem, 10vh, 8rem);
  color: var(--ivory); overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1502005229762-cf1b2da7c5d6?q=80&w=1600&auto=format&fit=crop");
  background-size: cover; background-position: center;
  transform: scale(1.08); animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(20,16,12,0.78) 0%, rgba(20,16,12,0.25) 45%, rgba(20,16,12,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 920px; }
.eyebrow {
  font-size: 0.74rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 1.4rem; font-weight: 400;
}
.hero-title {
  font-size: clamp(2.9rem, 8.5vw, 7rem); font-weight: 500; letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--ivory); }
.hero-lede {
  max-width: 46ch; font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(244, 239, 231, 0.88); margin: 0 0 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Scroll cue */
.scroll-cue {
  position: absolute; right: var(--gutter); bottom: clamp(2rem, 6vh, 4rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--ivory);
}
.scroll-cue-line { width: 1px; height: 54px; background: rgba(244,239,231,0.6); position: relative; overflow: hidden; }
.scroll-cue-line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--brass); animation: cueDrop 2.2s var(--ease) infinite;
}
@keyframes cueDrop { 0% { top: -100%; } 60%,100% { top: 100%; } }
.scroll-cue-text {
  writing-mode: vertical-rl; font-size: 0.66rem; letter-spacing: 0.3em;
  text-transform: uppercase; opacity: 0.8;
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--espresso); color: var(--ivory); overflow: hidden;
  padding: 1.1rem 0; border-block: 1px solid rgba(244,239,231,0.08);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 1.5rem; white-space: nowrap;
  font-family: var(--serif); font-style: italic; font-size: 1.2rem;
  will-change: transform; animation: marquee 34s linear infinite;
}
.marquee-track span { padding-inline: 0.2rem; }
.marquee .dot { color: var(--brass); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* =========================================================
   CHAPTER SHARED
   ========================================================= */
.chapter {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
}
.chapter-num {
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--brass); margin: 0 0 1rem; font-weight: 400;
}
.chapter-title {
  font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.01em; color: var(--espresso);
}
.chapter-head { margin-bottom: 3rem; max-width: 38ch; }
.chapter-intro { margin-top: 1.4rem; color: var(--muted); font-size: 1.12rem; max-width: 52ch; }

.lead { font-size: clamp(1.2rem, 2vw, 1.55rem); font-family: var(--serif); color: var(--charcoal); line-height: 1.5; }

.pull-quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.25; color: var(--espresso); margin: 2.5rem 0 0;
  padding-left: 1.4rem; border-left: 2px solid var(--brass);
}

.text-link {
  color: var(--brass-deep); text-decoration: none; font-weight: 400;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.text-link:hover { color: var(--terracotta); }

/* ---------- Chapter I: Story ---------- */
.story-figure { margin: 4rem 0 0; }
.story-figure img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; border-radius: 3px; }
.story-figure figcaption {
  margin-top: 0.9rem; font-size: 0.82rem; letter-spacing: 0.06em;
  color: var(--muted); font-style: italic; font-family: var(--serif);
}
.chapter-grid {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.story-body p + p { margin-top: 1.4rem; }

/* ---------- Chapter II: Collections ---------- */
.collection-list { display: flex; flex-direction: column; gap: clamp(3rem, 8vh, 6rem); }
.collection {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.collection--reverse .collection-media { order: 2; }
.collection-media { overflow: hidden; border-radius: 3px; }
.collection-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.collection:hover .collection-media img { transform: scale(1.05); }
.collection-num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--brass);
  margin: 0 0 0.4rem; line-height: 1;
}
.collection-text h3 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--espresso); margin-bottom: 1rem; }
.collection-text p { color: var(--muted); max-width: 46ch; }
.tag-row {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1.6rem 0 0; padding: 0;
}
.tag-row li {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); padding: 0.4rem 0.85rem; border: 1px solid var(--line);
  border-radius: 100px;
}

/* =========================================================
   INTERLUDE
   ========================================================= */
.interlude {
  position: relative; padding: clamp(6rem, 18vh, 12rem) var(--gutter);
  display: grid; place-items: center; text-align: center; color: var(--ivory);
  background-image: url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?q=80&w=1600&auto=format&fit=crop");
  background-size: cover; background-position: center; background-attachment: fixed;
}
.interlude-overlay { position: absolute; inset: 0; background: rgba(20,16,12,0.62); }
.interlude-quote { position: relative; z-index: 1; max-width: 18ch; margin: 0; }
.interlude-quote p {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3.6rem); line-height: 1.2; margin: 0;
}
.interlude-quote cite {
  display: block; margin-top: 1.6rem; font-style: normal; font-family: var(--sans);
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass);
}

/* =========================================================
   Chapter III: Process
   ========================================================= */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.step-num {
  font-family: var(--serif); font-size: 1.6rem; color: var(--brass); display: block;
  margin-bottom: 1.4rem;
}
.step h3 { font-size: 1.5rem; color: var(--espresso); margin-bottom: 0.7rem; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* =========================================================
   Brands
   ========================================================= */
.brands { border-block: 1px solid var(--line); background: var(--ivory-2); }
.brands-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vh, 4.5rem) var(--gutter);
  text-align: center;
}
.brands-label {
  font-size: 0.76rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 2rem;
}
.brands-row {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem);
}
.brands-row li {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 2rem); color: var(--espresso);
  letter-spacing: 0.02em; opacity: 0.85; transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.brands-row li:hover { opacity: 1; color: var(--brass-deep); }

/* =========================================================
   Chapter IV: Craft
   ========================================================= */
.craft-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.craft-figure { margin: 0; }
.craft-figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 3px; }
.craft-body p { color: var(--muted); }
.assurance {
  margin: 2.2rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2rem;
}
.assurance-item dt {
  font-family: var(--serif); font-size: 1.8rem; color: var(--brass-deep); line-height: 1;
  margin-bottom: 0.5rem;
}
.assurance-item dd { margin: 0; font-size: 0.95rem; color: var(--ink); }

/* =========================================================
   Chapter V: Places
   ========================================================= */
.place-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.place-grid li {
  font-family: var(--serif); font-size: 1.45rem; color: var(--espresso);
  padding: 1.6rem 1.4rem; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.place-grid li:hover { background: var(--espresso); color: var(--ivory); }

/* =========================================================
   Chapter VI: Consultation + Form
   ========================================================= */
.consult { }
.consult-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start;
}
.consult-lede { color: var(--muted); font-size: 1.12rem; margin: 1.4rem 0 2.4rem; max-width: 44ch; }
.consult-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.consult-contact li { display: grid; gap: 0.3rem; }
.ci-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-deep);
}
.ci-value { font-family: var(--serif); font-size: 1.5rem; color: var(--espresso); text-decoration: none; }
a.ci-value:hover { color: var(--brass-deep); }
.ci-social { display: flex; gap: 1.4rem; font-size: 1.2rem; }
.ci-social a { text-decoration: none; border-bottom: 1px solid var(--line); }
.ci-social a:hover { color: var(--brass-deep); border-color: currentColor; }

/* Form */
.consult-form {
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: 0 24px 60px -40px rgba(33, 28, 23, 0.5);
}
.form-title {
  font-family: var(--serif); font-size: 1.6rem; color: var(--espresso);
  margin: 0 0 1.6rem;
}
.field { margin-bottom: 1.2rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 0.5rem;
}
.optional { text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 0.7rem; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--line); border-radius: 2px;
  padding: 0.85rem 0.95rem; width: 100%; transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); background: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: #aaa09a; }
.field.has-error input, .field.has-error select { border-color: var(--terracotta); }
.field-error {
  color: var(--terracotta); font-size: 0.78rem; margin-top: 0.4rem; min-height: 1em;
}
.consult-form .btn { margin-top: 0.6rem; }
.form-note { font-size: 0.78rem; color: var(--muted); margin: 1rem 0 0; text-align: center; }

.form-success {
  margin-top: 1.4rem; padding: 1.4rem 1.5rem; border-radius: 3px;
  background: var(--espresso); color: var(--ivory);
  animation: fadeUp 0.6s var(--ease) both;
}
.form-success-title { font-family: var(--serif); font-size: 1.4rem; margin: 0 0 0.5rem; color: var(--ivory); }
.form-success p { font-size: 0.95rem; margin: 0; color: rgba(244,239,231,0.85); }
.form-success a { color: var(--brass); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--espresso); color: var(--ivory); }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 8vh, 5.5rem) var(--gutter) 2.5rem;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; align-items: start;
}
.footer-brand .brand-mark { color: var(--ivory); margin-bottom: 1rem; }
.footer-name { font-family: var(--serif); font-size: 1.7rem; margin: 0 0 0.4rem; }
.footer-tag { color: rgba(244,239,231,0.6); font-size: 0.86rem; margin: 0; max-width: 30ch; }
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a {
  text-decoration: none; color: rgba(244,239,231,0.78); font-size: 0.84rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s var(--ease); width: fit-content;
}
.footer-nav a:hover { color: var(--brass); }
.footer-phone {
  font-family: var(--serif); font-size: 1.8rem; color: var(--ivory); text-decoration: none;
  display: block; margin-bottom: 0.4rem;
}
.footer-phone:hover { color: var(--brass); }
.footer-contact p { color: rgba(244,239,231,0.6); font-size: 0.86rem; margin: 0 0 1rem; }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a {
  text-decoration: none; color: var(--brass); font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid transparent;
}
.footer-social a:hover { border-color: var(--brass); }
.footer-legal {
  max-width: var(--maxw); margin: 0 auto; padding: 1.6rem var(--gutter) 2.4rem;
  border-top: 1px solid rgba(244,239,231,0.12);
  font-size: 0.78rem; color: rgba(244,239,231,0.5); letter-spacing: 0.02em;
}

/* =========================================================
   SCROLL-REVEAL
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .chapter-grid { grid-template-columns: 1fr; }
  .collection { grid-template-columns: 1fr; gap: 1.8rem; }
  .collection--reverse .collection-media { order: 0; }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-figure { order: 2; max-width: 480px; }
  .craft-figure img { aspect-ratio: 16 / 11; }
  .consult-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.8rem;
    background: var(--ivory); padding: 5rem 2.4rem;
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4);
  }
  .nav-open .nav-menu { transform: translateX(0); }
  .nav-menu a { color: var(--espresso); font-size: 1rem; }
  .nav-cta { color: var(--espresso) !important; }

  .assurance { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .interlude { background-attachment: scroll; }
  .scroll-cue { display: none; }
}

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