/* ==========================================================================
   THE COMEBACK ERA — site stylesheet
   Brand: deep red base, warm browns, camel, cream. Girly but classy.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Core brand */
  --maroon:        #7b2c2d;
  --maroon-deep:   #5e2021;
  --maroon-dark:   #431617;
  --coffee:        #5a3a29;
  --coffee-deep:   #3d2619;
  --camel:         #c7a68b;
  --camel-light:   #ddc4ad;
  --cream:         #fff4e4;
  --cream-dim:     #f3e3cd;
  --rose:          #d99a94;
  --rose-soft:     #eabfba;

  /* Roles */
  --bg:            var(--maroon);
  --bg-alt:        var(--maroon-deep);
  --ink:           var(--cream);
  --ink-soft:      rgba(255, 244, 228, 0.72);
  --ink-faint:     rgba(255, 244, 228, 0.42);
  --rule:          rgba(255, 244, 228, 0.18);
  --rule-strong:   rgba(255, 244, 228, 0.32);

  /* Type */
  --display: "Playfair Display", "Didot", "Bodoni MT", Georgia, serif;
  --script:  "Parisienne", "Snell Roundhand", "Brush Script MT", cursive;
  --body:    "Jost", "Futura", "Avenir Next", "Helvetica Neue", Arial, sans-serif;

  /* Space */
  --gut: clamp(20px, 5vw, 64px);
  --section: clamp(64px, 9vw, 128px);
  --maxw: 1220px;
  --radius: 4px;
  --arch: 999px 999px 8px 8px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(44px, 8vw, 104px); }
h2 { font-size: clamp(32px, 5.2vw, 62px); }
h3 { font-size: clamp(21px, 2.4vw, 30px); }
h4 { font-size: clamp(17px, 1.6vw, 21px); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 780px; }
.section { padding-block: var(--section); position: relative; }
.section--cream { background: var(--cream); color: var(--coffee-deep); }
.section--coffee { background: var(--coffee-deep); }
.section--camel { background: var(--camel); color: var(--coffee-deep); }
.section--deep { background: var(--maroon-deep); }

.section--cream { --ink: var(--coffee-deep); --ink-soft: rgba(61,38,25,0.72);
  --ink-faint: rgba(61,38,25,0.45); --rule: rgba(61,38,25,0.16); --rule-strong: rgba(61,38,25,0.3); }
.section--camel { --ink: var(--coffee-deep); --ink-soft: rgba(61,38,25,0.75);
  --ink-faint: rgba(61,38,25,0.5); --rule: rgba(61,38,25,0.22); --rule-strong: rgba(61,38,25,0.4); }

.center { text-align: center; }
.stack > * + * { margin-top: 1.1em; }

/* ---------- Type utilities ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 18px;
  display: block;
}
.section--cream .eyebrow, .section--camel .eyebrow { color: var(--maroon); }

.script {
  font-family: var(--script);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rose);
}
.section--cream .script, .section--camel .script { color: var(--maroon); }

.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: var(--ink-soft); font-weight: 300; }
.small { font-size: 14px; color: var(--ink-soft); }
.tiny { font-size: 12.5px; letter-spacing: 0.06em; color: var(--ink-faint); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), transform .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--solid { background: var(--cream); color: var(--maroon); border-color: var(--cream); }
.btn--solid:hover { background: var(--rose-soft); border-color: var(--rose-soft); color: var(--maroon-dark); }

.btn--maroon { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }
.btn--maroon:hover { background: var(--maroon-dark); border-color: var(--maroon-dark); }

.btn--ghost:hover { background: var(--ink); color: var(--maroon); }
.section--cream .btn--ghost:hover, .section--camel .btn--ghost:hover { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--maroon);
  border-bottom: 1px solid var(--rule);
  transition: background .3s var(--ease);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 74px;
}

.wordmark { text-decoration: none; display: inline-flex; align-items: baseline; gap: 7px; color: var(--cream); }
.wordmark__the  { font-family: var(--script); font-size: 25px; color: var(--rose); line-height: 1; }
.wordmark__main { font-family: var(--display); font-size: 18px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; }
.wordmark__era  { font-family: var(--script); font-size: 25px; color: var(--rose); line-height: 1; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none; font-size: 12.5px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); padding: 6px 0; position: relative;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--rose); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--cream); }

/* The CTA in the nav is a button first, a nav link second. */
.nav a.btn { padding: 13px 26px; }
.nav a.btn::after { display: none; }
.nav a.btn--solid { color: var(--maroon); }
.nav a.btn--solid:hover { color: var(--maroon-dark); }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--cream); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--cream); color: var(--maroon);
  padding: 13px 0; overflow: hidden; white-space: nowrap;
  border-block: 1px solid var(--maroon-deep);
}
.marquee--camel { background: var(--camel); color: var(--coffee-deep); border-color: rgba(61,38,25,0.25); }
.marquee__track { display: inline-flex; gap: 0; animation: slide 34s linear infinite; }
.marquee__track span {
  font-family: var(--display); font-size: 15px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; padding-inline: 24px;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #8c3435 0%, var(--maroon) 45%, var(--maroon-deep) 100%);
  padding-block: clamp(56px, 9vw, 104px) clamp(56px, 9vw, 100px);
}
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 4vw, 56px); align-items: center;
}
.hero__logo { margin: 0 0 22px; line-height: 0.9; }
.hero__logo .l1 { font-family: var(--script); font-size: clamp(38px, 6vw, 72px); color: var(--rose); display: block; }
.hero__logo .l2 {
  font-family: var(--display); font-weight: 600;
  /* Capped so "COMEBACK" stays inside its grid column and never collides
     with the hero photos in the next column. */
  font-size: clamp(40px, 7vw, 100px); letter-spacing: 0.02em;
  text-transform: uppercase; display: block; margin: -0.08em 0;
}
.hero__logo .l3 { font-family: var(--script); font-size: clamp(38px, 6.5vw, 78px); color: var(--rose); display: block; text-align: right; margin-top: -0.15em; }
.hero__tag {
  font-family: var(--body); font-size: clamp(13px, 1.5vw, 16px); font-weight: 400;
  letter-spacing: 0.36em; text-transform: uppercase; color: var(--cream);
  padding-top: 20px; border-top: 1px solid var(--rule-strong);
}
.hero__blurb { margin-top: 24px; max-width: 46ch; }
.hero__cta { margin-top: 34px; }

/* ---------- Photo placeholders ---------- */
.photo {
  position: relative; overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,244,228,0.14), rgba(61,38,25,0.28)),
    linear-gradient(180deg, var(--camel), var(--coffee));
  border: 1px solid var(--rule-strong);
  display: grid; place-items: center; min-height: 200px;
}
.photo::after {
  content: attr(data-label);
  font-family: var(--body); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,244,228,0.82); text-align: center; padding: 12px 16px;
  max-width: 90%;
}
/* A real <img> uses the same .photo classes — it just fills the frame
   instead of showing the placeholder gradient and its label. */
img.photo {
  /* height:auto, not 100% — a percentage height inside an auto-height grid
     item makes the row measure short and the next section overlaps it.
     The aspect-ratio on .photo--tall / --wide / --square does the sizing. */
  display: block; width: 100%; height: auto;
  object-fit: cover; object-position: center 22%;
  min-height: 0; background: var(--coffee);
}
img.photo::after { content: none; }

.photo--arch { border-radius: var(--arch); }
.photo--round { border-radius: 50%; }
.photo--tall { aspect-ratio: 3 / 4; }
.photo--wide { aspect-ratio: 16 / 10; }
.photo--square { aspect-ratio: 1 / 1; }

.hero__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
.hero__photos .photo:first-child { transform: rotate(-2deg); }
.hero__photos .photo:last-child { transform: rotate(2deg) translateY(22px); }

/* ---------- Listen strip ---------- */
.listen {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}
.listen__label { font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); margin-right: 6px; }
.listen a {
  text-decoration: none; font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 20px; border: 1px solid var(--rule-strong); border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.listen a:hover { background: var(--cream); color: var(--maroon); border-color: var(--cream); }
.section--cream .listen a:hover, .section--camel .listen a:hover { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }

/* ---------- Section heading ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 56px); }
.sec-head h2 { margin: 0; max-width: 18ch; }
.sec-head p { max-width: 42ch; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: clamp(20px, 2.6vw, 34px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 26px; background: rgba(255,244,228,0.04);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); border-color: var(--rule-strong); }
.section--cream .card { background: rgba(123,44,45,0.04); }
.section--camel .card { background: rgba(255,244,228,0.3); }

/* Episode card */
.ep { text-decoration: none; color: inherit; }
.ep__meta { display: flex; gap: 14px; align-items: center; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.ep__num { font-family: var(--display); font-size: 13px; color: var(--rose); letter-spacing: 0.1em; }
.section--cream .ep__num { color: var(--maroon); }
.ep__title { font-size: clamp(19px, 2vw, 24px); margin: 0 0 12px; }
.ep__desc { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 20px; }
.ep__link { margin-top: auto; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); display: inline-flex; gap: 8px; align-items: center; }
.section--cream .ep__link, .section--camel .ep__link { color: var(--maroon); }
.ep:hover .ep__link { gap: 14px; transition: gap .3s var(--ease); }

/* Episode list row */
.ep-row {
  display: grid; grid-template-columns: 62px 1fr auto; gap: clamp(16px, 3vw, 40px);
  align-items: center; padding: 28px 0; border-bottom: 1px solid var(--rule);
  text-decoration: none; color: inherit;
  transition: padding-inline .35s var(--ease), background .35s var(--ease);
}
.ep-row:first-of-type { border-top: 1px solid var(--rule); }
.ep-row:hover { padding-inline: 14px; background: rgba(255,244,228,0.05); }
.section--cream .ep-row:hover { background: rgba(123,44,45,0.05); }
.ep-row__num { font-family: var(--display); font-size: clamp(24px, 3vw, 38px); color: var(--rule-strong); line-height: 1; }
.ep-row h3 { margin: 0 0 7px; font-size: clamp(19px, 2.2vw, 27px); }
.ep-row p { margin: 0; font-size: 15px; color: var(--ink-soft); max-width: 62ch; }
.ep-row__side { text-align: right; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }

/* Badge / sticker */
.badge {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  background: var(--rose); color: var(--maroon-dark);
}
.badge--outline { background: transparent; border: 1px solid var(--rule-strong); color: var(--ink-soft); }
.sticker {
  position: absolute; z-index: 3;
  display: grid; place-items: center; text-align: center;
  width: clamp(96px, 12vw, 138px); aspect-ratio: 1; border-radius: 50%;
  background: var(--rose); color: var(--maroon-dark);
  font-family: var(--display); font-size: clamp(12px, 1.3vw, 15px); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.25;
  transform: rotate(-11deg); padding: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

/* ---------- Product cards ---------- */
.product { text-decoration: none; color: inherit; display: block; }
.product .photo { aspect-ratio: 4 / 5; border-radius: var(--radius); transition: transform .4s var(--ease); }
.product:hover .photo { transform: scale(1.02); }
.product__name { font-family: var(--display); font-size: 20px; margin: 16px 0 5px; }
.product__meta { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.swatches { display: flex; gap: 6px; margin-top: 10px; }
.swatch { width: 15px; height: 15px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.18); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split--wide-left { grid-template-columns: 1.2fr 0.8fr; }

/* ---------- Video ---------- */
.video {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--rule-strong);
  background: linear-gradient(140deg, var(--coffee), var(--maroon-deep));
  display: grid; place-items: center;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video--feature { max-width: 960px; margin-inline: auto; }
.video__play {
  width: 68px; height: 68px; border-radius: 50%; background: var(--cream);
  display: grid; place-items: center; color: var(--maroon); font-size: 20px;
  transition: transform .3s var(--ease);
}
.video:hover .video__play { transform: scale(1.08); }
.video__cap { position: absolute; bottom: 14px; left: 16px; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- Stats ---------- */
/* auto-fit so the row still reads well whether there are four stats or six */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 2px; background: var(--rule); border: 1px solid var(--rule); }
.stat { background: var(--bg); padding: 32px 22px; text-align: center; }
.section--cream .stat { background: var(--cream); }
.stat__num { font-family: var(--display); font-size: clamp(32px, 4.5vw, 52px); line-height: 1; margin-bottom: 8px; }
.stat__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- Forms ---------- */
/* Base: every control inherits the surface it sits on, never a browser default. */
input[type="email"], input[type="text"], textarea, select {
  font: inherit; font-size: 16px; color: inherit;
  background: transparent; border: 0;
  border-bottom: 1px solid var(--rule-strong);
  border-radius: 0; padding: 11px 2px;
  appearance: none; -webkit-appearance: none;
  transition: border-color .3s var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--ink-faint); }
input:focus, textarea:focus, select:focus { outline: 0; border-color: var(--rose); }
.section--cream input:focus, .section--cream textarea:focus, .section--cream select:focus,
.section--camel input:focus, .section--camel textarea:focus, .section--camel select:focus { border-color: var(--maroon); }

select {
  cursor: pointer; padding-right: 26px;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: right 10px center, right 5px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
select option { background: var(--maroon); color: var(--cream); }
.section--cream select option, .section--camel select option { background: var(--cream); color: var(--coffee-deep); }

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { justify-self: start; margin-top: 8px; }

.signup { display: flex; gap: 10px; flex-wrap: wrap; max-width: 520px; align-items: center; }
.signup input { flex: 1 1 220px; min-width: 0; }
.form-note { flex-basis: 100%; margin-top: 10px; }

/* ---------- Link list ---------- */
.linklist { list-style: none; margin: 0; padding: 0; }
.linklist li { border-bottom: 1px solid var(--rule); }
.linklist a {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; text-decoration: none;
  font-family: var(--display); font-size: clamp(20px, 2.6vw, 30px);
  transition: padding-inline .35s var(--ease), color .35s var(--ease);
}
.linklist a:hover { padding-inline: 12px; color: var(--rose); }
.section--cream .linklist a:hover, .section--camel .linklist a:hover { color: var(--maroon); }
.linklist span { font-family: var(--body); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- Quote ---------- */
.quote { text-align: center; max-width: min(920px, 100%); margin-inline: auto; }
.quote blockquote { font-family: var(--display); font-size: clamp(28px, 4.6vw, 56px); line-height: 1.14; margin: 0 auto; max-width: 17ch; text-wrap: balance; }
.quote cite { display: block; margin-top: 26px; font-family: var(--body); font-style: normal; font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- CTA band ---------- */
.band { text-align: center; }
.band h2 { max-width: 16ch; margin-inline: auto; }
.band p { max-width: 50ch; margin-inline: auto; }
.band .btn-row { justify-content: center; margin-top: 32px; }

/* ---------- Page header (interior pages) ---------- */
.page-head {
  background: linear-gradient(180deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  padding-block: clamp(56px, 8vw, 108px) clamp(44px, 6vw, 78px);
  text-align: center; border-bottom: 1px solid var(--rule);
}
.page-head h1 { font-size: clamp(40px, 7.5vw, 92px); margin-bottom: 18px; }
.page-head p { max-width: 56ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--coffee-deep); padding-block: clamp(52px, 7vw, 86px) 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.footer h4 { font-family: var(--body); font-size: 11.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer a { text-decoration: none; font-size: 15px; color: var(--ink-soft); transition: color .25s var(--ease); }
.footer a:hover { color: var(--rose); }
.footer__bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 24px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.08em; color: var(--ink-faint);
}

/* ---------- Lip motif ---------- */
.lips { width: 46px; height: auto; opacity: 0.95; }
.lips path { fill: var(--rose); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__grid, .split, .split--wide-left { grid-template-columns: 1fr; }
  .hero__photos { max-width: 460px; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--maroon-deep);
    /* Closed state carries no padding — padding is not clipped by max-height,
       so any here would leak a sliver of the menu under the header. */
    padding: 0 var(--gut); border-bottom: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
  }
  .nav.is-open {
    max-height: calc(100vh - 74px); overflow-y: auto;
    padding: 8px var(--gut) 28px; border-bottom: 1px solid var(--rule);
  }
  .nav a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--rule); font-size: 14px; }
  .nav .btn { margin-top: 18px; border-bottom: 1px solid currentColor; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .ep-row { grid-template-columns: 1fr; gap: 10px; }
  .ep-row__num { font-size: 20px; }
  .ep-row__side { text-align: left; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__logo .l3 { text-align: left; }
  .sticker { display: none; }
}
