/* ════════════════════════════════════════════════════════════════
   AUBRYANNA — SAFE  ·  Version 3 · "Soft Focus"
   Editorial Romantic · Restrained · Artist-Era
   Concept: warm linen base + ink type + dusty rose accents
   ════════════════════════════════════════════════════════════════ */


/* ── TOKENS ────────────────────────────────────────────────────── */
:root {
  /* Base palette */
  --linen:    #f5ede4;   /* warm page base           */
  --linen-2:  #ede0d3;   /* slightly darker linen    */
  --linen-3:  #e2d2c2;   /* warm mid-tone            */
  --cream:    #fdf8f3;   /* off-white highlight      */
  --ink:      #1a1018;   /* near-black text          */
  --ink-2:    #2e1e28;   /* deep dark section bg     */
  --ink-3:    #3d2535;   /* dark section alt         */
  --wine:     #4a1528;   /* muted burgundy accent    */
  --rose:     #a04060;   /* muted dusty rose         */
  --blush:    #c8798e;   /* soft pink mid-tone       */
  --petal:    #e8afc0;   /* lightest pink            */
  --dust:     #9e7d8a;   /* warm mauve/neutral       */

  /* Section system */
  --bg-light:  var(--linen);
  --bg-dark:   var(--ink-2);
  --bg-soft:   var(--linen-2);

  /* Text on light backgrounds */
  --tl-hi:    var(--ink);
  --tl-mid:   rgba(26,16,24,0.58);
  --tl-low:   rgba(26,16,24,0.36);

  /* Text on dark backgrounds */
  --td-hi:    rgba(253,248,243,0.92);
  --td-mid:   rgba(253,248,243,0.58);
  --td-low:   rgba(253,248,243,0.32);

  /* Typography */
  --f-display: 'Cormorant Garant', Georgia, serif;
  --f-body:    'Jost', -apple-system, sans-serif;
  --f-script:  'Dancing Script', cursive;

  /* Layout */
  --max-w:    1100px;
  --pad-h:    clamp(1.25rem, 5vw, 2.75rem);
  --section-v: clamp(5rem, 8vw, 8rem);

  /* Motion — restrained */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s;
  --t-med:  0.45s;
  --t-slow: 0.85s;

  /* Radii */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-pill: 999px;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--f-body);
  background: var(--linen);
  color: var(--tl-hi);
  overflow-x: hidden;
  line-height: 1.65;
}
img     { display: block; max-width: 100%; }
a       { color: inherit; text-decoration: none; }
button  { cursor: pointer; font-family: inherit; border: none; background: none; }
ul      { list-style: none; }
em      { font-style: italic; }
strong  { font-weight: 600; }
figure  { margin: 0; }

/* Very subtle grain — just a whisper, not a texture */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}


/* ── UTILITIES ─────────────────────────────────────────────────── */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}


/* ── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal-fade {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
}
.reveal-fade.in-view,
.reveal-left.in-view,
.reveal-scale.in-view { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.07s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.26s; }
.delay-4 { transition-delay: 0.38s; }
.delay-5 { transition-delay: 0.50s; }


/* ── SHARED TYPE ───────────────────────────────────────────────── */

/* Small spaced label — used as section identifiers */
.label-tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0.8;
}
.label-tag.dark { color: var(--wine); }

/* Section headline — display serif, editorial */
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--tl-hi);
  margin-top: 0.8rem;
}
.section-title em { color: var(--rose); }

/* Chip tags */
.chip {
  display: inline-block;
  padding: 0.28rem 0.8rem;
  border-radius: var(--r-pill);
  background: rgba(160,64,96,0.08);
  border: 1px solid rgba(160,64,96,0.18);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
}
.chip-soft {
  background: rgba(26,16,24,0.06);
  border-color: rgba(26,16,24,0.14);
  color: var(--tl-mid);
}


/* ══════════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 2.2rem;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--t-fast) var(--ease-soft),
    box-shadow var(--t-fast),
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast);
}
.btn:active { transform: scale(0.975) !important; }

/* Dark ink — primary on light backgrounds */
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  transform: translateY(-2px);
  background: var(--ink-3);
}

/* Ghost on dark backgrounds */
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26,16,24,0.3);
}
.btn-ghost-dark:hover {
  transform: translateY(-2px);
  border-color: rgba(26,16,24,0.6);
  background: rgba(26,16,24,0.04);
}

/* Ghost ink — on mid-light backgrounds */
.btn-ghost-ink {
  background: transparent;
  color: var(--wine);
  border: 1px solid rgba(74,21,40,0.28);
}
.btn-ghost-ink:hover {
  transform: translateY(-2px);
  border-color: var(--rose);
  color: var(--rose);
}

/* Outline ink — on light backgrounds */
.btn-outline-ink {
  background: transparent;
  color: var(--tl-hi);
  border: 1px solid rgba(26,16,24,0.25);
}
.btn-outline-ink:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  background: rgba(26,16,24,0.04);
}

/* Cream — primary on dark backgrounds */
.btn-cream {
  background: var(--cream);
  color: var(--wine);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-cream:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
}

/* ── HERO PRE-SAVE — dominant rose CTA, strongest button on page ── */
.btn-presave {
  background: #B94A68;
  color: #fdf4f7;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 1.05rem 2.8rem;
  border-radius: var(--r-pill);
  box-shadow:
    0 4px 24px rgba(185,74,104,0.48),
    0 1px  6px rgba(185,74,104,0.28);
  border: none;
  transition:
    transform var(--t-fast) var(--ease-soft),
    box-shadow var(--t-fast),
    background var(--t-fast);
}
.btn-presave:hover {
  background: #A63D57;
  transform: translateY(-3px);
  box-shadow:
    0 8px 36px rgba(185,74,104,0.58),
    0 2px  8px rgba(185,74,104,0.32);
}
.btn-presave:active { transform: scale(0.975) !important; }

/* ── HERO GHOST — secondary on dark/photo background ─────────── */
.btn-ghost-hero {
  background: transparent;
  color: rgba(253,248,243,0.82);
  border: 1px solid rgba(253,248,243,0.35);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  padding: 1.0rem 2.2rem;
}
.btn-ghost-hero:hover {
  transform: translateY(-2px);
  border-color: rgba(232,175,192,0.6);
  color: var(--petal);
  background: rgba(253,248,243,0.06);
}

/* Ghost light — on dark backgrounds */
.btn-ghost-light {
  background: transparent;
  color: var(--td-hi);
  border: 1px solid rgba(253,248,243,0.28);
}
.btn-ghost-light:hover {
  transform: translateY(-2px);
  border-color: rgba(253,248,243,0.55);
  background: rgba(253,248,243,0.05);
}


/* ══════════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem var(--pad-h);
  transition: background var(--t-med), padding var(--t-med), box-shadow var(--t-med);
}

/* Transparent over hero photo */
#nav.scrolled {
  background: rgba(245,237,228,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem var(--pad-h);
  box-shadow: 0 1px 0 rgba(26,16,24,0.08);
}
/* When hero is dark photo, nav starts transparent white text */
#nav:not(.scrolled) .nav-logo,
#nav:not(.scrolled) .nav-links a { color: rgba(253,248,243,0.9); }
#nav:not(.scrolled) .nav-presave { color: rgba(253,248,243,0.85); border-color: rgba(253,248,243,0.3); }
#nav:not(.scrolled) .nav-toggle span { background: rgba(253,248,243,0.8); }

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--t-fast);
  z-index: 2;
}
.nav-logo:hover { opacity: 0.65; }

/* Logo image — white PNG; inverted on scrolled/light nav */
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  /* white logo always visible on dark hero */
  filter: brightness(0) invert(1);
  transition: filter var(--t-fast), opacity var(--t-fast);
}
/* After scrolling, nav bg is linen — flip logo to dark */
#nav.scrolled .nav-logo-img {
  filter: brightness(0);
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tl-mid);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--rose); }
#nav.scrolled .nav-links a { color: var(--tl-mid); }

.nav-right { display: flex; align-items: center; gap: 0.9rem; z-index: 2; }

/* Press Kit nav link — secondary, understated, for media/industry */
.nav-epk {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tl-low);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav-epk:hover { color: var(--rose); }
#nav:not(.scrolled) .nav-epk { color: rgba(253,248,243,0.45); }
#nav:not(.scrolled) .nav-epk:hover { color: rgba(253,248,243,0.85); }
#nav.scrolled .nav-epk { color: var(--tl-low); }

.nav-presave {
  font-family: var(--f-body);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  border-bottom: 1px solid rgba(74,21,40,0.28);
  padding-bottom: 1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.nav-presave em { font-style: italic; font-family: var(--f-display); font-size: 0.76rem; }
.nav-presave:hover { color: var(--rose); border-color: var(--blush); }
#nav.scrolled .nav-presave { color: var(--wine); border-color: rgba(74,21,40,0.28); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--tl-hi); opacity: 0.7;
  transition: all var(--t-med); transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); opacity: 1; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); opacity: 1; }


/* ══════════════════════════════════════════════════════════════════
   01 · HERO
══════════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: brightness(0.46) saturate(0.62);
  transition: transform 14s ease-out;
}
#hero:hover .hero-photo-img { transform: scale(1.025); }

.hero-photo-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(26,16,24,0.45)  0%,
      rgba(26,16,24,0.04)  38%,
      rgba(26,16,24,0.12)  62%,
      rgba(26,16,24,0.88) 100%
    );
}

.hero-body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  max-width: 800px; width: 100%;
  padding: 9rem var(--pad-h) 6rem;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--petal);
  opacity: 0.7;
  margin-bottom: 2rem;
}
.hero-eyebrow.light { color: var(--petal); }

/* Hero name — now an image logo */
.hero-name {
  margin-bottom: 0.15em;
  line-height: 1;
}
.hero-logo-img {
  height: clamp(3rem, 9vw, 6.5rem);
  width: auto;
  display: block;
  margin: 0 auto;
  /* screen blend: black bg disappears, white lettering shows through */
  mix-blend-mode: screen;
  /* petal-pink tint #e8afc0 applied to the white strokes */
  filter: sepia(1) saturate(1.8) hue-rotate(295deg) brightness(1.12);
  opacity: 0.96;
}

/* SAFE — oversized outlined title  */
.hero-safe {
  font-family: var(--f-display);
  font-size: clamp(7rem, 26vw, 21rem);
  font-weight: 200;
  line-height: 0.82;
  letter-spacing: 0.12em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232,175,192,0.42);
  text-stroke: 1px rgba(232,175,192,0.42);
  user-select: none;
  margin-bottom: 0.25em;
  transition: -webkit-text-stroke-color var(--t-med);
}
.hero-safe:hover { -webkit-text-stroke-color: rgba(232,175,192,0.72); }

/* Tagline */
.hero-tagline {
  font-family: var(--f-display);
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  font-style: italic;
  font-weight: 300;
  color: var(--td-mid);
  letter-spacing: 0.03em;
  line-height: 1.85;
  margin-bottom: 0;
}
.hero-tagline em { color: var(--petal); }

/* Countdown — inline, minimal */
.hero-cd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin: 2rem 0 1.8rem;
}
.hero-cd-label {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.6;
}
.countdown-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  min-width: 54px;
}
.cd-n {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: opacity 0.12s;
}
.cd-n.tick-flip { animation: cdFlip 0.18s var(--ease-out) both; }
@keyframes cdFlip {
  from { opacity: 0.3; transform: translateY(-4px); }
  to   { opacity: 1;   transform: none; }
}
.cd-l {
  font-family: var(--f-body);
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.55;
}
.cd-sep {
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: rgba(232,175,192,0.25);
  margin-bottom: 1.2rem;
  user-select: none;
}

/* Hero CTA row */
.hero-cta {
  display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center;
}

/* Hero social icon row — icons only, below CTAs */
.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: rgba(232, 175, 192, 0.7);   /* petal-pink, clearly visible on dark hero */
  text-decoration: none;
  transition: color 0.25s, opacity 0.25s, transform 0.22s;
}
.hero-social-link:hover,
.hero-social-link:focus-visible {
  color: #ffffff;
  transform: translateY(-3px);
  outline: none;
}
.hero-social-link:focus-visible {
  box-shadow: 0 0 0 2px rgba(232,175,192,0.5);
  border-radius: 4px;
}

/* Scroll cue */
.scroll-mark {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.scroll-mark-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(232,175,192,0.4), transparent);
  animation: scrollDrop 2.6s var(--ease-soft) infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}


/* ══════════════════════════════════════════════════════════════════
   02 · SAFE — THE SINGLE
   Light linen background — editorial Polaroid left, text right
══════════════════════════════════════════════════════════════════ */
#safe-section {
  background: var(--linen);
  padding: var(--section-v) 0;
}

.safe-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Polaroid treatment */
.safe-art-side {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.safe-polaroid {
  background: var(--cream);
  padding: 1.2rem 1.2rem 3.2rem;
  box-shadow: 0 8px 40px rgba(26,16,24,0.12), 0 2px 8px rgba(26,16,24,0.08);
  transform: rotate(-1.5deg);
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow);
  max-width: 360px;
  width: 100%;
}
.safe-art-side:hover .safe-polaroid {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 16px 56px rgba(26,16,24,0.16), 0 4px 16px rgba(26,16,24,0.1);
}
.safe-polaroid-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.safe-polaroid-caption {
  font-family: var(--f-script);
  font-size: 1.05rem;
  color: var(--dust);
  text-align: center;
  margin-top: 0.8rem;
  letter-spacing: 0.02em;
}

/* Decorative tape pieces */
.safe-tape {
  position: absolute;
  width: 42px; height: 14px;
  background: rgba(226,210,194,0.85);
  opacity: 0.75;
  border-radius: 2px;
  pointer-events: none;
}
.safe-tape-tl {
  top: -5px; left: calc(50% - 120px);
  transform: rotate(-6deg);
}
.safe-tape-br {
  bottom: 32px; right: calc(50% - 128px);
  transform: rotate(5deg);
}

/* Safe text side */
.safe-text-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.safe-title {
  font-family: var(--f-display);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-top: 1rem;
}
.safe-by {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--tl-mid);
  margin-bottom: 2rem;
}
.safe-by em { color: var(--rose); }

.safe-quote {
  margin-bottom: 1.75rem;
  padding: 1.2rem 1.5rem;
  border-left: 2px solid rgba(160,64,96,0.25);
  background: rgba(160,64,96,0.035);
}
.safe-quote p {
  font-family: var(--f-display);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--tl-mid);
}
.safe-quote p em { color: var(--rose); }
.safe-quote footer {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--dust);
  margin-top: 0.6rem;
}

.safe-body {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--tl-mid);
  margin-bottom: 1.5rem;
}
.safe-body strong { color: var(--ink); font-weight: 600; }
.safe-body em     { color: var(--rose); }

.safe-chips {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
}


/* ══════════════════════════════════════════════════════════════════
   03 · ARTIST IDENTITY
   Full-bleed dark-photo left / linen text right
══════════════════════════════════════════════════════════════════ */
#artist {
  padding: 0;
  background: var(--linen-2);
}

.artist-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: start;  /* allow text col to grow taller than photo */
}

.artist-photo-col {
  position: sticky;
  top: 0;
  overflow: hidden;
  min-height: 80vh;
  max-height: 100vh;
}
.artist-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: saturate(0.7) brightness(0.88);
  transition: transform var(--t-slow) var(--ease-out);
}
.artist-photo-col:hover .artist-photo-img { transform: scale(1.025); }
.artist-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(237,224,211,0) 55%,
    rgba(226,210,194,0.88) 100%
  );
}

.artist-text-col {
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 5rem 5rem 5rem var(--pad-h);
  background: var(--linen-2);
}

.artist-headline {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin-top: 0.9rem;
}
.artist-headline em { font-style: italic; color: var(--rose); }

.artist-rule {
  width: 36px; height: 1px;
  background: var(--blush); opacity: 0.45;
  border: none; margin: 1.8rem 0 2.2rem;
}

.artist-body {
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.88; color: var(--tl-mid);
  max-width: 480px; margin-bottom: 1.1rem;
}
.artist-body em { color: var(--rose); }

.artist-closer {
  font-family: var(--f-display);
  font-style: italic; font-size: 1rem; font-weight: 300;
  color: var(--ink); opacity: 0.7;
  margin-bottom: 2rem; max-width: 480px;
}

.artist-tags {
  display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 2.2rem;
}

.artist-cta {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════════════
   04 · INNER CIRCLE
   Dark section — ink base, cream type
══════════════════════════════════════════════════════════════════ */
#inner-circle {
  background: var(--ink-2);
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}

/* Ghost SAFE word — very subtle */
.ic-ghost-word {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: clamp(14rem, 38vw, 30rem);
  font-weight: 200; letter-spacing: 0.12em;
  color: rgba(160,64,96,0.04);
  pointer-events: none; user-select: none; z-index: 0;
  line-height: 1;
}

.ic-outer {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h);
  position: relative; z-index: 1;
}

.ic-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}

/* Invitation */
.label-tag-light {
  display: inline-block;
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--petal); opacity: 0.65;
}

.ic-headline {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 300; line-height: 1.1;
  color: var(--td-hi);
  margin: 0.9rem 0 1.8rem;
}
.ic-headline em {
  font-family: var(--f-script);
  font-style: normal;
  font-size: 0.72em;
  color: var(--blush);
  opacity: 0.9;
  display: block;
  line-height: 1.4;
}

.ic-copy {
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.88; color: var(--td-mid);
  max-width: 420px;
}

.ic-perks {
  margin-top: 2.2rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.ic-perks li {
  display: flex; align-items: baseline; gap: 0.75rem;
  font-size: 0.85rem; font-weight: 300; color: var(--td-mid);
}
.ic-perks li span {
  color: var(--blush); opacity: 0.7; font-family: var(--f-display); font-size: 1rem;
}

/* Form side */
.ic-form-side {
  background: rgba(253,248,243,0.055);
  border: 1px solid rgba(232,175,192,0.1);
  padding: 2.8rem 2.4rem;
  border-radius: var(--r-md);
  overflow: hidden;   /* contain all children */
  box-sizing: border-box;
}

.ic-form-lead {
  font-family: var(--f-display);
  font-size: 1.6rem; font-weight: 300;
  color: var(--td-hi);
  margin-bottom: 1.8rem;
}

/* Form fields */
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form-group {
  display: flex; flex-direction: column;
  gap: 0.4rem; margin-bottom: 1rem;
}
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--petal); opacity: 0.65;
}
/* Required asterisk */
.form-req {
  color: var(--blush); opacity: 0.8; margin-left: 0.2em;
}
/* Optional hint (legacy — kept for any remaining uses) */
.form-optional {
  font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: none;
  color: rgba(232,175,192,0.38); margin-left: 0.3em;
}
/* Labels inside the optional group are slightly softer */
.ic-optional-group .form-group label {
  opacity: 0.48;
}
.form-group input,
.form-group select {
  background: rgba(253,248,243,0.05);
  border: 1px solid rgba(232,175,192,0.14);
  border-radius: var(--r-xs);
  padding: 0.8rem 1rem;
  font-family: var(--f-body);
  font-size: 0.85rem; font-weight: 300;
  color: var(--td-hi);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none; appearance: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23e8afc0' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center;
  padding-right: 2.2rem; cursor: pointer;
}
.form-group select option { background: var(--ink-2); color: var(--td-hi); }
.form-group input::placeholder { color: rgba(253,248,243,0.2); }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(160,64,96,0.5);
  background: rgba(160,64,96,0.04);
  box-shadow: 0 0 0 3px rgba(160,64,96,0.08);
}
.form-group input.error { border-color: rgba(255,100,120,0.55); }

/* ── Phone field with country-code prefix ── */
.phone-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(232,175,192,0.14);
  border-radius: var(--r-xs);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  background: rgba(253,248,243,0.05);
}
.phone-wrap:focus-within {
  border-color: rgba(160,64,96,0.5);
  box-shadow: 0 0 0 3px rgba(160,64,96,0.08);
}
.phone-prefix-wrap {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0 0.75rem;
  background: rgba(232,175,192,0.07);
  border-right: 1px solid rgba(232,175,192,0.14);
  flex-shrink: 0;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.phone-flag { font-size: 0.95rem; line-height: 1; }
.phone-code {
  font-size: 0.78rem; font-weight: 400;
  color: var(--petal); opacity: 0.75;
  font-family: var(--f-body);
  letter-spacing: 0.04em;
}
.phone-wrap input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
  min-width: 0;
}
.phone-wrap input:focus { box-shadow: none !important; background: transparent !important; }

/* ── Conditional field smooth reveal ── */
#ic_state_group,
#ic_region_group {
  overflow: hidden;
  transition: opacity 0.22s ease;
}
#ic_state_group[style*="display: none"],
#ic_region_group[style*="display: none"] {
  opacity: 0;
}

/* ── Optional location group heading ── */
.ic-optional-group {
  margin-top: 0.6rem;
  margin-bottom: 0;
}

/* ── Map opt-in checkbox ── */
.ic-map-checkbox-wrap {
  background: rgba(232,175,192,0.04);
  border: 1px solid rgba(232,175,192,0.1);
  border-radius: var(--r-xs);
  padding: 0.8rem 0.9rem;
  margin-top: 0.6rem;
  margin-bottom: 0.5rem;
}
.ic-map-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0;   /* reset — children set their own sizes */
  margin-bottom: 0;  /* helper line supplies spacing below */
}
.ic-map-checkbox {
  flex-shrink: 0;
  width: 15px; height: 15px;
  margin-top: 0;
  appearance: none; -webkit-appearance: none;
  border: 1px solid rgba(232,175,192,0.35);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  position: relative;
}
.ic-map-checkbox:checked {
  background: rgba(160,64,96,0.6);
  border-color: rgba(160,64,96,0.8);
}
.ic-map-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: 2px solid var(--cream);
  border-top: none; border-left: none;
  transform: rotate(42deg);
}
.ic-map-checkbox-text {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--petal);
  opacity: 0.85;
  line-height: 1.4;
}
/* Helper line below the checkbox label row */
.ic-map-checkbox-helper {
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--petal);
  opacity: 0.38;
  margin-top: 0.35rem;
  margin-left: calc(15px + 0.65rem); /* align with label text */
  line-height: 1.6;
  letter-spacing: 0.015em;
}
.ic-map-checkbox-sub { display: none; } /* removed — replaced by helper */

.form-consent {
  font-size: 0.7rem; font-weight: 300; line-height: 1.55;
  color: var(--td-low); margin-bottom: 1.5rem;
}

/* Submit */
.btn-ic-submit {
  width: 100%; padding: 0.9rem 1.6rem;
  border-radius: var(--r-pill);
  background: var(--cream); color: var(--wine);
  font-family: var(--f-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; border: none;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 3px 18px rgba(0,0,0,0.2);
  transition: all var(--t-fast) var(--ease-soft);
}
.btn-ic-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,0,0,0.28); }
.btn-ic-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Success */
.ic-success {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.ic-success-icon {
  font-size: 2.2rem; color: var(--rose); margin-bottom: 1rem;
  animation: heartIn 1.4s var(--ease-out) both;
}
@keyframes heartIn {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  60%  { transform: scale(1.2) rotate(4deg); }
  to   { transform: none; opacity: 1; }
}
.ic-success-title {
  font-family: var(--f-display); font-size: 2rem; font-weight: 300;
  color: var(--td-hi); margin-bottom: 0.75rem;
}
.ic-success-body {
  font-size: 0.88rem; font-weight: 300; line-height: 1.75; color: var(--td-mid);
  margin-bottom: 0.4rem;
}
.ic-success-body strong { color: var(--petal); }
.ic-success-sub { font-size: 0.74rem; color: var(--td-low); }


/* ══════════════════════════════════════════════════════════════════
   05 · WATCH
══════════════════════════════════════════════════════════════════ */
#watch {
  background: var(--linen);
  padding: var(--section-v) 0;
}

.watch-head { margin-bottom: 3.5rem; }

/* ── Wider section container ──────────────────────────────── */
.watch-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ── 2 × 2 grid ───────────────────────────────────────────── */
.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}

/* ── Card shell ───────────────────────────────────────────── */
.watch-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(26,16,24,0.2);
  transition: box-shadow 0.3s var(--ease-out);
}
.watch-item:hover {
  box-shadow: 0 16px 52px rgba(26,16,24,0.32);
}

/* ── Responsive 16:9 iframe wrapper ──────────────────────── */
.wi-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;   /* 16:9 — never crops the player */
  background: #000;
  overflow: hidden;
}
.wi-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Label strip below the player ────────────────────────── */
.wi-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.2rem 1.1rem;
  background: var(--ink-2);
}
.wi-type {
  font-family: var(--f-body);
  font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--petal); opacity: 0.75;
}
.wi-title {
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300; letter-spacing: 0.06em;
  color: var(--cream); line-height: 1.1;
}
.wi-artist {
  font-family: var(--f-body);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(253,248,243,0.42);
}

/* ── "Watch the SAFE Short" subtle text link in SAFE section */
.safe-short-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--f-body);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--tl-low);
  transition: color var(--t-fast);
}
.safe-short-link:hover { color: var(--rose); }
.safe-short-link i { font-size: 0.9rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .watch-wrap { padding: 0 1.5rem; }
}
@media (max-width: 680px) {
  .watch-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}



/* ══════════════════════════════════════════════════════════════════
   06 · FAN MAP
══════════════════════════════════════════════════════════════════ */
#fan-map {
  background: var(--linen-2);
  padding: var(--section-v) 0;
}

.fan-map-sub {
  font-size: 0.88rem; font-weight: 300; line-height: 1.8;
  color: var(--tl-mid); max-width: 540px;
  margin-top: 1.2rem; margin-bottom: 3rem;
}

.map-frame { display: flex; flex-direction: column; gap: 1.2rem; }
.map-wrap {
  position: relative;
  border-radius: var(--r-sm); overflow: hidden;
  background: rgba(26,16,24,0.06);
  border: 1px solid rgba(26,16,24,0.08);
}
#fanMapCanvas { width: 100%; height: auto; display: block; }

.map-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.map-legend-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 300; color: var(--tl-mid);
}
.map-legend-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose);
  animation: mapPulse 2.2s ease-in-out infinite;
}
@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(160,64,96,0.45); }
  50%       { box-shadow: 0 0 0 5px rgba(160,64,96,0); }
}

.map-count { display: flex; align-items: baseline; gap: 0.5rem; }
.map-count-num {
  font-family: var(--f-display); font-size: 1.9rem; font-weight: 300; color: var(--rose);
}
.map-count-label {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--tl-low);
}

.map-cities {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
}

.fan-map-cta { margin-top: 2.5rem; }


/* ══════════════════════════════════════════════════════════════════
   07 · EDITORIAL WORLD
══════════════════════════════════════════════════════════════════ */
#world {
  background: var(--linen);
  padding: var(--section-v) 0;
}

/* Photo strip — editorial collage with rotation offsets */
.editorial-strip {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 1.4rem;
  margin-bottom: 5rem;
  align-items: center;
}
.editorial-photo {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 0.8rem 0.8rem 2.8rem;
  box-shadow: 0 6px 28px rgba(26,16,24,0.1);
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow);
}
.editorial-photo--a { transform: rotate(-2deg); }
.editorial-photo--b { transform: rotate(0.5deg); }
.editorial-photo--c { transform: rotate(2.5deg); }
.editorial-photo:hover {
  transform: rotate(0deg) scale(1.02) !important;
  box-shadow: 0 12px 44px rgba(26,16,24,0.16);
  z-index: 2;
}
.editorial-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: saturate(0.72) brightness(0.95);
  transition: filter var(--t-slow);
}
.editorial-photo--b img { aspect-ratio: 1/1; }
.editorial-photo:hover img { filter: saturate(0.9) brightness(0.98); }
.editorial-photo figcaption {
  font-family: var(--f-script);
  font-size: 0.88rem;
  color: var(--dust);
  text-align: center;
  margin-top: 0.6rem;
  letter-spacing: 0.02em;
}

/* Pull quote — Alessia Cara oversized scale */
.pull-quote {
  max-width: 660px; margin: 0 auto 5rem;
  text-align: center;
}
.pull-quote p {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: italic; font-weight: 300;
  color: var(--tl-mid); line-height: 1.55;
}

/* Editorial notes — confident, quiet */
.world-notes {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
}
.world-note {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(26,16,24,0.1);
  transition: border-color var(--t-med);
}
.world-note:hover { border-color: var(--rose); }
.world-note-n {
  display: block;
  font-family: var(--f-display); font-size: 0.68rem;
  letter-spacing: 0.2em; color: var(--rose); opacity: 0.55;
  margin-bottom: 0.8rem;
}
.world-note h3 {
  font-family: var(--f-display); font-size: 1.15rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.65rem; line-height: 1.25;
}
.world-note p {
  font-size: 0.8rem; font-weight: 300; line-height: 1.75;
  color: var(--tl-mid);
}
.world-note p em { color: var(--rose); }


/* ══════════════════════════════════════════════════════════════════
   08 · PRESS / EPK
══════════════════════════════════════════════════════════════════ */
#press { background: var(--linen-2); }

.press-band {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h);
}
.press-rule {
  height: 1px; background: rgba(26,16,24,0.1);
}
.press-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; padding: 2.5rem 0; flex-wrap: wrap;
}
.press-text { flex: 1; min-width: 220px; }
.press-copy {
  font-size: 0.82rem; font-weight: 300; line-height: 1.7;
  color: var(--tl-low); margin-top: 0.6rem; max-width: 460px;
}
.press-epk {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(26,16,24,0.2);
  border-radius: var(--r-xs);
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tl-mid);
  transition: all var(--t-fast) var(--ease-soft);
  flex-shrink: 0;
}
.press-epk:hover {
  border-color: var(--rose); color: var(--rose);
  transform: translateY(-1px);
}
.press-epk i { font-size: 0.9rem; }


/* ══════════════════════════════════════════════════════════════════
   09 · FINAL CTA
   Dark — photo background, cream type
══════════════════════════════════════════════════════════════════ */
#final-cta {
  position: relative; overflow: hidden;
  padding: var(--section-v) 0 calc(var(--section-v) + 2rem);
  text-align: center; background: var(--ink);
}

.final-photo {
  position: absolute; inset: 0; z-index: 0;
}
.final-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  filter: brightness(0.3) saturate(0.5);
}
.final-photo-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(26,16,24,0.65) 0%,
      rgba(26,16,24,0.28) 40%,
      rgba(26,16,24,0.78) 100%
    );
}

.final-body {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h);
  display: flex; flex-direction: column; align-items: center;
}

.final-name {
  font-family: var(--f-script);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--petal); opacity: 0.82; line-height: 1;
  margin-top: 1.5rem; margin-bottom: 0;
}
.final-title {
  font-family: var(--f-display);
  font-size: clamp(6rem, 22vw, 18rem);
  font-weight: 200; line-height: 0.82; letter-spacing: 0.12em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232,175,192,0.38);
  user-select: none; margin-bottom: 1.5rem;
}

.final-tagline {
  font-family: var(--f-display);
  font-size: clamp(0.92rem, 1.6vw, 1.08rem);
  font-style: italic; font-weight: 300;
  color: var(--td-mid); line-height: 1.8;
}

/* Mini countdown */
.mini-cd {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.65rem; margin: 2rem 0 1.8rem;
}
.mini-cd-label {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.44em;
  text-transform: uppercase; color: var(--blush); opacity: 0.6;
}
.mini-cd-row {
  display: flex; align-items: center; gap: 0.5rem;
}
.mcd-unit {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.18rem; min-width: 48px;
}
.mcd-n {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300; line-height: 1; color: var(--cream);
}
.mcd-l {
  font-size: 0.45rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blush); opacity: 0.52;
}
.mcd-sep {
  font-size: 0.8rem; color: rgba(232,175,192,0.2);
  margin-bottom: 1rem; user-select: none;
}

.final-cta {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}

.final-social {
  display: flex; align-items: center; gap: 1.6rem; margin-top: 3rem;
}
.final-social a {
  font-size: 1.1rem; color: rgba(253,248,243,0.28);
  transition: color var(--t-fast), transform var(--t-fast);
}
.final-social a:hover { color: var(--petal); transform: translateY(-2px); }


/* ══════════════════════════════════════════════════════════════════
   10 · FOOTER
══════════════════════════════════════════════════════════════════ */
#footer {
  background: var(--linen);
  border-top: 1px solid rgba(26,16,24,0.08);
  padding: 4rem 0 3rem;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h);
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem; text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t-fast);
}
.footer-logo:hover { opacity: 0.55; }
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* Footer is linen/light — dark logo */
  filter: brightness(0);
  opacity: 0.75;
}

/* ── Footer icon row — replaces spelled-out social links ─────────── */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;        /* 28px between icons */
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;   /* ~24px */
  color: var(--ink);   /* dark ink — visible on linen background */
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.25s, color 0.25s, transform 0.22s,
              text-shadow 0.25s;
}
.footer-social-link:hover,
.footer-social-link:focus-visible {
  opacity: 1;
  color: var(--rose);
  transform: translateY(-3px);
  text-shadow:
    0 0 8px  rgba(160, 64, 96, 0.35),
    0 0 22px rgba(160, 64, 96, 0.18);
  outline: none;
}
.footer-social-link:focus-visible {
  box-shadow: 0 0 0 2px rgba(160,64,96,0.3);
  border-radius: 4px;
}

.footer-row { display: flex; align-items: center; gap: 0.8rem; }
.footer-dot { color: var(--tl-low); font-size: 0.7rem; }

.footer-presave {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--rose);
  border-bottom: 1px solid rgba(160,64,96,0.3); padding-bottom: 1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer-presave:hover { color: var(--wine); border-color: var(--wine); }

.footer-epk {
  font-size: 0.62rem; letter-spacing: 0.1em; color: var(--tl-low);
  transition: color var(--t-fast);
}
.footer-epk:hover { color: var(--tl-mid); }

.footer-copy { font-size: 0.65rem; color: rgba(26,16,24,0.2); letter-spacing: 0.05em; }
.footer-credit { font-size: 0.6rem; color: rgba(26,16,24,0.14); }


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  :root { --section-v: clamp(4rem, 7vw, 6rem); }
  .safe-inner  { gap: 3.5rem; }
  .artist-text-col { padding: 5rem 3.5rem 5rem 2.5rem; }
  .ic-layout   { gap: 3.5rem; }
  .world-notes { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* Phablet ≤ 820px */
@media (max-width: 820px) {
  /* Nav */
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex; position: fixed; inset: 0;
    background: rgba(245,237,228,0.97); backdrop-filter: blur(16px);
    align-items: center; justify-content: center;
    gap: 2.4rem; z-index: 850;
  }
  .nav-links.open a { font-size: 1rem; letter-spacing: 0.22em; color: var(--ink); }
  .nav-presave  { display: none; }
  .nav-toggle   { display: flex; }
  #nav:not(.scrolled) .nav-toggle span { background: rgba(253,248,243,0.85); }
  #nav.scrolled  .nav-toggle span { background: var(--ink); opacity: 0.7; }

  /* Safe */
  .safe-inner { grid-template-columns: 1fr; gap: 3rem; }
  .safe-art-side { max-width: 340px; margin: 0 auto; }

  /* Artist */
  .artist-split { grid-template-columns: 1fr; }
  .artist-photo-col {
    position: relative; /* remove sticky on mobile */
    max-height: 52vw; overflow: hidden;
    min-height: unset;
  }
  .artist-photo-img { height: 100%; }
  .artist-photo-overlay {
    background: linear-gradient(to bottom, transparent 40%, rgba(226,210,194,0.92) 100%);
  }
  .artist-text-col { padding: 3.5rem var(--pad-h); }
  .artist-body { max-width: 100%; }

  /* Inner circle */
  .ic-layout { grid-template-columns: 1fr; gap: 3rem; }
  .ic-ghost-word { display: none; }

  /* Watch */
  .watch-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Editorial strip */
  .editorial-strip { grid-template-columns: 1fr 1fr; }
  .editorial-photo--c { display: none; }

  /* Press */
  .press-inner { flex-direction: column; gap: 1.5rem; }
  .press-epk   { width: 100%; justify-content: center; }
}

/* Mobile ≤ 580px */
@media (max-width: 580px) {
  :root {
    --section-v: clamp(3.5rem, 7vw, 5rem);
    --pad-h: 1.25rem;
  }

  .hero-safe { -webkit-text-stroke-width: 0.5px; }
  .cd-sep { display: none; }
  .countdown-row { gap: 0.3rem; }
  .cd-unit { min-width: 46px; }

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; }

  .safe-art-side { max-width: 90%; }
  .safe-tape { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .editorial-strip { grid-template-columns: 1fr; }
  .editorial-photo--a,
  .editorial-photo--c { display: none; }
  .editorial-photo { transform: none !important; max-width: 320px; margin: 0 auto; }

  .world-notes { grid-template-columns: 1fr; }

  .final-cta { flex-direction: column; align-items: center; }
  .final-cta .btn { width: 100%; max-width: 300px; }
  .mcd-sep { display: none; }

  .footer-nav { gap: 0.3rem 1.2rem; }

  /* ── Inner Circle form \u2014 full mobile fix \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
  .ic-form-side {
    padding: 1.8rem 1.2rem;
    overflow: hidden;     /* prevent any child overflowing the card */
  }

  /* Every input/select fills the container — no clipping */
  .ic-form .form-group input,
  .ic-form .form-group select,
  .ic-form .phone-wrap {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  /* Country & state selects: truncate long text gracefully */
  .ic-form .form-group select {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 2.4rem;  /* room for the dropdown chevron */
  }

  /* Phone wrap full-width; prefix badge smaller on mobile */
  .phone-wrap {
    width: 100%;
    box-sizing: border-box;
  }
  .phone-prefix-wrap {
    padding: 0 0.55rem;
    gap: 0.2rem;
  }
  .phone-flag  { font-size: 0.85rem; }
  .phone-code  { font-size: 0.72rem; }

  /* Map checkbox fits snugly */
  .ic-map-checkbox-wrap { padding: 0.65rem 0.75rem; }
  .ic-map-checkbox-text { font-size: 0.68rem; }
  .ic-map-checkbox-helper { font-size: 0.58rem; margin-left: calc(15px + 0.6rem); }
  .ic-map-checkbox-sub  { font-size: 0.6rem; }
}

/* Small mobile ≤ 380px */
@media (max-width: 380px) {
  .hero-logo-img { height: 2.4rem; }
  .hero-safe { font-size: 6.5rem; }
  .cd-unit   { min-width: 40px; }
  .cd-n      { font-size: 1.7rem; }

  /* Tighten form even further on very small screens */
  .ic-form-side { padding: 1.4rem 0.9rem; }
  .ic-form-lead { font-size: 1.3rem; }
  .ic-form .form-group input,
  .ic-form .form-group select { font-size: 0.82rem; padding: 0.7rem 0.8rem; }
  .ic-form .form-group select { padding-right: 2rem; }
  .btn-ic-submit { font-size: 0.68rem; padding: 0.8rem 1.2rem; }
}


/* ══════════════════════════════════════════════════════════════════
   V3.1 ADDITIONS — hero soft float, SAFE parallax drift,
   polaroid float, map opt-in, IC success refinements
══════════════════════════════════════════════════════════════════ */

/* ── HERO: remove scale-on-hover and replace with persistent soft float */
/* Override the previous hover-based zoom on the photo */
#hero:hover .hero-photo-img { transform: none; }

/* Gentle slow float for the hero photo — feels like breathing */
@keyframes heroFloat {
  0%   { transform: scale(1.04) translateY(0px); }
  50%  { transform: scale(1.04) translateY(-8px); }
  100% { transform: scale(1.04) translateY(0px); }
}
.hero-photo-img {
  /* Always slightly zoomed so float doesn't reveal edges */
  transform: scale(1.04);
  animation: heroFloat 12s var(--ease-soft) infinite;
  /* Override the previous transition that was set for hover */
  transition: none;
}

/* ── HERO SAFE WORDMARK: subtle vertical drift */
/* Applied via JS class .js-safe-drift on scroll (parallax) */
/* Keyframe for gentle autonomous drift when no scroll interaction */
@keyframes safeDrift {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}
.hero-safe {
  will-change: transform;
  /* Base drift animation — overridden smoothly by scroll parallax via JS */
  animation: safeDrift 9s var(--ease-soft) infinite;
}
/* When scroll parallax is actively controlling it, JS adds .is-parallax
   and we stop the keyframe so transforms don't fight */
.hero-safe.is-parallax {
  animation: none;
}

/* ── SAFE SECTION: polaroid artwork soft float */
@keyframes polaroidFloat {
  0%   { transform: rotate(-1.5deg) translateY(0px); }
  50%  { transform: rotate(-1.5deg) translateY(-9px); }
  100% { transform: rotate(-1.5deg) translateY(0px); }
}
.js-safe-float {
  animation: polaroidFloat 10s var(--ease-soft) infinite;
}
/* Merge hover state so it straightens while floating */
.safe-art-side:hover .js-safe-float {
  animation-play-state: paused;
  transform: rotate(0deg) scale(1.02) !important;
  box-shadow: 0 16px 56px rgba(26,16,24,0.16), 0 4px 16px rgba(26,16,24,0.1);
}

/* ── MAP SECTION: refined teaser label */
#fan-map .section-title em { color: var(--rose); }

/* ── IC SUCCESS: map opt-in panel */
.ic-map-optin {
  margin-top: 2rem;
  padding: 1.8rem;
  border: 1px solid rgba(232,175,192,0.16);
  border-radius: var(--r-md);
  background: rgba(160,64,96,0.05);
  text-align: center;
  max-width: 360px;
  width: 100%;
}
.ic-map-optin-label {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--td-hi);
  margin-bottom: 0.5rem;
}
.ic-map-optin-sub {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--td-low);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.ic-map-optin-choices {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ic-map-choice {
  padding: 0.68rem 1.4rem;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(232,175,192,0.22);
  background: rgba(253,248,243,0.07);
  color: var(--td-hi);
  transition: all var(--t-fast) var(--ease-soft);
}
.ic-map-choice:hover {
  background: rgba(160,64,96,0.14);
  border-color: rgba(160,64,96,0.35);
  color: var(--petal);
}
.ic-map-choice--skip {
  background: transparent;
  border-color: transparent;
  color: var(--td-low);
  font-size: 0.62rem;
}
.ic-map-choice--skip:hover {
  color: var(--td-mid);
  background: transparent;
  border-color: transparent;
}

/* IC success CTA — hidden until step-2 resolved */
.ic-success-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ic-map-confirmed {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--blush);
  opacity: 0.8;
}

/* Subtle save-confirmation line shown after successful DB write */
.ic-save-confirm {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(120,200,140,0.75);
  opacity: 0.7;
  margin-top: 0.4rem;
}

/* ── "Add another listener" reset button ── */
.ic-another-wrap {
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(232,175,192,0.1);
  width: 100%;
  display: flex;
  justify-content: center;
}

.ic-another-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(232,175,192,0.22);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petal);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.ic-another-btn:hover,
.ic-another-btn:focus-visible {
  opacity: 1;
  border-color: rgba(232,175,192,0.55);
  color: var(--blush);
  outline: none;
}

.ic-another-btn .fa-plus {
  font-size: 0.6rem;
  opacity: 0.75;
}

/* ── Step-2: optional phone / text alerts ───────────────────────── */
.ic-step2 {
  width: 100%;
  margin-top: 2rem;
  padding: 1.6rem 1.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,175,192,0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.ic-step2-heading {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--blush);
  margin: 0;
}

.ic-step2-sub {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--tl-mid);
  opacity: 0.75;
  text-align: center;
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.ic-step2-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

/* Step-2 phone wrap inherits the same phone-wrap styles */
#phoneWrap2.phone-wrap {
  width: 100%;
  box-sizing: border-box;
}

.btn-ic-step2-submit {
  font-size: 0.72rem;
  padding: 0.75rem 1.4rem;
}

.ic-step2-skip {
  background: transparent;
  border: none;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--tl-mid);
  opacity: 0.5;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
  margin-top: 0.25rem;
}
.ic-step2-skip:hover { opacity: 0.9; }

/* ── Optional location group heading ────────────────────────────── */
.ic-optional-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petal);
  opacity: 0.55;
  margin: 0.5rem 0 1rem;
}
.ic-optional-heading-line {
  flex: 1;
  height: 1px;
  background: rgba(232,175,192,0.15);
}
.ic-optional-heading-text {
  white-space: nowrap;
}
.ic-optional-tag {
  font-style: italic;
  font-weight: 300;
  opacity: 0.75;
}

/* ══════════════════════════════════════════════════════════════
   PRE-SAVE POPUP
══════════════════════════════════════════════════════════════ */
.ps-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;            /* set by JS when triggered */
  align-items: center;
  justify-content: center;
  background: rgba(8, 4, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
  padding: var(--pad-h);
}
.ps-overlay.ps-visible { opacity: 1; }

.ps-modal {
  position: relative;
  background: linear-gradient(160deg, #1a1020 0%, #120c18 100%);
  border: 1px solid rgba(232,175,192,0.18);
  border-radius: 18px;
  padding: 3rem 2.8rem 2.4rem;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(232,175,192,0.06);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
  opacity: 0;
}
.ps-overlay.ps-visible .ps-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ps-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: transparent;
  border: none;
  color: var(--tl-mid);
  font-size: 0.9rem;
  opacity: 0.45;
  cursor: pointer;
  padding: 0.3rem;
  line-height: 1;
  transition: opacity 0.2s;
}
.ps-close:hover { opacity: 1; }

.ps-art-line {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--rose);
  opacity: 0.5;
  margin-bottom: 1.2rem;
  display: block;
  letter-spacing: 0.3em;
}

.ps-headline {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink-light, #f0e8ec);
  margin: 0 0 0.85rem;
  letter-spacing: 0.01em;
}
.ps-headline em {
  font-style: italic;
  color: var(--petal);
}

.ps-body {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--tl-mid);
  opacity: 0.8;
  margin: 0 0 1.8rem;
  max-width: 300px;
}

.ps-btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  padding: 1rem 1.5rem;
  background: var(--cream, #f5ede4);
  color: var(--wine, #4a1428);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 1.1rem;
}
.ps-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.ps-link-secondary {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--petal);
  opacity: 0.55;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: opacity 0.2s;
  background: transparent;
  border: none;
}
.ps-link-secondary:hover { opacity: 0.9; }

@media (max-width: 480px) {
  .ps-modal { padding: 2.5rem 1.6rem 2rem; border-radius: 14px; }
  .ps-headline { font-size: 1.5rem; }
}

/* ── REDUCED MOTION: disable all custom animations */
@media (prefers-reduced-motion: reduce) {
  .hero-photo-img {
    animation: none;
    transform: scale(1.0);
  }
  .hero-safe {
    animation: none;
  }
  .js-safe-float {
    animation: none;
  }
  .scroll-mark-line {
    animation: none;
    opacity: 0.3;
  }
  .map-legend-dot {
    animation: none;
  }
}


/* ══════════════════════════════════════════════════════════════════
   V3.2 ADDITIONS — parchment texture, mobile nav, video cards,
   audio player, gamification milestones, press layout, map polish
══════════════════════════════════════════════════════════════════ */

/* ── PAPER / PARCHMENT TEXTURE
   SVG turbulence noise tiled at a warm linen-paper scale
   Applied as ::before pseudo on light sections, ::after on dark
──────────────────────────────────────────────────────────────── */
/* Shared texture mixin — data-URL SVG feTurbulence at 0.65/0.55 */
:root {
  --texture-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23p)' opacity='1'/%3E%3C/svg%3E");
}

/* Light sections — warm linen paper feel */
.has-paper-texture {
  position: relative;
}
.has-paper-texture::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background-image: var(--texture-url);
  background-size: 320px 320px;
  opacity: 0.032;
  mix-blend-mode: multiply;
}
.has-paper-texture > * { position: relative; z-index: 1; }

/* Dark sections — cream-on-ink fabric texture */
.has-paper-texture-dark {
  position: relative;
}
.has-paper-texture-dark::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background-image: var(--texture-url);
  background-size: 320px 320px;
  opacity: 0.028;
  mix-blend-mode: screen;
}
.has-paper-texture-dark > * { position: relative; z-index: 1; }

/* Hero texture overlay — warm paper scrim over the photo */
.hero-texture {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background-image: var(--texture-url);
  background-size: 300px 300px;
  opacity: 0.038;
  mix-blend-mode: overlay;
}


/* ══════════════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY — full-screen, editorial, touch-optimised
══════════════════════════════════════════════════════════════════ */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 990;
  background: rgba(245, 237, 228, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;

  /* Hidden by default — JS toggles .is-open */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.38s var(--ease-out),
    transform 0.38s var(--ease-out),
    visibility 0s 0.38s;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    opacity 0.38s var(--ease-out),
    transform 0.38s var(--ease-out),
    visibility 0s 0s;
}

/* Close button — top-right */
.mobile-nav-close {
  position: absolute; top: 1.6rem; right: var(--pad-h);
  font-size: 1.3rem; color: var(--ink); opacity: 0.55;
  padding: 0.5rem;
  background: none; border: none; cursor: pointer;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.mobile-nav-close:hover { opacity: 1; transform: rotate(90deg); }

/* Logo inside mobile overlay */
.mobile-nav-logo {
  display: flex;
  align-items: center;
  margin-bottom: 2.8rem;
  opacity: 0.88;
  transition: opacity var(--t-fast);
}
.mobile-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* Mobile overlay is linen/light — show dark logo */
  filter: brightness(0);
}

/* Nav list */
.mobile-nav-list {
  list-style: none;
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
  width: 100%;
}
.mobile-nav-link {
  display: block;
  font-family: var(--f-body);
  font-size: clamp(1.3rem, 6vw, 1.7rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  padding: 0.85rem 2.5rem;
  width: 100%;
  transition: color var(--t-fast), opacity var(--t-fast);
  opacity: 0.75;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus { color: var(--rose); opacity: 1; outline: none; }

/* Pre-Save link in overlay */
.mobile-nav-presave {
  margin-top: 2.4rem;
  font-family: var(--f-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--wine);
  border-bottom: 1px solid rgba(74,21,40,0.3); padding-bottom: 2px;
  transition: color var(--t-fast);
}
.mobile-nav-presave:hover { color: var(--rose); border-color: var(--blush); }

/* Date line */
.mobile-nav-date {
  font-family: var(--f-body);
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--tl-low); margin-top: 0.9rem;
}

/* On desktop: hide overlay completely */
@media (min-width: 821px) {
  .mobile-nav-overlay { display: none !important; }
}


/* ══════════════════════════════════════════════════════════════════
   HERO — additional atmosphere refinements
══════════════════════════════════════════════════════════════════ */
/* Deeper, more cinematic scrim */
.hero-photo-scrim {
  background:
    linear-gradient(to bottom,
      rgba(26,16,24,0.55)  0%,
      rgba(26,16,24,0.06)  32%,
      rgba(26,16,24,0.08)  55%,
      rgba(26,16,24,0.92) 100%
    );
}


/* ══════════════════════════════════════════════════════════════════
   WATCH SECTION — legacy selectors removed; see .watch-item / .wc-*
   above (defined alongside the Watch section layout).
══════════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════════════
   AUDIO PLAYER — branded SAFE teaser player
══════════════════════════════════════════════════════════════════ */
.safe-player {
  margin: 1.4rem 0 1.8rem;
  background: rgba(26,16,24,0.055);
  border: 1px solid rgba(160,64,96,0.14);
  border-radius: var(--r-md);
  overflow: hidden;
}
.player-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
}
.player-play-btn {
  grid-row: 1 / 3; grid-column: 1;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 0.75rem;
  padding-left: 2px; /* optical centre */
  transition: background var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}
.player-play-btn:hover { background: var(--rose); transform: scale(1.06); }

.player-info {
  grid-row: 1; grid-column: 2;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.player-title {
  font-family: var(--f-display);
  font-size: 0.88rem; font-weight: 400;
  color: var(--tl-hi); letter-spacing: 0.04em;
}
.player-artist {
  font-family: var(--f-body);
  font-size: 0.62rem; font-weight: 400;
  color: var(--tl-low); letter-spacing: 0.08em;
}

.player-bar-wrap {
  grid-row: 1; grid-column: 3;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.player-bar {
  height: 2px; background: rgba(26,16,24,0.12);
  border-radius: 2px; overflow: hidden;
  cursor: pointer;
}
.player-progress {
  height: 100%; width: 0%;
  background: linear-gradient(to right, var(--blush), var(--rose));
  border-radius: 2px;
  transition: width 0.25s linear;
}
.player-times {
  display: flex; justify-content: space-between;
}
.player-current,
.player-duration {
  font-family: var(--f-body);
  font-size: 0.56rem; color: var(--tl-low); letter-spacing: 0.06em;
}

.player-status {
  grid-row: 2; grid-column: 2 / 4;
  font-family: var(--f-body);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose); opacity: 0.6;
  margin-top: 0.2rem;
}
/* has-audio: show bar, keep status visible as a subtle label */
.player-bar-wrap { display: none; }
.safe-player.has-audio .player-bar-wrap { display: flex; }
/* Status stays visible as a quiet label (e.g. "30-second preview") */
.safe-player.has-audio .player-status {
  display: block;
  font-size: 0.56rem;
  opacity: 0.45;
  margin-top: 0.15rem;
}
/* Hide it once playback starts */
.safe-player.is-playing .player-status { display: none; }


/* ══════════════════════════════════════════════════════════════════
   IC GAMIFICATION — milestone strip + founding badge
══════════════════════════════════════════════════════════════════ */

/* Milestone track */
.ic-milestones {
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253,248,243,0.08);
}
.ic-milestones-label {
  font-family: var(--f-body);
  font-size: 0.56rem; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--blush); opacity: 0.55;
  margin-bottom: 1.2rem;
}
.milestone-track {
  display: flex;
  align-items: center;
  gap: 0;
}
.milestone-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.ms-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(232,175,192,0.2);
  background: rgba(253,248,243,0.04);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: rgba(232,175,192,0.28);
  transition: all 0.5s var(--ease-out);
}
.milestone-step.is-done .ms-icon {
  background: rgba(160,64,96,0.22);
  border-color: rgba(160,64,96,0.5);
  color: var(--petal);
  box-shadow: 0 0 0 4px rgba(160,64,96,0.08);
}
.milestone-step.is-active .ms-icon {
  border-color: rgba(232,175,192,0.55);
  color: var(--blush);
  animation: msPulse 2.4s ease-in-out infinite;
}
@keyframes msPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(160,64,96,0.35); }
  50%       { box-shadow: 0 0 0 6px rgba(160,64,96,0); }
}
.ms-label {
  font-family: var(--f-body);
  font-size: 0.52rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--td-low);
  text-align: center; max-width: 62px; line-height: 1.3;
  transition: color 0.4s;
}
.milestone-step.is-done .ms-label { color: var(--blush); }
.milestone-step.is-active .ms-label { color: var(--td-mid); }

.milestone-connector {
  flex: 1;
  height: 1px;
  background: rgba(232,175,192,0.14);
  margin-bottom: 1.6rem; /* align with icon centre */
  transition: background 0.5s;
}
.milestone-connector.is-done { background: rgba(160,64,96,0.35); }

.ic-milestones-sub {
  font-family: var(--f-display);
  font-size: 0.82rem; font-style: italic; font-weight: 300;
  color: var(--td-low); margin-top: 1rem;
  transition: color 0.4s;
}

/* Founding Listener badge */
.founding-badge {
  margin: 1.6rem 0 1.2rem;
  width: 100%;
  max-width: 320px;
}
.founding-badge-inner {
  border: 1px solid rgba(232,175,192,0.22);
  border-radius: var(--r-md);
  padding: 1.2rem 1.6rem;
  background: rgba(160,64,96,0.07);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem;
  animation: badgeReveal 0.8s var(--ease-out) both;
}
@keyframes badgeReveal {
  from { opacity: 0; transform: scale(0.9) translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.founding-badge-icon {
  font-size: 1.3rem; color: var(--blush);
  margin-bottom: 0.2rem;
}
.founding-badge-title {
  font-family: var(--f-display);
  font-size: 1rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--td-hi);
}
.founding-badge-sub {
  font-family: var(--f-body);
  font-size: 0.66rem; font-weight: 300;
  color: var(--td-low); letter-spacing: 0.06em;
}


/* ══════════════════════════════════════════════════════════════════
   PRESS SECTION — two-button layout
══════════════════════════════════════════════════════════════════ */
.press-assets {
  display: flex; gap: 0.8rem; flex-wrap: wrap; flex-shrink: 0;
}
.press-epk--secondary {
  border-color: rgba(26,16,24,0.12);
  color: var(--tl-low);
  opacity: 0.75;
}
.press-epk--secondary:hover {
  border-color: var(--dust);
  color: var(--dust);
  opacity: 1;
}


/* ══════════════════════════════════════════════════════════════════
   MAP SECTION — refined wording + city chip polish
══════════════════════════════════════════════════════════════════ */
.map-count-label {
  font-size: 0.66rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--tl-low);
}
/* Pin layer needs relative positioning for absolute children */
.map-pin-layer {
  position: absolute; inset: 0;
}
.map-wrap { position: relative; }


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  /* Mobile nav: hide desktop nav toggle text */
  .nav-presave { display: none; }
  .nav-toggle  { display: flex; }

  /* Press assets stack */
  .press-assets { flex-direction: column; width: 100%; }
  .press-assets .press-epk { justify-content: center; width: 100%; }

  /* Player grid simplification */
  .player-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
  }
  .player-bar-wrap { grid-column: 1 / 3; grid-row: 3; }
  .player-status   { grid-column: 1 / 3; grid-row: 3; }
  .player-info     { grid-column: 2; grid-row: 1; }

  /* Milestone track — smaller on mobile */
  .ms-label { font-size: 0.46rem; max-width: 52px; }
  .ms-icon  { width: 30px; height: 30px; font-size: 0.6rem; }

  /* Founding badge full width */
  .founding-badge { max-width: 100%; }
}

@media (max-width: 580px) {
  /* Watch grid — stack on mobile */
  .watch-grid { grid-template-columns: 1fr; }

  /* Player inner tighter */
  .player-inner { padding: 0.85rem 1rem; gap: 0 0.75rem; }

  /* Milestone — shrink on small screens */
  .ms-label { display: none; }
  .milestone-connector { margin-bottom: 0; }
  .ms-icon { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-img  { animation: none; transform: scale(1); }
  .hero-safe       { animation: none; }
  .js-safe-float   { animation: none; }
  .scroll-mark-line { animation: none; opacity: 0.3; }
  .map-legend-dot  { animation: none; }
  .milestone-step.is-active .ms-icon { animation: none; }
  .founding-badge-inner { animation: none; }
}


/* ══════════════════════════════════════════════════════════════════
   V3.3 — Inner Circle & Map immersive redesign
   Refined IC copy, glowing map markers, fan cards, section rename
══════════════════════════════════════════════════════════════════ */

/* ── IC form lead — more intimate, less transactional */
.ic-form-lead {
  font-family: var(--f-display);
  font-size: 1.55rem; font-weight: 300; font-style: italic;
  color: var(--td-hi);
  margin-bottom: 1.8rem;
  opacity: 0.88;
}

/* ── IC copy — slightly looser, more breath */
.ic-copy {
  max-width: 440px;
  line-height: 1.95;
}

/* ── IC perks — warmer dash treatment */
.ic-perks li span {
  color: var(--blush);
  opacity: 0.6;
  font-family: var(--f-display);
  font-size: 1.05rem;
  line-height: 1;
}

/* ── MAP SECTION: renamed "Where SAFE Lives" — soft immersive treatment */
#fan-map {
  background: var(--ink-2);
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}

/* Ghost SAFE behind map section */
#fan-map::before {
  content: 'SAFE';
  position: absolute;
  bottom: -2rem; right: -1rem;
  font-family: var(--f-display);
  font-size: clamp(10rem, 30vw, 22rem);
  font-weight: 200; letter-spacing: 0.14em;
  color: rgba(160,64,96,0.03);
  pointer-events: none; user-select: none;
  line-height: 1;
}

/* Section label on dark bg */
#fan-map .label-tag {
  color: var(--blush);
  opacity: 0.55;
}

/* Section title on dark bg */
#fan-map .section-title {
  color: var(--td-hi);
}
#fan-map .section-title em { color: var(--blush); }

/* Sub-copy on dark */
.fan-map-sub {
  color: var(--td-mid);
  max-width: 520px;
}

/* Map frame on dark */
.map-frame {
  background: transparent;
}

/* Immersive map wrap — dark tinted canvas surround */
.ic-map-immersive {
  background: rgba(26,16,24,0.55) !important;
  border: 1px solid rgba(232,175,192,0.1) !important;
  border-radius: var(--r-md) !important;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 60px rgba(160,64,96,0.06),
    inset 0 0 80px rgba(26,16,24,0.4);
}

/* Legend on dark */
.map-legend-item span:last-child {
  color: var(--td-low);
}

/* Count on dark */
.map-count-label {
  color: var(--td-low);
}

/* City chips on dark */
.map-cities .city-chip {
  background: rgba(160,64,96,0.1);
  border: 1px solid rgba(232,175,192,0.15);
  color: rgba(232,175,192,0.6);
}

/* CTA btn on dark */
#fan-map .btn-outline-ink {
  color: var(--td-hi);
  border-color: rgba(232,175,192,0.22);
}
#fan-map .btn-outline-ink:hover {
  border-color: rgba(232,175,192,0.5);
  color: var(--petal);
  background: rgba(160,64,96,0.08);
}


/* ── GLOWING MAP MARKERS — more presence, gentle pulse */
@keyframes markerGlow {
  0%   { box-shadow: 0 0 0 0 rgba(160,64,96,0.5), 0 0 6px rgba(160,64,96,0.3); }
  60%  { box-shadow: 0 0 0 8px rgba(160,64,96,0), 0 0 10px rgba(160,64,96,0.1); }
  100% { box-shadow: 0 0 0 0 rgba(160,64,96,0),   0 0 6px rgba(160,64,96,0.3); }
}

/* ── RECENT LISTENER CARDS — soft float over map edges */
.map-recent-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-fan-card {
  position: absolute;
  background: rgba(26,16,24,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232,175,192,0.18);
  border-radius: var(--r-md);
  padding: 0.55rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 170px;
  animation: cardIn 0.6s var(--ease-out) both, cardFade 4s 4s var(--ease-soft) forwards;
  pointer-events: none;
  z-index: 4;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}

@keyframes cardFade {
  from { opacity: 1; }
  to   { opacity: 0; pointer-events: none; }
}

.map-fan-card-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  animation: markerGlow 2.2s ease-in-out infinite;
}

.map-fan-card-name {
  font-family: var(--f-display);
  font-size: 0.72rem; font-weight: 400; font-style: italic;
  color: var(--td-hi);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-fan-card-city {
  font-family: var(--f-body);
  font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--td-low);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── MAP OPT-IN: replace "Skip for now" / "Show as Anonymous Fan" copy is in HTML */
/* Slightly warmer treatment for the optin label */
.ic-map-optin-label {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--td-hi);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

/* ── IC MILESTONES: renamed labels are in HTML */
/* Refine the "Where you are" label */
.ic-milestones-label {
  font-size: 0.54rem;
  letter-spacing: 0.36em;
  color: var(--blush);
  opacity: 0.5;
}

/* ── IC MILESTONES SUB: initial state — more poetic */
.ic-milestones-sub {
  font-style: italic;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

/* ── FOUNDING BADGE: sub text refined */
.founding-badge-sub {
  letter-spacing: 0.04em;
}

/* ── CONSENT TEXT: keep invisible but readable */
.form-consent {
  line-height: 1.6;
  max-width: 340px;
}

/* ── RESPONSIVE: map section on mobile */
@media (max-width: 820px) {
  #fan-map::before { display: none; }
  .map-recent-cards { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .map-fan-card { animation: none; opacity: 1; }
  .map-fan-card-dot { animation: none; }
  @keyframes cardFade { from { opacity: 1; } to { opacity: 1; } }
}


/* ══════════════════════════════════════════════════════════════════
   WHERE SAFE LIVES — V4 Full World Map Rebuild
   Dark, cinematic, glowing, interactive, worldwide
══════════════════════════════════════════════════════════════════ */

/* ── Section shell */
#fan-map {
  background: var(--ink);
  padding: var(--section-v) 0 0;
  position: relative;
  overflow: hidden;
}
#fan-map::after {
  content: '';
  position: absolute;
  inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(160,64,96,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(74,21,40,0.06) 0%, transparent 60%);
}
#fan-map > * { position: relative; z-index: 1; }

/* ── Header */
.wsl-header { text-align: center; margin-bottom: 3.5rem; }
.wsl-header.section-wrap { padding-bottom: 0; }

.wsl-label {
  display: block;
  color: var(--blush);
  opacity: 0.5;
  margin-bottom: 1.1rem;
}

.wsl-title {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--td-hi);
  margin-bottom: 1.4rem;
}
.wsl-title em { color: var(--blush); font-style: italic; }

.wsl-sub {
  font-family: var(--f-display);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 300;
  font-style: italic;
  color: var(--td-mid);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.wsl-br { display: block; }

/* ── Tally strip */
.wsl-tally {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  padding: 2rem var(--pad-h);
  border-top: 1px solid rgba(232,175,192,0.09);
  border-bottom: 1px solid rgba(232,175,192,0.09);
}

.wsl-tally-item {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  padding: 0.5rem 1.5rem;
}

.wsl-tally-num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 200;
  line-height: 1;
  color: var(--td-hi);
  letter-spacing: -0.01em;
  display: block;
}

.wsl-tally-label {
  font-family: var(--f-body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.5;
  line-height: 1.55;
  display: block;
}

.wsl-tally-divider {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(232,175,192,0.18), transparent);
  flex-shrink: 0;
}

/* ── Map outer wrapper — no side padding, full bleed-feel */
.wsl-map-outer {
  width: 100%;
  margin-bottom: 0;
}

.wsl-map-wrap {
  position: relative;
  width: 100%;
  /* 2:1 aspect ratio — world map proportions */
  aspect-ratio: 2 / 1;
  background:
    radial-gradient(ellipse 70% 50% at 50% 55%, rgba(26,16,24,0.0) 0%, rgba(10,6,12,0.55) 100%),
    var(--ink);
  overflow: hidden;
}

/* Subtle vignette edge on map */
.wsl-map-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(to right,  rgba(10,6,12,0.45) 0%, transparent 12%, transparent 88%, rgba(10,6,12,0.45) 100%),
    linear-gradient(to bottom, rgba(10,6,12,0.5)  0%, transparent 15%, transparent 82%, rgba(10,6,12,0.55) 100%);
}

/* Both SVGs overlay each other exactly */
.wsl-map-svg,
.wsl-points-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wsl-map-svg  { z-index: 1; }
.wsl-points-svg { z-index: 3; overflow: visible; }

/* World outline path — drawn by JS */
.wsl-land {
  fill: rgba(160,64,96,0.08);
  stroke: rgba(220,140,162,0.30);
  stroke-width: 0.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}

/* Graticule grid lines */
.wsl-grid {
  fill: none;
  stroke: rgba(232,175,192,0.06);
  stroke-width: 0.3;
}
.wsl-equator {
  stroke: rgba(232,175,192,0.13);
  stroke-width: 0.5;
  stroke-dasharray: 4 6;
}
.wsl-prime {
  stroke: rgba(232,175,192,0.08);
  stroke-width: 0.4;
}

/* ── Glow point structure
   Each fan = <g class="wsl-pt"> containing:
     <circle class="wsl-pt-bloom"> — outer soft bloom
     <circle class="wsl-pt-ring">  — mid ring
     <circle class="wsl-pt-core">  — solid centre
*/
.wsl-pt { cursor: pointer; }

.wsl-pt-bloom {
  fill: rgba(185,72,108,0.22);   /* richer base colour */
  transition: fill 0.3s;
}
.wsl-pt-halo {
  fill: rgba(185,72,108,0.08);
  transition: fill 0.3s;
}
.wsl-pt-ring {
  fill: none;
  stroke: rgba(220,130,155,0.55); /* brighter ring */
  stroke-width: 0.8;
  transition: stroke 0.3s, stroke-width 0.3s;
}
.wsl-pt-core {
  fill: var(--petal);            /* slightly lighter than rose */
  opacity: 0.9;
  transition: fill 0.3s, r 0.3s, opacity 0.3s;
  filter: url(#wsl-glow);
}

/* Live / new-arrival point — extra brightness */
.wsl-pt-live .wsl-pt-bloom { fill: rgba(210,80,120,0.32); }
.wsl-pt-live .wsl-pt-halo  { fill: rgba(210,80,120,0.14); }
.wsl-pt-live .wsl-pt-ring  { stroke: rgba(240,160,180,0.75); stroke-width: 1.1; }
.wsl-pt-live .wsl-pt-core  { fill: #f5b8cc; opacity: 1; filter: url(#wsl-glow-live); }

/* Active / hovered point */
.wsl-pt.is-active .wsl-pt-bloom { fill: rgba(185,72,108,0.38); }
.wsl-pt.is-active .wsl-pt-ring  { stroke: rgba(240,160,180,0.85); stroke-width: 1.2; }
.wsl-pt.is-active .wsl-pt-core  { fill: #fff0f5; opacity: 1; }

/* SVG filter for glow */
.wsl-defs { position: absolute; width: 0; height: 0; }

/* ── Pulse keyframes — defined in SVG animateTransform via JS,
   but we also use CSS for the bloom ring */
@keyframes wslBloom {
  0%   { r: 4;  opacity: 0.18; }
  50%  { r: 9;  opacity: 0.08; }
  100% { r: 4;  opacity: 0.18; }
}
@keyframes wslRingPulse {
  0%   { stroke-opacity: 0.4; }
  50%  { stroke-opacity: 0.08; }
  100% { stroke-opacity: 0.4; }
}
@keyframes wslCoreBreath {
  0%   { opacity: 0.55; }
  50%  { opacity: 0.95; }
  100% { opacity: 0.55; }
}


/* ── Tooltip */
.wsl-tooltip {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(18,10,18,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232,175,192,0.2);
  border-radius: var(--r-md);
  padding: 0.55rem 0.9rem;
  opacity: 0;
  transform: translateY(4px) scale(0.97);
  transition:
    opacity 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
  white-space: nowrap;
  max-width: 200px;
}
.wsl-tooltip.is-visible {
  opacity: 1;
  transform: none;
}

.wsl-tooltip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--rose);
}

.wsl-tooltip-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.wsl-tooltip-name {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  color: var(--td-hi);
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wsl-tooltip-loc {
  font-family: var(--f-body);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.7;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ── Recently joined strip */
.wsl-recent-outer {
  padding: 2.2rem 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(232,175,192,0.07);
  margin-top: 0;
  background: rgba(10,6,12,0.35);
}

.wsl-recent-label {
  font-family: var(--f-body);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.42;
  margin-bottom: 1.1rem;
}

/* Scrolling ticker — auto-scrolls left */
.wsl-recent-track {
  display: flex;
  gap: 0;
  overflow: hidden;
  position: relative;
  height: 2.8rem;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
/* When showing the empty state, centre it instead of scrolling */
.wsl-recent-track:has(.wsl-recent-empty) {
  justify-content: center;
  align-items: center;
  mask-image: none;
  -webkit-mask-image: none;
}

.wsl-recent-inner {
  display: flex;
  gap: 0;
  animation: recentScroll 120s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}

@keyframes recentScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.wsl-recent-entry {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.2rem;
  white-space: nowrap;
  height: 2.8rem;
  border-right: 1px solid rgba(232,175,192,0.08);
}

.wsl-recent-entry-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 5px rgba(160,64,96,0.7);
  flex-shrink: 0;
}

.wsl-recent-entry-name {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  color: var(--td-hi);
}

.wsl-recent-entry-sep {
  color: var(--td-low);
  font-size: 0.6rem;
}

.wsl-recent-entry-city {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--blush);
  opacity: 0.65;
}

/* ── Recently Joined: empty state ── */
.wsl-recent-empty {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,175,192,0.5);
  white-space: nowrap;
  padding: 0 1rem;
  animation: none; /* no scroll on empty state */
}
.wsl-recent-empty-dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(232,175,192,0.35);
  flex-shrink: 0;
}


/* ── CTA block */
.wsl-cta-wrap {
  padding: 3.5rem var(--pad-h) 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.wsl-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.8rem;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid rgba(232,175,192,0.3);
  color: var(--td-hi);
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--t-fast) var(--ease-soft);
}
.wsl-cta-btn:hover {
  background: rgba(160,64,96,0.12);
  border-color: rgba(232,175,192,0.6);
  color: var(--petal);
  transform: translateY(-2px);
}

.wsl-cta-note {
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 300;
  font-style: italic;
  color: var(--td-low);
}

/* ── Empty-state elements — shown when no real submissions exist ── */
.wsl-empty-cta {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--petal);
  opacity: 0.65;
  letter-spacing: 0.04em;
}

.wsl-tally-empty-note {
  text-align: center;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--petal);
  opacity: 0.45;
  letter-spacing: 0.06em;
  margin: -0.5rem 0 2rem;
  padding: 0 var(--section-h);
}

/* Hide recently-joined outer when JS sets display:none */
.wsl-recent-outer[style*="display: none"],
.wsl-recent-outer[style*="display:none"] {
  display: none !important;
}


/* ── Responsive */
@media (max-width: 820px) {
  .wsl-tally { gap: 0; }
  .wsl-tally-item { padding: 0 0.9rem; }
  .wsl-tally-num { font-size: 2rem; }
  .wsl-map-wrap { aspect-ratio: 3 / 2; }
  .wsl-br { display: none; }
}

@media (max-width: 580px) {
  .wsl-tally { flex-direction: column; gap: 0; border: none; }
  .wsl-tally-divider { width: 36px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(232,175,192,0.18), transparent);
    margin: 0.8rem auto;
  }
  .wsl-tally-item { max-width: 100%; padding: 0.8rem 0; }
  .wsl-map-wrap { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  .wsl-recent-inner { animation: none; }
  .wsl-pt-bloom, .wsl-pt-ring, .wsl-pt-core { animation: none !important; }
}
