/* ============================================
   The Hardest Job Ever, Site Styles v2
   Direction: cream-first, editorial, de-boxed.
   Brand spec: Website/CLAUDE.md (locked)
   ============================================ */

@font-face {
  font-family: 'ROM';
  src: url('../Branding/Fonts/ABCROM-Black-Trial.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ROM';
  src: url('../Branding/Fonts/ABCROM-Bold-Trial.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ROM';
  src: url('../Branding/Fonts/ABCROM-Regular-Trial.otf') format('opentype');
  font-weight: 400 500; /* Medium dropped to reduce license cost; Regular covers 400-500 */
  font-style: normal;
  font-display: swap;
}

:root {
  --teal:   #24695E;
  --teal-dark: #1B5248;   /* hover state for teal buttons */
  --cream:  #ECE1D0;
  --bg:     #FAF8F4;      /* soft white site canvas (matches splash photo wall) */
  --navy:   #3B4E91;
  --orange: #F84821;
  --pink:   #EB81D5;
  --yellow: #E2DC2F;
  --orange-text: #B02F0D; /* WCAG AA-safe orange for small text on light bg */
  --ink:    #26251F;      /* dark neutral for body text */
  --rule:   rgba(36, 105, 94, 0.22); /* thin editorial divider lines, teal-tinted */
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'ROM', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Nav/footer logo: white PNG recolored to solid teal via SVG filter
   (#allTeal, defined inline on each page). Same proven technique as the
   splash logo's teal "Ever". */
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  filter: url(#allTeal);
}
.logo-img.lg { height: 62px; }

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--teal);
}
h1 { font-size: clamp(1.6rem, 2.9vw, 2.3rem); line-height: 1.18; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
.accent { color: inherit; }
.accent-pink { color: inherit; }

.kicker {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 16px;
  color: var(--teal);
}
.kicker.on-dark { color: var(--yellow); }
.kicker.on-pink { color: var(--ink); }

.lede { font-size: 1.15rem; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #d93a17; }
.btn-ghost { border-color: #fff; color: #fff; background: transparent; }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--teal); color: #fff; }
.btn-navy:hover { background: var(--teal-dark); }
.btn-outline { border-color: var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }

/* ---------- Nav (light, editorial) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { border-color: var(--pink); }
.nav-links a.active { border-color: var(--orange); }
.nav-socials { display: flex; align-items: center; gap: 14px; }
.nav-socials a { color: var(--teal); display: inline-flex; transition: color 0.15s; }
.nav-socials a:hover { color: var(--orange-text); }
.nav-socials svg { width: 20px; height: 20px; fill: currentColor; }
.nav-listen {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-listen:hover { background: #d93a17; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--teal);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Split hero (home) ---------- */
.hero-split {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-copy .display-xl {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  color: var(--teal);
  max-width: 22ch;
}
.hero-copy .display-xl .accent { color: inherit; }
/* two-line headline: equal twins, clean stack */
.display-xl .line-setup { display: block; margin-bottom: 0.55em; }
.display-xl .line-payoff { display: block; }
.hero-copy h1.sub, .hero-copy .sub {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--ink);
  margin: 22px 0 34px;
  max-width: 44ch;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 20px;
}
/* (yellow offset block removed per Purvi: airy, splash-cohesive look) */

/* ---------- Divider strip (slim social-proof bridge under the hero) ---------- */
.divider-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
}
.divider-strip .wrap {
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--teal);
}

/* ---------- Trust bar (light, editorial: teal numerals between thin rules) ---------- */
.trust {
  color: var(--ink);
  padding: 44px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  text-align: center;
}
.trust-num {
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--teal);
}
.trust-num .yellow { color: var(--teal); }
.trust-label { font-size: 0.9rem; opacity: 0.85; margin-top: 6px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }

/* ---------- Visual episode cards (Karen's feedback: artwork-first) ---------- */
.ep-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.ep-card-v { display: block; text-decoration: none; }
.ep-card-v img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ep-card-v:hover img {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 14px 30px rgba(36, 105, 94, 0.18);
}
.ep-card-v .ep-meta { margin: 14px 0 4px; }
.ep-card-title {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  transition: color 0.15s ease;
}
.ep-card-v:hover .ep-card-title { color: var(--orange-text); }

/* ---------- Hero proof line (compact social proof) ---------- */
.hero-proof {
  margin-top: 22px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
}

/* ---------- Candid photo band (visual warmth, zero text) ---------- */
.candid-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.candid-band img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

/* ---------- Episode rows (editorial, de-boxed) ---------- */
.ep-list { border-bottom: 1px solid var(--rule); }
.ep-row {
  display: grid;
  grid-template-columns: 148px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
}
.ep-row img {
  width: 148px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.2s ease;
}
.ep-row:hover img { transform: scale(1.04) rotate(-1deg); }
.ep-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ep-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
}
.ep-label.teal { color: var(--teal); }
.ep-label.navy { color: var(--teal); }
.ep-date { font-size: 0.8rem; color: #6b6255; }
.ep-row-title {
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  transition: color 0.15s ease;
}
.ep-row:hover .ep-row-title { color: var(--orange-text); }
.ep-row-desc {
  font-size: 0.95rem;
  color: #4a4436;
  margin-top: 8px;
  max-width: 62ch;
}
.ep-arrow {
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--orange-text);
  transition: transform 0.15s ease;
}
.ep-row:hover .ep-arrow { transform: translateX(6px); }

/* ---------- Pink band (about strip, home) ---------- */
.pink-band {
  background: var(--pink);
  color: var(--ink);
}
.pink-band h2 { color: var(--ink); } /* teal fails contrast on pink; ink is the approved exception */
.about-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-strip-grid img {
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 30%;
}
.about-strip-grid p { margin: 18px 0 28px; font-size: 1.1rem; max-width: 52ch; }

/* ---------- Quotes (editorial, no boxes) ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.quote-plain {
  border-left: 3px solid var(--pink);
  padding-left: 24px;
}
.quote-mark {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.quote-text { font-size: 1.05rem; }
.quote-source {
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
}

/* ---------- Listen bar ---------- */
.listen-bar {
  background: var(--orange);
  color: #fff;
  padding: 76px 0;
  text-align: center;
}
.listen-bar h2 { color: #fff; max-width: 22ch; margin: 0 auto 12px; }
.listen-bar p { font-size: 1.2rem; font-weight: 700; margin-bottom: 32px; } /* large-text size for AA on orange */
.platform-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.platform-btn:hover { transform: translateY(-2px); }
.platform-btn svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- Instagram (official post embeds) ---------- */
/* Instagram's embed.js fully controls each embed's width/height math.
   Do NOT force widths on .instagram-media; overrides distort reels. We only
   lay the embeds out side by side and center them. */
.ig-embeds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin: 36px 0;
}
.ig-embeds .instagram-media {
  flex: 0 1 328px;
  margin: 0 !important;
}

/* ---------- Instagram ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 36px 0;
}
.ig-grid a { display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 1/1; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.ig-grid a:hover img { transform: scale(1.05); }

/* ---------- Newsletter placeholder ----------
   HIDDEN until Purvi launches a newsletter.
   To activate: remove the "hidden" attribute in the HTML. */
.newsletter[hidden] { display: none; }
.newsletter {
  background: var(--teal);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}

/* ---------- Page hero (interior pages, light + editorial) ---------- */
.page-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 { max-width: 20ch; }
.page-hero .lede { margin-top: 20px; }

/* ---------- Teal band (guests, formats): now light + editorial ---------- */
.teal-band {
  color: var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.teal-band h2, .teal-band h3 { color: var(--teal); }
.teal-band .kicker.on-dark { color: var(--teal); }
.teal-band .trust-num { color: var(--teal); }
.band-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}
.band-col {
  border-left: 1px solid var(--rule);
  padding-left: 24px;
}
.band-col h3 { text-transform: none; letter-spacing: 0; font-weight: 700; margin-bottom: 10px; }

/* ---------- Hosts (about page, editorial rows) ---------- */
.host-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--rule);
}
.host-row:last-of-type { border-bottom: 1px solid var(--rule); }
.host-row img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}
.host-row h3 { margin-bottom: 4px; }
.host-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 14px;
}
.about-photo-band { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-photo-band img { border-radius: 18px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* ---------- FAQ (about page) ---------- */
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 26px 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--rule); }
.faq-q {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 8px;
}
.faq-item p { max-width: 62ch; }

/* ---------- Work With Us (de-boxed value columns) ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.value-col {
  border-top: 3px solid var(--teal);
  padding-top: 22px;
}
.value-col h3 { text-transform: none; letter-spacing: 0; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.value-num {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}
.cta-band {
  background: var(--orange);
  color: #fff;
  padding: 84px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 24ch; margin: 0 auto 14px; }
/* primary buttons on the orange band flip to white so they read as clickable */
.cta-band .btn-primary { background: #fff; color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--cream); color: var(--ink); }
.cta-band p { margin-bottom: 30px; font-size: 1.2rem; font-weight: 700; } /* large-text size for AA on orange */

/* ---------- Footer (light, editorial) ---------- */
.footer {
  border-top: 1px solid var(--rule);
  padding: 56px 0 32px;
  color: var(--ink);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-links { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.footer-links a:hover { color: var(--orange-text); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: var(--teal); }
.footer-socials a:hover { color: var(--orange-text); }
.footer-socials svg { width: 22px; height: 22px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-tagline { color: var(--orange-text); font-weight: 500; }

/* ---------- Splash landing (index.html) ----------
   Tiger Sisters-style entry: full-screen personality photo + logo.
   The whole screen is one link into home.html. */
.splash {
  display: block;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  text-decoration: none;
  overflow: hidden;
  background: var(--bg);
}
.splash-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%; /* pins the hosts' faces near mid-viewport at any crop */
  animation: splashPhoto 1.6s ease both;
}
/* soft dark-teal scrim across the top so the white logo holds on the white wall */
.splash::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 38vh;
  background: linear-gradient(180deg, rgba(18, 42, 37, 0.38), rgba(18, 42, 37, 0));
  z-index: 1;
  pointer-events: none;
}
.splash-brand {
  position: absolute;
  top: clamp(40px, 7vh, 72px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: splashFade 1.2s ease 0.4s both;
}
.splash-brand img {
  width: clamp(260px, 34vw, 480px);
  height: auto;
  /* #everTeal (inline SVG filter in index.html) maps the pink "Ever" to exact
     brand teal #24695E; white wordmark stays white. If the filter is ever
     unsupported, the logo falls back to its original white + pink. */
  filter: url(#everTeal) drop-shadow(0 2px 14px rgba(0, 0, 0, 0.28));
}
.splash-tagline {
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
.splash-photo-link { position: absolute; inset: 0; display: block; }
.splash-ctas {
  position: absolute;
  bottom: 6vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 14px;
  animation: splashFadeCentered 1.2s ease 1s both;
}
.splash-btn {
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 13px 30px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
}
.splash-btn:hover { transform: translateY(-3px); }
.splash-btn.primary { background: var(--orange); color: #fff; }
.splash-btn.primary:hover { background: #d93a17; }
@keyframes splashFade {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes splashFadeCentered {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes splashPhoto {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
@media (max-width: 700px) {
  .splash-photo { object-position: 50% 50%; }
  .splash-brand { top: 6vh; }
  .splash-brand img { width: min(74vw, 330px); }
  .splash-tagline { white-space: normal; width: 80vw; }
  .splash-ctas { flex-direction: column; align-items: center; gap: 10px; width: max-content; }
}

/* ---------- Entrance motion (mirrors the splash) ---------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes photoIn {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: none; }
}
/* hero and page-hero elements stagger in on load */
.hero-copy > * { animation: riseIn 0.8s ease both; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.24s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.36s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.48s; }
.hero-photo img { animation: photoIn 1.2s ease 0.2s both; }
.page-hero .wrap > * { animation: riseIn 0.8s ease both; }
.page-hero .wrap > *:nth-child(2) { animation-delay: 0.12s; }
.page-hero .wrap > *:nth-child(3) { animation-delay: 0.24s; }
/* sections below the fold rise in as you scroll (class added by JS) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .hero-photo img, .page-hero .wrap > *,
  .splash-photo, .splash-brand, .splash-enter { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 56px; padding-top: 48px; }
  .hero-photo { max-width: 480px; margin: 0 auto; }
  .about-strip-grid { grid-template-columns: 1fr; }
  .host-row { grid-template-columns: 1fr; gap: 24px; }
  .host-row img { max-width: 420px; }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .about-photo-band { grid-template-columns: 1fr; }
  .about-photo-band img { aspect-ratio: 4/3; }
  .ep-row { grid-template-columns: 96px 1fr; gap: 20px; }
  .ep-row img { width: 96px; }
  .ep-arrow { display: none; }
}
@media (max-width: 480px) {
  .nav-socials { display: none; }
}
