/* =================================================================
   MY CAT DIED — After School with Friends Collective
   Aesthetic: Sci-Fi Pop Art × Art Deco × Futuristic Editorial
   ================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --bg-base:        #0b001a;   /* deepest base — footer only */
  --bg-lifted:      #140028;   /* primary content sections */
  --bg-secondary:   #1a0033;   /* gradient anchor */
  --bg-soft:        #f8f4ff;   /* lavender mission */

  --gold:           #d4af37;
  --gold-warm:      #b8932e;
  --glow:           #f5d06f;
  --glow-soft:      rgba(245, 208, 111, 0.35);
  --glow-faint:     rgba(245, 208, 111, 0.12);

  --text-light:     #ffffff;
  --text-dark:      #1a0033;
  --text-muted:     rgba(255, 255, 255, 0.72);
  --text-muted-2:   rgba(255, 255, 255, 0.55);

  /* Type */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w:          1200px;
  --pad-section:    80px;
  --pad-section-m:  48px;
  --radius-sm:      4px;
  --radius-md:      10px;

  /* Glow effects (no heavy shadows) */
  --glow-gold:      0 0 0 1px rgba(212, 175, 55, 0.4),
                    0 0 24px rgba(245, 208, 111, 0.18),
                    0 0 60px rgba(212, 175, 55, 0.12);
  --glow-button:    0 0 0 1px rgba(212, 175, 55, 0.6),
                    0 0 20px rgba(245, 208, 111, 0.35);
  --glow-button-hv: 0 0 0 1px rgba(245, 208, 111, 0.9),
                    0 0 32px rgba(245, 208, 111, 0.6),
                    0 0 60px rgba(245, 208, 111, 0.3);

  /* Motion */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--bg-lifted);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================
   GEOMETRIC DECO DIVIDER (between sections)
   ================================================================= */
.deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 24px;
  background: var(--bg-lifted);
  position: relative;
}
.deco-line {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.deco-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--glow-soft);
}

/* =================================================================
   NAVIGATION
   ================================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: background 0.3s var(--ease),
              padding 0.3s var(--ease),
              border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(20, 0, 40, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom-color: rgba(212, 175, 55, 0.22);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  object-fit: cover;
}
.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sm);
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

/* =================================================================
   BUTTONS — glow-based, not heavy shadow
   ================================================================= */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform 0.25s var(--ease),
              box-shadow 0.3s var(--ease),
              background 0.25s var(--ease),
              color 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.btn-large { padding: 18px 44px; font-size: 0.88rem; }

.btn-gold {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
  box-shadow: var(--glow-button);
}
.btn-gold:hover {
  background: var(--glow);
  border-color: var(--glow);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--glow-button-hv);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 0 transparent;
}
.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--glow);
  border-color: var(--glow);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 24px rgba(245, 208, 111, 0.3);
}

.btn-glow { box-shadow: var(--glow-button); }

/* =================================================================
   1. HERO — bright, vibrant, cinematic
   ================================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 24px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-lifted);
}

/* Video brightness mandate per spec */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(1.3) contrast(1.1) saturate(1.1);
}

/* Overlay capped at rgba(11,0,26,0.45) — gradient, not flat */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(11, 0, 26, 0.25) 50%, rgba(11, 0, 26, 0.45) 100%),
    linear-gradient(180deg, rgba(20, 0, 40, 0.25) 0%, transparent 30%, transparent 70%, rgba(11, 0, 26, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  animation: fadeUp 1.2s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow:
    0 0 0 6px rgba(212, 175, 55, 0.08),
    0 0 32px rgba(245, 208, 111, 0.4);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--glow);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(245, 208, 111, 0.6);
}
.eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--glow);
  opacity: 0.6;
}

.hero-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--text-light);
  text-shadow:
    0 0 40px rgba(245, 208, 111, 0.4),
    0 4px 20px rgba(0, 0, 0, 0.5);
}
/* Subtle glow halo behind the headline */
.hero-title-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(245, 208, 111, 0.3) 0%,
    rgba(212, 175, 55, 0.15) 30%,
    transparent 65%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--glow);
  margin: 0 0 36px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 208, 111, 0.85);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--glow), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* =================================================================
   SECTION HEADS (reused)
   ================================================================= */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: 14px;
  position: relative;
  padding: 0 24px;
  text-shadow: 0 0 12px rgba(245, 208, 111, 0.4);
}
.section-kicker::before,
.section-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--glow);
  opacity: 0.6;
}
.section-kicker::before { left: 0; }
.section-kicker::after  { right: 0; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--text-light);
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =================================================================
   2. FEATURED AUDIO — lifted bg + radial glow
   ================================================================= */
.listen {
  padding: var(--pad-section) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(107, 58, 160, 0.18), transparent 50%),
    var(--bg-lifted);
  position: relative;
}

.audio-frame {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.06), rgba(20, 0, 40, 0.6));
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--glow-gold);
}
.sc-embed {
  width: 100%;
  height: 460px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
}
.sc-credit {
  margin: 16px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted-2);
  text-align: center;
}
.sc-credit a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.sc-credit a:hover {
  color: var(--glow);
  border-bottom-color: var(--glow);
}
.sc-credit .sep { margin: 0 6px; opacity: 0.5; }

/* =================================================================
   3. MISSION — lavender contrast
   ================================================================= */
.mission {
  padding: calc(var(--pad-section) + 20px) 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(107, 58, 160, 0.06), transparent 50%),
    var(--bg-soft);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

/* Art Deco corner ornaments */
.mission::before,
.mission::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(107, 58, 160, 0.3);
}
.mission::before {
  top: 24px;
  left: 24px;
  border-right: none;
  border-bottom: none;
}
.mission::after {
  bottom: 24px;
  right: 24px;
  border-left: none;
  border-top: none;
}

.mission-inner {
  text-align: center;
  position: relative;
  max-width: 860px;
}
.mission-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #6b3aa0;
  margin-bottom: 36px;
  padding-bottom: 12px;
  border-bottom: 1px solid #6b3aa0;
}

.mission-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.45;
  margin: 0 0 40px;
  color: var(--text-dark);
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0;
  color: #6b3aa0;
  opacity: 0.3;
  vertical-align: -0.4em;
  margin-right: 6px;
}

.mission-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: #6b3aa0;
}
.sig-line {
  width: 50px;
  height: 1px;
  background: #6b3aa0;
  opacity: 0.5;
}

/* =================================================================
   4. COLLECTIVE CTA — gradient + stamp watermark + glow
   ================================================================= */
.collective {
  padding: calc(var(--pad-section) + 20px) 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(245, 208, 111, 0.12), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(107, 58, 160, 0.25), transparent 50%),
    linear-gradient(180deg, var(--bg-secondary), var(--bg-lifted));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.collective-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 700px;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  pointer-events: none;
  filter: brightness(2);
}

.collective-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.stamp-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(245, 208, 111, 0.5));
  animation: stampFloat 5s ease-in-out infinite;
}
@keyframes stampFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.collective-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 18px;
  color: var(--text-light);
  text-shadow: 0 0 30px rgba(245, 208, 111, 0.25);
}
.collective-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 auto 32px;
  max-width: 560px;
  line-height: 1.7;
}

.collective-meta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 208, 111, 0.7);
  flex-wrap: wrap;
}
.meta-sep { opacity: 0.5; }

/* =================================================================
   5. SUBMIT — lifted bg + glow accents
   ================================================================= */
.submit {
  padding: var(--pad-section) 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(107, 58, 160, 0.18), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(212, 175, 55, 0.08), transparent 50%),
    var(--bg-lifted);
  position: relative;
}

.submit-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 36px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.04), rgba(20, 0, 40, 0.7));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 0 30px rgba(245, 208, 111, 0.08);
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input,
.field textarea {
  background: rgba(11, 0, 26, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color 0.25s var(--ease),
              background 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--glow);
  background: rgba(11, 0, 26, 0.75);
  box-shadow: 0 0 0 3px rgba(245, 208, 111, 0.15),
              0 0 20px rgba(245, 208, 111, 0.1);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.form-note {
  font-size: 0.85rem;
  color: var(--glow);
  font-style: italic;
}
.form-note.error { color: #ff8a8a; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  background: var(--bg-base);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  opacity: 0.5;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}
.footer-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.footer-sub {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted-2);
}

.footer-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-stamp img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 0 14px rgba(245, 208, 111, 0.3));
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-links a {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

/* =================================================================
   RESPONSIVE
   Tiers: >1060 | 769–1060 | ≤768 | ≤480
   ================================================================= */

/* ---------- Tablet landscape: 769–1060 ---------- */
@media (max-width: 1060px) {
  .nav-links { gap: 24px; }
  .container { padding-left: 20px; padding-right: 20px; }
  .listen,
  .submit { padding: 70px 0; }
  .mission,
  .collective { padding: 80px 0; }
  .deco-divider { padding: 22px 20px; }
  .deco-line { max-width: 220px; }
}

/* ---------- Tablet / large mobile: ≤768 ---------- */
@media (max-width: 768px) {
  :root { --pad-section: var(--pad-section-m); }

  .container { padding-left: 20px; padding-right: 20px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero { min-height: 560px; }
  .hero-logo { width: 88px; height: 88px; margin-bottom: 22px; }
  .hero-eyebrow {
    gap: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.25em;
    margin-bottom: 18px;
  }
  .eyebrow-line { width: 24px; }
  .hero-tagline { margin-bottom: 28px; }
  .hero-ctas { gap: 12px; }
  .btn { padding: 13px 26px; font-size: 0.78rem; }
  .btn-large { padding: 15px 32px; font-size: 0.82rem; }
  .scroll-cue { bottom: 20px; }

  /* Sections */
  .listen,
  .submit { padding: 56px 0; }
  .mission,
  .collective { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .deco-divider { padding: 20px 16px; }
  .deco-line { max-width: 140px; }

  /* Mission deco corners */
  .mission::before,
  .mission::after { width: 50px; height: 50px; }

  /* Audio */
  .audio-frame { padding: 14px; }
  .sc-embed { height: 360px; }

  /* Mission */
  .mission-quote { margin-bottom: 32px; }
  .quote-mark { font-size: 4rem; }

  /* Collective */
  .stamp-img { width: 130px; height: 130px; margin-bottom: 26px; }
  .collective-watermark { width: 130%; max-width: none; opacity: 0.06; }

  /* Form */
  .submit-form {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 14px;
  }
  .form-actions { flex-direction: column; gap: 12px; }
  .form-actions .btn { width: 100%; text-align: center; }

  /* Footer */
  .footer { padding: 44px 0 24px; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding-bottom: 28px;
  }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; gap: 16px; }
}

/* ---------- Small phone: ≤480 ---------- */
@media (max-width: 480px) {
  .nav { padding: 12px 0; }
  .nav.scrolled { padding: 8px 0; }
  .nav-brand-text { font-size: 0.88rem; letter-spacing: 0.14em; }
  .nav-brand img { width: 32px; height: 32px; }

  .container { padding-left: 16px; padding-right: 16px; }

  .hero { padding: 0 16px; min-height: 540px; }
  .hero-logo { width: 76px; height: 76px; margin-bottom: 18px; }
  .hero-ctas { flex-direction: column; width: 100%; align-items: stretch; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  .listen,
  .submit { padding: 48px 0; }
  .mission,
  .collective { padding: 56px 0; }

  .audio-frame { padding: 10px; }
  .sc-embed { height: 320px; }

  .section-kicker { font-size: 0.66rem; padding: 0 18px; }
  .section-kicker::before,
  .section-kicker::after { width: 10px; }

  .stamp-img { width: 110px; height: 110px; }
  .collective-meta {
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }
  .collective-meta .meta-sep { display: none; }

  .submit-form { padding: 20px 16px; }
  .field input,
  .field textarea { padding: 12px 14px; font-size: 0.9rem; }

  .footer-links { gap: 12px; }
  .footer-links a { font-size: 0.7rem; letter-spacing: 0.16em; }

  .deco-line { max-width: 80px; }
}

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