/* ============================================
   ALTERED MINDS APPAREL — DESIGN SYSTEM
   Brand: black / white / purple accent
   Aesthetic: Psychedelic-minimal, dark
   ============================================ */

:root {
  --black:       #080808;
  --white:       #ffffff;
  --off-white:   #F0EDE6;
  --purple:      #9b59ff;
  --purple-dim:  #6a2fbf;
  --purple-glow: rgba(155, 89, 255, 0.18);
  --acid:         #C8FF00;
  --acid-glow:    rgba(200, 255, 0, 0.18);
  --violet:       #9B00FF;
  --violet-glow:  rgba(155, 0, 255, 0.18);
  --grey-1:      #111111;
  --grey-2:      #1a1a1a;
  --grey-3:      #2a2a2a;
  --grey-muted:  #666666;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:    4px;
  --max-width: 1160px;
  --nav-h:     68px;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.1; }

/* ── UTILITIES ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 16px;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--acid);
  color: var(--black);
  border-color: var(--acid);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,0.25) 50%,
    transparent 65%
  );
  background-size: 250% 100%;
  background-position: -100% 0;
  transition: none;
  pointer-events: none;
}

.btn--primary:hover {
  background: #d4ff33;
  border-color: #d4ff33;
  box-shadow: 0 0 28px var(--acid-glow);
}

.btn--primary:hover::after {
  animation: scanlineWipe 0.55s ease forwards;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--acid);
  color: var(--black);
  border-color: var(--acid);
}

/* ── Nav shop CTA — acid green ghost with bag icon ── */
.btn--nav-shop {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--acid);
  border: 1px solid var(--acid);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn--nav-shop:hover {
  background: var(--acid);
  color: var(--black);
}
.btn--nav-shop:hover svg {
  stroke: var(--black);
}

.btn--ghost {
  background: transparent;
  color: var(--purple);
  border-color: var(--grey-3);
  font-size: 13px;
  padding: 8px 18px;
}
.btn--ghost:hover {
  border-color: var(--acid);
  color: var(--acid);
  box-shadow: 0 0 14px var(--acid-glow);
}

.btn--lg {
  font-size: 17px;
  padding: 14px 36px;
  letter-spacing: 0.14em;
}

/* ── NAV ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

/* .nav__logo-text replaced by SVG logo */

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Grain texture overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* Radial glow behind logo — animated pulse */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 48%, rgba(155,89,255,0.10) 0%, transparent 70%);
  animation: heroPulse 6s 1.5s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
}

.hero__logo-wrap {
  position: relative;
}

/* .hero__logo-blob replaced by .hero__logo-svg — see SVG logo rules above */

.hero__sub {
  font-size: clamp(12px, 2vw, 15px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-muted);
  animation: liquidUp 0.9s 0.5s var(--ease-out-expo) both;
}

.hero__content .btn {
  animation: liquidUp 0.9s 0.7s var(--ease-out-expo) both;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--grey-muted);
  font-size: 18px;
  animation: bounce 2.4s ease-in-out infinite;
}

/* ── ABOUT ─────────────────────────────────── */
.about {
  padding: 120px 0;
  border-top: 1px solid var(--grey-2);
}

.about__inner {
  max-width: 640px;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 24px;
  will-change: transform, opacity;
}

.about__body {
  font-size: 16px;
  color: var(--grey-muted);
  max-width: 500px;
  margin-bottom: 12px;
}

/* ── PRODUCTS ──────────────────────────────── */
.products {
  padding: 80px 0 120px;
  border-top: 1px solid var(--grey-2);
}

.products__header {
  margin-bottom: 52px;
}

.products__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  color: var(--white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

/* Card */
.card {
  background: var(--grey-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out-expo);
}
.card:hover { transform: translateY(-4px); }

.card__img {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Placeholder cards with branded gradients */
.card__img--1 {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a2e 50%, #0d0d0d 100%);
}
.card__img--2 {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a0a 50%, #0d0d0d 100%);
}
.card__img--3 {
  background: linear-gradient(135deg, #0d0d0d 0%, #2e0a1a 50%, #0d0d0d 100%);
}

/* Abstract decorative blob behind label */
.card__img::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--purple-glow);
  filter: blur(60px);
  pointer-events: none;
}

.card__img-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.card__img-label {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(255,255,255,0.08);
}

/* Placeholder indicator */
.card__img::after {
  content: 'IMAGE PLACEHOLDER';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border-top: 1px solid var(--grey-2);
}

.card__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--white);
}

.card__desc {
  font-size: 13px;
  color: var(--grey-muted);
  flex: 1;
}

/* ── CTA BANNER ─────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--grey-1);
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
}

.cta-banner__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(155,89,255,0.12) 0%, transparent 70%);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 100px 24px;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: 0.04em;
  color: var(--white);
  max-width: 800px;
}

.cta-banner__sub {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--grey-2);
}

/* footer__inner — see footer additions below */

/* .footer__logo replaced by SVG logo — see .footer__logo-svg */

.footer__tagline {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--acid); }


.footer__disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: var(--grey-3);
  letter-spacing: 0.04em;
  max-width: 480px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-2);
  margin-bottom: 8px;
}
.footer__copy {
  font-size: 12px;
  color: var(--grey-3);
  letter-spacing: 0.06em;
}


/* ── NAV LOGO SVG ───────────────────────────── */
.nav__logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav__logo-link svg {
  width: 44px;
  height: auto;
  display: block;
}

/* ── HERO LOGO SVG ──────────────────────────── */
.hero__logo-svg {
  animation: glitchIn 1.1s var(--ease-out-expo) both;
}

/* Acid underline pulse after glitch settles */
.hero__logo-svg::after {
  animation: heroPulse 4s 1.4s ease-in-out infinite;
}

.hero__logo-svg svg {
  width: clamp(220px, 48vw, 420px);
  height: auto;
  display: block;
}

/* Acid underline accent below hero logo */
.hero__logo-svg::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--acid);
  margin: 20px auto 0;
  /* pulse animation added in glitch block above */
}



/* ── HERO VIDEO BACKGROUND ──────────────────── */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  /* CSS brightness handles the green segment being too bright */
  filter: brightness(0.55) saturate(0.9);
}

/* Dark gradient overlay — ensures text always reads cleanly */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(8,8,8,0.35) 0%,
      rgba(8,8,8,0.15) 40%,
      rgba(8,8,8,0.20) 60%,
      rgba(8,8,8,0.70) 100%
    ),
    radial-gradient(
      ellipse 70% 60% at 50% 50%,
      transparent 30%,
      rgba(8,8,8,0.40) 100%
    );
}

/* Remove static ::before glow — video replaces it */
.hero::before {
  display: none;
}

/* Reduce-motion: pause video, show poster */
@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }
}


/* ══════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════ */
:root {
  --bar-h: 40px;
}

.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101; /* above nav */
  height: var(--bar-h);
  background: var(--acid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 20px;
  gap: 12px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
}

/* Hidden state — slides up off screen */
.announce-bar--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announce-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.announce-bar__msg {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announce-bar__cta {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.announce-bar__cta:hover { opacity: 0.6; }

.announce-bar__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.announce-bar__close:hover { opacity: 1; }

/* ── Offset nav below the bar ─────────────── */
.nav {
  top: var(--bar-h);
  transition: background 0.3s, top 0.3s var(--ease-out-expo);
}

/* When bar is dismissed, nav slides back to top */
.nav--bar-gone {
  top: 0;
}

/* Hero needs extra top padding to clear both bar + nav */
.hero {
  padding-top: calc(var(--bar-h) + var(--nav-h) + 40px);
}

@media (max-width: 480px) {
  :root { --bar-h: 44px; }
  .announce-bar__msg { font-size: 11px; letter-spacing: 0.1em; }
}

/* ── NAV SCROLL STATE ────────────────────────── */
.nav--scrolled {
  background: rgba(8, 8, 8, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── NAV GLOW (triggered by JS on scroll past hero) ── */
.nav--scrolled .nav__logo-link svg {
  animation: navGlow 1.2s ease forwards;
}

/* ── FOOTER LOGO SVG ─────────────────────────── */
.footer__logo-svg {
  margin-bottom: 6px;
  line-height: 0;
}

.footer__logo-svg svg {
  width: 120px;
  height: auto;
  display: block;
}


/* ── ARTIST ROSTER ──────────────────────────── */
.artists {
  padding: 80px 0 100px;
  border-top: 1px solid var(--grey-2);
}

.artists__header {
  margin-bottom: 52px;
}

.artists__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  color: var(--white);
}

.artists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.artist-card {
  background: var(--grey-1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}

.artist-card:hover {
  background: var(--grey-2);
}

/* Top accent bar — uses per-card --c variable */
.artist-card__accent {
  height: 2px;
  background: var(--c);
  width: 0;
  transition: width 0.4s var(--ease-out-expo);
}

.artist-card:hover .artist-card__accent {
  width: 100%;
}

.artist-card__body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.artist-card__genre {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--acid);
}

.artist-card__name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  transition: text-shadow 0.15s ease;
}

.artist-card:hover .artist-card__name {
  animation: chromaOn 0.4s ease forwards;
}

.artist-card__desc {
  font-size: 13px;
  color: var(--grey-muted);
  line-height: 1.6;
  flex: 1;
  padding-bottom: 8px;
}

/* ── SOCIAL / INSTAGRAM ─────────────────────── */
.social {
  padding: 80px 0 100px;
  border-top: 1px solid var(--grey-2);
}

.social__header {
  margin-bottom: 40px;
}

.social__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.social__sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

.social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  aspect-ratio: 3 / 2;
}

.social__tile {
  background: var(--grey-1);
  position: relative;
  overflow: hidden;
  display: block;
  transition: filter 0.25s, transform 0.25s var(--ease-out-expo);
  will-change: transform, opacity;
}

.social__tile:hover {
  transform: scale(1.02);
}

.social__tile:hover {
  filter: brightness(1.12);
}

/* Unique gradient per tile to hint at content variety */
.social__tile--1 { background: linear-gradient(135deg, #0d0d0d 0%, #1a0a2e 60%, #0a0a0a 100%); }
.social__tile--2 { background: linear-gradient(135deg, #0d0d0d 0%, #0f1a06 60%, #0a0a0a 100%); }
.social__tile--3 { background: linear-gradient(160deg, #0a0a0a 0%, #1a0a1a 55%, #0d0d0d 100%); }
.social__tile--4 { background: linear-gradient(135deg, #0d0d0d 0%, #0a1a1a 60%, #0a0a0a 100%); }
.social__tile--5 { background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 60%, #0d0d0d 100%); }
.social__tile--6 { background: linear-gradient(160deg, #0a0a0a 0%, #130a1a 55%, #0d0d0d 100%); }

/* Subtle glow orb per tile */
.social__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(155,0,255,0.10) 0%, transparent 65%);
  transition: opacity 0.3s;
}

.social__tile--2::before,
.social__tile--5::before {
  background: radial-gradient(circle at 50% 50%, rgba(200,255,0,0.08) 0%, transparent 65%);
}

.social__tile:hover::before {
  opacity: 1.5;
}

/* Instagram placeholder cross-hair */
.social__tile::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 200;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
}

.social__tile-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out-expo);
}

.social__tile:hover .social__tile-inner {
  transform: translateY(0);
}

.social__tile-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
}

.social__cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* Responsive overrides */
/* artist/social mobile — consolidated below */




/* ══════════════════════════════════════════════
   FESTIVAL CALENDAR
══════════════════════════════════════════════ */
.festivals {
  padding: 80px 0 100px;
  border-top: 1px solid var(--grey-2);
}

.festivals__header {
  margin-bottom: 40px;
}

.festivals__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}

.festivals__sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

/* Scrollable horizontal track */
.festivals__track-wrap {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 12px;
  /* Negative margin trick so cards bleed to screen edge on mobile */
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.festivals__track-wrap::-webkit-scrollbar { display: none; }

.festivals__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-right: 24px; /* trailing space */
}

/* ── Festival Card ── */
.festival-card {
  scroll-snap-align: start;
  width: 280px;
  flex-shrink: 0;
  background: var(--grey-1);
  border: 1px solid var(--grey-2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}

.festival-card:hover {
  border-color: var(--acid);
  transform: translateY(-3px);
}

/* Past event — dimmed */
.festival-card--past {
  opacity: 0.4;
  pointer-events: none;
}

/* Top accent bar — alternates acid/violet */
.festival-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--acid);
  width: 100%;
}

.festival-card:nth-child(even)::before {
  background: var(--violet);
}

.festival-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.festival-card__date {
  font-family: 'Bebas Neue', var(--font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--acid);
}

.festival-card:nth-child(even) .festival-card__date {
  color: #cc88ff;
}

.festival-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
}

.festival-card__location {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

/* Countdown */
.festival-card__countdown {
  display: flex;
  gap: 10px;
  padding: 12px 0 4px;
  border-top: 1px solid var(--grey-2);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.countdown-unit__num {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  min-width: 32px;
  text-align: center;
}

.countdown-unit__label {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

/* Wear This CTA */
.festival-card__footer {
  padding: 16px 24px;
  border-top: 1px solid var(--grey-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.festival-card__wear-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

.festival-card__wear-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.festival-card__wear-link {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--acid);
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid rgba(200,255,0,0.25);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.festival-card__wear-link:hover {
  background: var(--acid);
  color: var(--black);
}

.festival-card:nth-child(even) .festival-card__wear-link {
  color: #cc88ff;
  border-color: rgba(155,0,255,0.25);
}

.festival-card:nth-child(even) .festival-card__wear-link:hover {
  background: var(--violet);
  color: var(--white);
}

/* Hint */
.festivals__hint {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-top: 20px;
  display: none; /* shown on mobile via media query */
}

/* ══════════════════════════════════════════════
   DROP WAITLIST
══════════════════════════════════════════════ */
.waitlist {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.waitlist__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 28px;
  color: var(--grey-muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.waitlist__divider::before,
.waitlist__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-2);
}

.waitlist__heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.waitlist__sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-muted);
  margin-bottom: 24px;
}

.waitlist__fields {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.waitlist__field {
  flex: 1;
  min-width: 160px;
}

.waitlist__field input {
  width: 100%;
  background: var(--grey-2);
  border: 1px solid var(--grey-3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.waitlist__field input::placeholder {
  color: var(--grey-muted);
}

.waitlist__field input:focus {
  border-color: var(--acid);
}

.waitlist__field input.input--error {
  border-color: #ff4444;
}

.waitlist__btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.15em;
}

/* Acid-coloured button variant */
.btn--acid {
  background: var(--acid);
  color: var(--black);
  border: none;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn--acid:hover  { opacity: 0.88; }
.btn--acid:active { transform: scale(0.98); }
.btn--acid:disabled { opacity: 0.4; cursor: not-allowed; }

.waitlist__legal {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--grey-muted);
  margin-top: 12px;
  text-align: center;
}

.waitlist__status {
  min-height: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-top: 8px;
  text-align: center;
}

.waitlist__status--error { color: #ff6666; }
.waitlist__status--loading { color: var(--grey-muted); }

.waitlist__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
}

.waitlist__success[hidden] { display: none; }

.waitlist__success-icon {
  font-size: 28px;
  color: var(--acid);
  animation: heroPulse 2s ease-in-out infinite;
}

.waitlist__success p {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Mobile overrides (added into existing responsive blocks) ── */
/* ══════════════════════════════════════════════
   REVIEWS CAROUSEL
══════════════════════════════════════════════ */
.reviews {
  padding: 80px 0 100px;
  border-top: 1px solid var(--grey-2);
  overflow: hidden;
}

/* ── Header / Stats ── */
.reviews__header {
  margin-bottom: 52px;
}

.reviews__stats {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.reviews__score {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.reviews__score-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
}

.reviews__score-stars {
  font-size: 28px;
  color: var(--acid);
  letter-spacing: 2px;
}

.reviews__score-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews__count {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

.reviews__etsy-link {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  text-decoration: none;
  transition: opacity 0.2s;
}

.reviews__etsy-link:hover {
  opacity: 0.7;
}

.reviews__sub-stats {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-2);
}

.reviews__sub-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews__sub-val {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--acid);
}

.reviews__sub-key {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

/* ── Carousel ── */
.reviews__carousel {
  position: relative;
  min-height: 340px; /* matches slide height */
}

.reviews__track {
  position: relative;
  width: 100%;
  /* Fixed height — all cards same size regardless of quote length */
  min-height: 340px;
}

/* ── Individual slides ── */
.reviews__track {
  position: relative;
}

/* All slides stack in place — no display:none */
.reviews__slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  /* Fixed height — matches tallest card. Tune this if quotes change */
  height: 340px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(32px);
  transition: opacity 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
  /* Horizontal padding accounts for arrow buttons (44px wide + 0px offset at mobile) */
  padding: 32px 64px;
  background: var(--grey-1);
  border-left: 3px solid var(--acid);
  overflow: hidden;
  visibility: hidden;
  /* Center all content vertically and horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

/* Active slide is in normal flow, sets the track height */
.reviews__slide--active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
  /* Height is set on .reviews__slide — active inherits it */
}

/* Subtle violet glow corner */
.reviews__slide::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,0,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Alternate border color on odd slides */
.reviews__slide:nth-child(even) {
  border-left-color: var(--violet);
}

.reviews__slide:nth-child(even)::before {
  background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 70%);
}

/* ── Quote mark ── */
.reviews__quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.7;
  color: var(--acid);
  opacity: 0.12;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.reviews__slide:nth-child(even) .reviews__quote-mark {
  color: var(--violet);
}

/* ── Quote text ── */
.reviews__quote {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.reviews__quote p {
  font-family: var(--font-body);
  font-size: clamp(15px, 2.2vw, 20px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--white);
  letter-spacing: 0.01em;
  text-align: center;
}

/* ── Review meta row ── */
.reviews__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.reviews__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.reviews__avatar--acid {
  background: rgba(200,255,0,0.12);
  border: 1px solid rgba(200,255,0,0.3);
  color: var(--acid);
}

.reviews__avatar--violet {
  background: rgba(155,0,255,0.12);
  border: 1px solid rgba(155,0,255,0.3);
  color: #cc88ff;
}

.reviews__byline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.reviews__name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--white);
}

.reviews__product {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

.reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.reviews__stars {
  color: var(--acid);
  font-size: 16px;
  letter-spacing: 2px;
}

.reviews__date {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

/* ── Arrow buttons ── */
.reviews__arrow {
  position: absolute;
  /* Sit at the bottom of the card, clear of text */
  bottom: 12px;
  transform: none;
  width: 40px;
  height: 40px;
  background: var(--grey-2);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 2;
}

.reviews__arrow:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--black);
}

.reviews__arrow--prev { left: 12px; }
.reviews__arrow--next { right: 12px; }

/* ── Dot indicators ── */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.reviews__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grey-2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}

.reviews__dot--active {
  background: var(--acid);
  width: 24px;
  border-radius: 3px;
  transform: none;
}

.reviews__dot:hover:not(.reviews__dot--active) {
  background: var(--grey-muted);
}

/* ── Slide exit animation ── */
.reviews__slide--exit {
  opacity: 0 !important;
  transform: translateX(-32px) !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* ── Responsive ── */
/* reviews 768 — consolidated below */

/* reviews 480 — consolidated below */

/* ── ANIMATIONS ─────────────────────────────── */

/* ── C: Liquid upward wipe (clip-based reveal) ── */
@keyframes liquidUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    clip-path: inset(100% 0 0 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0% 0 0 0);
  }
}

/* ── C: Staggered flow for body text ── */
@keyframes flowUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── C: Card lift-in with depth ── */
@keyframes cardLift {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
}

/* ── C: Label draw-in (acid underline grows left to right) ── */
@keyframes labelDraw {
  from { opacity: 0; letter-spacing: 0.08em; transform: translateX(-8px); }
  to   { opacity: 1; letter-spacing: 0.22em; transform: translateX(0); }
}

/* ── B: Subtle hero glitch — two tiny position jitters then settle ── */
@keyframes glitchIn {
  0%   { opacity: 0; transform: translateY(20px) scale(0.97); filter: blur(4px); }
  40%  { opacity: 0.9; transform: translateY(0) scale(1); filter: blur(0); }
  52%  { transform: translate(2px, -1px) scale(1); filter: brightness(1.04); }
  56%  { transform: translate(-2px, 1px) scale(1); }
  60%  { transform: translate(1px, 0) scale(1); }
  64%  { transform: translate(0, 0) scale(1); filter: brightness(1); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); filter: none; }
}

/* ── B: Chromatic aberration on artist name hover ── */
@keyframes chromaOn {
  0%   { text-shadow: none; }
  40%  { text-shadow: 1px 0 0 rgba(200,255,0,0.5), -1px 0 0 rgba(155,0,255,0.5); }
  60%  { text-shadow: -1px 0 0 rgba(200,255,0,0.3), 1px 0 0 rgba(155,0,255,0.3); }
  80%  { text-shadow: 1px 0 0 rgba(200,255,0,0.2), -1px 0 0 rgba(155,0,255,0.2); }
  100% { text-shadow: 1px 0 0 rgba(200,255,0,0.4), -1px 0 0 rgba(155,0,255,0.4); }
}

/* ── B: Scanline button wipe on hover ── */
@keyframes scanlineWipe {
  from { background-position: -100% 0; }
  to   { background-position: 200% 0; }
}

/* ── A: Hero background pulse ── */
@keyframes heroPulse {
  0%, 100% { opacity: 0.10; transform: scale(1); }
  50%       { opacity: 0.16; transform: scale(1.06); }
}

/* ── Social tile stagger tilt-in ── */
@keyframes tileReveal {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(1.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

/* ── Nav acid glow pulse (fires once when scrolled) ── */
@keyframes navGlow {
  0%   { filter: drop-shadow(0 0 0px rgba(200,255,0,0)); }
  50%  { filter: drop-shadow(0 0 6px rgba(200,255,0,0.5)); }
  100% { filter: drop-shadow(0 0 2px rgba(200,255,0,0.15)); }
}

/* ── Existing: bounce for scroll hint ── */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── Existing: plain fadeUp (kept for fallback) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL REVEAL ──────────────────────────── */

/* Base state — hidden before reveal */
.reveal           { opacity: 0; }
.reveal-heading   { opacity: 0; }
.reveal-body      { opacity: 0; }
.reveal-card      { opacity: 0; }
.reveal-label     { opacity: 0; }
.reveal-tile      { opacity: 0; }

/* ── C: Heading liquid wipe ── */
.reveal-heading.is-visible {
  animation: liquidUp 0.85s var(--ease-out-expo) both;
}

/* ── C: Body text flow ── */
.reveal-body.is-visible {
  animation: flowUp 0.7s var(--ease-out-expo) both;
}

/* ── C: Card lift-in ── */
.reveal-card.is-visible {
  animation: cardLift 0.75s var(--ease-out-expo) both;
}

/* ── C: Label draw ── */
.reveal-label.is-visible {
  animation: labelDraw 0.6s var(--ease-out-expo) both;
}

/* ── Social tile tilt-in ── */
.reveal-tile.is-visible {
  animation: tileReveal 0.65s var(--ease-out-expo) both;
}

/* ── Fallback plain reveal ── */
.reveal.is-visible {
  animation: flowUp 0.8s var(--ease-out-expo) both;
}

/* Stagger delays */
.reveal--delay-1  { animation-delay: 0.08s !important; }
.reveal--delay-2  { animation-delay: 0.16s !important; }
.reveal--delay-3  { animation-delay: 0.24s !important; }
.reveal--delay-4  { animation-delay: 0.32s !important; }
.reveal--delay-5  { animation-delay: 0.40s !important; }
.reveal--delay-6  { animation-delay: 0.48s !important; }

/* ── RESPONSIVE ─────────────────────────────── */
/* base 768 — consolidated below */

/* base 480 — consolidated below */


/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   All breakpoint overrides consolidated here.
   768px = tablets / large phones (landscape)
   480px = phones (portrait)
   360px = narrow phones
══════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Layout ── */
  .container {
    padding: 0 20px; /* unified with nav padding */
  }

  /* ── Nav (FIX 3: match container padding) ── */
  .nav { padding: 0 20px; }

  /* ── Hero (FIX 4: match side padding to nav) ── */
  .hero__content {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Festivals ── */
  .festivals { padding: 60px 0 80px; }
  .festivals__hint { display: block; }
  .festivals__track-wrap {
    margin: 0 -20px;
    padding-left: 20px;
  }

  /* ── Waitlist fields stack on mobile ── */
  .waitlist__fields { flex-direction: column; }
  .waitlist__field  { min-width: 100%; }
  .waitlist__btn    { width: 100%; }

  /* ── About / Products / Artists / Social sections ── */
  .about    { padding: 60px 0; }
  .products { padding: 60px 0 80px; }
  .artists  { padding: 60px 0 80px; }
  .social   { padding: 60px 0 80px; }
  .reviews  { padding: 60px 0 80px; }

  /* ── Products grid ── */
  .products__grid { grid-template-columns: 1fr; gap: 1px; }

  /* ── Artists grid (FIX 5: single col, consistent card padding) ── */
  .artists__grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .artist-card__body {
    padding: 24px 20px;
  }

  /* ── Social grid ── */
  .social__grid {
    grid-template-columns: repeat(2, 1fr);
    aspect-ratio: auto;
    max-width: 100%;      /* FIX 7: prevent overflow on narrow screens */
    overflow: hidden;
  }
  .social__grid .social__tile {
    aspect-ratio: 1;
  }

  /* ── Reviews carousel (FIX 6: clean slide padding + consistent height) ── */
  .reviews__slide {
    padding: 28px 52px 60px;
    height: 360px; /* taller on mobile — less width = more lines */
  }
  .reviews__carousel,
  .reviews__track { min-height: 360px; }
  .reviews__score-num  { font-size: 56px; }
  .reviews__quote p    { font-size: 16px; }
  .reviews__sub-stats  { gap: 20px; }
  .reviews__rating     { display: none; }

  /* ── Reviews arrows (FIX 2: pull inside container) ── */
  .reviews__arrow--prev { left: 8px; }
  .reviews__arrow--next { right: 8px; }

  /* ── Footer ── */
  .footer__inner { gap: 20px; }
  .footer__links { gap: 20px; }

  /* ── Buttons ── */
  .btn--lg { padding: 14px 28px; font-size: 15px; }
}

@media (max-width: 480px) {

  /* ── Container / Nav (FIX 3: narrow phones) ── */
  .container { padding: 0 16px; }
  .nav       { padding: 0 16px; }

  /* ── Hero ── */
  .hero__content {
    padding-left: 16px;
    padding-right: 16px;
    gap: 20px;
  }

  /* ── Festivals ── */
  .festival-card { width: 260px; }
  .festivals__track-wrap {
    margin: 0 -16px;
    padding-left: 16px;
  }

  /* ── Reviews arrows (FIX 2: at 480px go fully static) ── */
  .reviews__carousel {
    padding: 0 0 0 0;
  }
  .reviews__arrow {
    width: 36px;
    height: 36px;
  }
  .reviews__arrow--prev { left: 8px; }
  .reviews__arrow--next { right: 8px; }

  /* ── Reviews slide (FIX 6: remove excess right padding + height) ── */
  .reviews__slide {
    padding: 24px 52px 60px;
    height: 380px; /* narrowest screens need most height */
  }
  .reviews__carousel,
  .reviews__track { min-height: 380px; }
  .reviews__quote-mark {
    font-size: 80px;
    top: 20px;
    left: 10px;
  }

  /* ── Social grid (FIX 7: 2-col on all narrow phones) ── */
  .social__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Artist cards ── */
  .artist-card__body { padding: 20px 16px; }

  /* ── Buttons ── */
  .btn--lg { padding: 12px 24px; font-size: 14px; }
}

@media (max-width: 360px) {
  /* ── Narrowest phones (Galaxy S8 etc) ── */
  .container { padding: 0 12px; }
  .nav       { padding: 0 12px; }
  .hero__content {
    padding-left: 12px;
    padding-right: 12px;
  }
  .reviews__slide { padding: 20px 12px; }
  .reviews__dots  { gap: 4px; }
  .reviews__dot   { width: 5px; height: 5px; }
  .reviews__dot--active { width: 18px; }
}


/* ── Footer two-column nav ──────────────────── */
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__contact {
  margin-top: 8px;
}

.footer__email {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--acid);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer__email:hover { opacity: 0.7; }

.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 40px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-heading {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--grey-muted);
  margin-bottom: 4px;
}

.footer__nav-col a,
.footer__policy-link {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--grey-muted);
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}
.footer__nav-col a:hover,
.footer__policy-link:hover { color: var(--acid); }

/* ── Trust badges ────────────────────────────── */
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
}

.footer__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-muted);
}

.footer__badge svg {
  flex-shrink: 0;
  color: var(--grey-muted);
}

.footer__badge span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__copy-link {
  color: var(--grey-3);
  text-decoration: none;
  letter-spacing: 0.06em;
  font-size: 12px;
}
.footer__copy-link:hover { color: var(--grey-muted); }

/* ══════════════════════════════════════════════
   MODAL (Privacy Policy + future modals)
══════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;   /* sheet from bottom on mobile */
  justify-content: center;
}

.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.80);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  z-index: 1;
  background: var(--grey-1);
  border: 1px solid var(--grey-2);
  border-bottom: none;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 48px 48px 64px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  /* Slide up animation */
  animation: modalSlideUp 0.35s var(--ease-out-expo) both;
}

@keyframes modalSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grey-2);
  border: 1px solid var(--grey-3);
  color: var(--white);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.modal__close:hover { background: var(--grey-3); }

.modal__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 8px 0 4px;
}

.modal__date {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 32px;
}

.modal__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--acid);
  margin: 28px 0 8px;
}

.modal__body p,
.modal__body li {
  font-size: 14px;
  line-height: 1.75;
  color: #aaa;
  margin-bottom: 8px;
}

.modal__body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.modal__body li { margin-bottom: 4px; }

.modal__body a {
  color: var(--acid);
  text-decoration: none;
}
.modal__body a:hover { text-decoration: underline; }

.modal__body code {
  font-family: monospace;
  font-size: 12px;
  background: var(--grey-2);
  padding: 2px 6px;
  color: var(--off-white);
}

.modal__body strong { color: var(--off-white); }

.modal__note {
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--grey-2);
  border-left: 3px solid var(--acid);
  font-size: 13px;
  line-height: 1.65;
  color: var(--grey-muted);
}

.modal__note strong { color: var(--off-white); }

/* Desktop: center modal as a dialog */
@media (min-width: 600px) {
  .modal {
    align-items: center;
  }
  .modal__panel {
    border: 1px solid var(--grey-2);
    border-radius: 4px;
    max-height: 80vh;
  }
}

@media (max-width: 480px) {
  .modal__panel { padding: 32px 20px 48px; }
  .footer__nav-grid { gap: 28px; }
  .footer__badges   { gap: 14px; }
}
/* ── REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
