/* =========================================================
   Sweet Sunshine — Create Your Happy
   Raw HTML + CSS. Dark base, pink-led accents.
   Design language carried over from the Stitch "Radiant
   Energy" system: Bricolage Grotesque / Plus Jakarta Sans /
   Space Grotesk, high-contrast dark UI, hard graphic shadows.
   ========================================================= */

:root {
  /* surfaces */
  --ink:        #0a0a0a;   /* page base (midnight) */
  --ink-2:      #100c0f;   /* alt section base, warm */
  --surface:    #18121a;   /* cards, warm dark */
  --surface-2:  #221823;   /* raised cards */
  --line:       rgba(255, 214, 232, 0.10);
  --line-2:     rgba(255, 214, 232, 0.16);

  /* text */
  --text:       #f5edf1;
  --text-dim:   #c4b2bd;
  --text-mute:  #8d7d87;

  /* pink-led palette */
  --pink:       #ff4d80;   /* lead accent */
  --pink-hot:   #ff2e8e;   /* hotter pop */
  --pink-soft:  #ffa6c4;
  --pink-deep:  #c11c5d;   /* hard-shadow / depth */
  --rose-glow:  rgba(255, 77, 128, 0.55);

  /* warm support accent (sunset, used sparingly) */
  --orange:     #ff7a3c;
  --cream:      #fff1f6;

  /* secondary pops */
  --blue:       #3ea0ff;
  --blue-deep:  #1f6fd0;
  --yellow:     #ffd23c;
  --yellow-deep:#e0a400;

  /* type */
  --f-display:  "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  --f-body:     "Plus Jakarta Sans", system-ui, sans-serif;
  --f-label:    "Space Grotesk", system-ui, sans-serif;

  /* metrics */
  --container:  1200px;
  --radius:     18px;
  --radius-sm:  10px;
  --nav-h:      72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 40px); }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--pink); color: #fff; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--f-label);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow-pink { color: var(--pink); }

.eyebrow-chip {
  background: rgba(255, 77, 128, 0.12);
  border: 1px solid rgba(255, 77, 128, 0.4);
  color: var(--pink-soft);
  padding: 7px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}
.section-title em,
.hero-title em,
.club-title em,
.collab-title em,
.quote em {
  font-style: italic;
  color: var(--pink);
}

.muted { color: var(--text-mute); }

.text-link {
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.text-link:hover { gap: 14px; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 12.5px; }
.btn-lg { padding: 16px 30px; font-size: 14px; }

.btn-pink {
  background: var(--pink);
  color: #1a0a12;
  box-shadow: 5px 5px 0 var(--pink-deep);
}
.btn-pink:hover {
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 var(--pink-deep);
  filter: brightness(1.05);
}
.btn-pink:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--pink-deep); }

.btn-ghost {
  background: transparent;
  color: var(--pink-soft);
  border-color: rgba(255, 77, 128, 0.55);
}
.btn-ghost:hover { background: rgba(255, 77, 128, 0.1); transform: translateY(-2px); color: #fff; }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  color: var(--text);
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.icon-btn:hover { color: var(--pink); background: rgba(255, 77, 128, 0.1); transform: translateY(-1px); }

/* =========================================================
   Ticker bar
   ========================================================= */
.tickerbar {
  background: var(--pink);
  color: #1a0a12;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--pink-deep);
}
.ticker-track {
  display: flex;
  width: max-content;
  padding: 8px 0;
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: ticker 65s linear infinite;
  will-change: transform;
}
/* two identical groups + gapless spacing = seamless wrap */
.ticker-group { display: flex; align-items: center; flex-shrink: 0; }
.ticker-group > span { margin-right: 26px; }
.ticker-group .dot { opacity: 0.85; }
.ticker-group .dot.b { color: var(--blue-deep); opacity: 1; }
.ticker-group .dot.y { color: var(--yellow-deep); opacity: 1; }
.tickerbar:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation-duration: 120s; }
}

/* =========================================================
   Nav
   ========================================================= */
.nav-toggle { display: none; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 10, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -0.02em;
  color: var(--pink);
  transition: transform 0.2s ease;
}
.brand:hover { transform: scale(1.04); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--pink); border-color: var(--pink); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.menu-btn { display: none; }
.menu-btn .i-close { display: none; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding: clamp(64px, 11vw, 130px) 28px clamp(120px, 16vw, 180px);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.hero-glow {
  position: absolute;
  inset: -20% 0 auto 0;
  height: 120%;
  background:
    radial-gradient(60% 55% at 50% 22%, var(--rose-glow), transparent 70%),
    radial-gradient(40% 40% at 82% 8%, rgba(255, 122, 60, 0.28), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.hero-streaks {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background:
    repeating-linear-gradient(-24deg,
      transparent 0 22px,
      rgba(255, 77, 128, 0.16) 22px 24px,
      transparent 24px 60px),
    repeating-linear-gradient(-24deg,
      transparent 0 80px,
      rgba(255, 166, 196, 0.12) 80px 82px,
      transparent 82px 150px);
  -webkit-mask-image: radial-gradient(70% 70% at 60% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(70% 70% at 60% 30%, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.hero-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(48px, 10vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}
.hero-sub {
  max-width: 600px;
  color: var(--text-dim);
  font-size: clamp(16px, 2.2vw, 19px);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }

/* floating polaroids */
.hero-polas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.pola {
  position: absolute;
  width: 150px;
  background: #fff;
  padding: 9px 9px 30px;
  border-radius: 4px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.5);
}
.pola span {
  position: absolute;
  bottom: 7px; left: 0; right: 0;
  text-align: center;
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: #6a2a44;
}
.pola-img { height: 120px; border-radius: 2px; }
.pola-a { top: 16%; left: 4%; transform: rotate(-9deg); }
.pola-b { bottom: 16%; right: 4%; transform: rotate(8deg); }

@media (max-width: 1080px) { .hero-polas { display: none; } }

/* =========================================================
   Stats band
   ========================================================= */
.stats {
  max-width: var(--container);
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--pink);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 30px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.stat { text-align: center; min-width: 110px; }
.stat strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  color: var(--pink);
}
.stat span {
  font-family: var(--f-label);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.stat-sep { color: rgba(255, 77, 128, 0.4); font-size: 14px; }
.stat.is-yellow strong { color: var(--yellow); }
.stat.is-blue strong { color: var(--blue); }

/* =========================================================
   Section scaffold
   ========================================================= */
section { scroll-margin-top: var(--nav-h); }

.about, .club, .merch, .affiliate {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 110px) 28px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.section-head .eyebrow { margin-bottom: 12px; }

/* =========================================================
   About
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}
.about-media { position: relative; }
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
}
.about-badge {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: var(--pink);
  color: #1a0a12;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--pink-deep);
  max-width: 175px;
  transform: rotate(-3deg);
}
.about-badge .badge-top,
.about-badge .badge-bot {
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}
.about-badge strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.1;
}
.about-copy p { color: var(--text-dim); margin-top: 18px; }
.about-copy .section-title { margin-top: 14px; margin-bottom: 4px; }
.about-copy .text-link { margin-top: 26px; }

/* =========================================================
   Pull quote
   ========================================================= */
.quote {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: clamp(60px, 9vw, 100px) 28px;
}
.quote p {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto;
}
.quote .sun { color: var(--yellow); font-style: normal; }
.quote .spark { color: var(--blue); font-style: normal; font-size: 0.62em; vertical-align: middle; }
.quote-by {
  display: block;
  margin-top: 22px;
  font-family: var(--f-label);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* =========================================================
   Club
   ========================================================= */
.club {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 24px;
}
.club-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  min-height: 480px;
  display: flex;
}
.club-photo { position: absolute; inset: 0; }
.club-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 10, 0.95) 8%, rgba(10, 8, 10, 0.35) 55%, rgba(10, 8, 10, 0.1));
}
.club-overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: clamp(26px, 4vw, 44px);
  max-width: 540px;
}
.club-overlay .eyebrow { margin-bottom: 14px; }
.club-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.club-overlay p { color: var(--text-dim); margin-bottom: 26px; max-width: 440px; }

.club-side { display: grid; gap: 24px; }
.mini-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--pink);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s ease;
}
.mini-card:hover { transform: translateY(-4px); }
.mini-card.is-blue { border-top-color: var(--blue); }
.mini-card-pink {
  background: var(--pink);
  border-color: var(--pink);
  border-top-color: #fff;
  color: #1a0a12;
  box-shadow: 8px 8px 0 var(--pink-deep);
}
.mini-num {
  font-family: var(--f-label);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.mini-card h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  margin: 6px 0 8px;
}
.mini-card p { font-size: 15.5px; }
.mini-card:not(.mini-card-pink) p { color: var(--text-dim); }

/* =========================================================
   Merch
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.product:hover { transform: translateY(-6px); border-color: rgba(255, 77, 128, 0.5); }
.product-img {
  position: relative;
  aspect-ratio: 1 / 1;
}
.product-img .tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: var(--pink);
  font-family: var(--f-label);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 77, 128, 0.5);
}
.product-img .tag.tag-yellow { background: var(--yellow); color: #1a0a12; border-color: var(--yellow-deep); }
.product-img .tag.tag-blue { background: var(--blue); color: #07182b; border-color: var(--blue-deep); }
.product-info { padding: 18px 18px 20px; }
.product-info h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.1;
}
.product-info .muted { font-size: 14px; margin-top: 3px; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.price {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
}
.buy {
  font-family: var(--f-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

/* =========================================================
   Affiliate
   ========================================================= */
.affiliate { padding-top: 0; }
.affiliate .section-head { align-items: center; }
.affiliate-note { max-width: 320px; color: var(--text-mute); font-size: 14.5px; text-align: right; }

.link-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.link-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  cursor: pointer;
}
.link-card:hover {
  transform: translateX(4px);
  border-color: rgba(255, 77, 128, 0.55);
  background: var(--surface-2);
}
.link-ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid var(--line-2);
}
.link-text { flex: 1; }
.link-text h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.15;
}
.link-text .muted { font-size: 13.5px; }
.link-go { color: var(--pink); font-size: 22px; font-weight: 700; transition: transform 0.18s ease; }
.link-card:hover .link-go { transform: translate(3px, -3px); }

/* =========================================================
   Collab
   ========================================================= */
.collab {
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(255, 77, 128, 0.16), transparent 70%),
    var(--ink-2);
  border-top: 1px solid var(--line);
  padding: clamp(70px, 10vw, 120px) 28px;
}
.collab-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.collab-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.collab-inner p { color: var(--text-dim); max-width: 480px; }
.collab-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin-top: 10px;
}
.collab-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 14px 18px;
  transition: border-color 0.18s ease;
}
.collab-form input::placeholder { color: var(--text-mute); }
.collab-form input:focus { outline: none; border-color: var(--pink); }
.collab-mail {
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--pink-soft);
  margin-top: 6px;
  border-bottom: 1px solid transparent;
}
.collab-mail:hover { border-color: var(--pink-soft); }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--surface);
  border-top: 3px solid var(--pink);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 44px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.brand-foot { font-size: 24px; }
.footer-brand .muted { font-family: var(--f-label); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a {
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.18s ease;
}
.footer-nav a:hover { color: var(--pink); }
.footer-social { display: flex; gap: 6px; }

/* =========================================================
   Gradient placeholder art (swap for real photos later)
   ========================================================= */
/* highlight baked into each class so per-element colors always render */
.grad-1 { background-image: radial-gradient(46% 56% at 68% 22%, rgba(255,255,255,0.26), transparent 60%), linear-gradient(135deg, #ff4d80 0%, #ff7a3c 100%); }
.grad-2 { background-image: radial-gradient(46% 56% at 68% 22%, rgba(255,255,255,0.22), transparent 60%), linear-gradient(135deg, #ff2e8e 0%, #7a2bd6 100%); }
.grad-3 { background-image: radial-gradient(46% 56% at 65% 25%, rgba(255,255,255,0.28), transparent 60%), linear-gradient(140deg, #ff6f9c 0%, #ffb37a 55%, #ffd56b 100%); }
.grad-4 { background-image: radial-gradient(50% 50% at 30% 12%, rgba(255,255,255,0.18), transparent 60%), linear-gradient(150deg, #2a1020 0%, #c11c5d 58%, #ff7a3c 125%); }
.grad-5 { background-image: radial-gradient(46% 56% at 68% 22%, rgba(255,255,255,0.26), transparent 60%), linear-gradient(135deg, #ffa6c4 0%, #ff4d80 100%); }
.grad-blue   { background-image: radial-gradient(46% 56% at 68% 22%, rgba(255,255,255,0.28), transparent 60%), linear-gradient(135deg, #4db4ff 0%, #6b6bff 55%, #b24dff 110%); }
.grad-yellow { background-image: radial-gradient(46% 56% at 68% 22%, rgba(255,255,255,0.30), transparent 60%), linear-gradient(135deg, #ffe14d 0%, #ffc23c 45%, #ff8a3c 110%); }
.grad-1, .grad-2, .grad-3, .grad-4, .grad-5, .grad-blue, .grad-yellow { position: relative; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
  .about-badge { right: 0; }
  .club { grid-template-columns: 1fr; }
  .club-side { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .hide-mobile { display: none !important; }
  .menu-btn { display: inline-grid; }

  /* slide-down mobile menu (hidden by visibility, not by guessing its height) */
  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + 33px); /* below ticker + nav */
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 8, 10, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-2);
    padding: 8px 28px 20px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 40;
  }
  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .nav-links a.active { border-color: var(--line); color: var(--pink); }
  .nav-toggle:checked ~ .nav .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-toggle:checked ~ .nav .menu-btn .i-menu { display: none; }
  .nav-toggle:checked ~ .nav .menu-btn .i-close { display: block; }
}

@media (max-width: 560px) {
  .section-head { flex-direction: column; align-items: flex-start; }
  .club-side { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .link-list { grid-template-columns: 1fr; }
  .collab-form { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .stats { gap: 10px 18px; }
  .stat { min-width: 70px; }
  .stat-sep { display: none; }
}

@media (max-width: 400px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* end of stylesheet */
