/* RiRaa Kri8ve — global styles. Shared across every page. */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --obsidian: #0B0C10;
  --slate: #1F2833;
  --teal: #0E7C7B;
  --teal-vivid: #14C4BE;
  --royal: #1A3C8C;
  --green: #1B8A5A;
  --gold: #F4C430;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.5);
  --faint: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--obsidian);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ─── STICKY NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: 120px;
  background: rgba(11,12,16,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { width: 72px; height: 72px; border-radius: 50%; }
.nav-wordmark { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 32px; color: var(--white); }
.nav-wordmark em { color: var(--gold); font-style: normal; }
.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.55);
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.6px;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--gold); color: var(--obsidian);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 11px 24px; border: none; border-radius: 6px; cursor: pointer;
  text-decoration: none; display: inline-block;
}
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; }

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 120px;
    left: 0; right: 0;
    background: var(--obsidian);
    flex-direction: column;
    padding: 20px 40px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-200%);   /* was -150% — push further off screen */
    transition: transform .25s ease;
    z-index: 199;
    overflow: hidden;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    font-size: 15px;      /* stays current size on mobile */
  }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

/* ─── PAGE HERO (shared shell for sub-pages) ─── */
.page-hero {
  padding: 80px 40px 56px;
  max-width: 900px; margin: 0 auto; text-align: center;
}
/* The Dash Clubb page hero — tighter padding to match tightened spacing below */
.page-hero.dash-clubb-hero {
  padding: 32px 40px 16px;
}
.page-eyebrow {
  display: inline-block; background: rgba(244,196,48,0.14); border: 1px solid rgba(244,196,48,0.4);
  color: var(--gold); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 7px 16px; border-radius: 4px; margin-bottom: 20px;
}
.page-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.2rem);
  text-transform: uppercase; letter-spacing: -1px; margin-bottom: 18px; line-height: 1.05;
}
.page-title .gold { color: var(--gold); }
.page-title .teal { color: var(--teal-vivid); }
.page-desc { font-size: 1rem; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 640px; margin: 0 auto; }

/* Eyebrow pill — less space below */
.page-hero .page-eyebrow {
  margin-bottom: 12px;    /* was ~20px */
}

/* Title — less space below */
.page-hero .page-title {
  margin-bottom: 12px;    /* was ~18px */
}

/* The Dash Clubb page — final round: tighter still */
.dash-clubb-hero .page-eyebrow {
  margin-bottom: 8px;     /* was ~20px */
}
.dash-clubb-hero .page-title {
  margin-bottom: 8px;     /* was ~18px */
}

/* ─── SHARED SECTION STYLES ─── */
.section-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(14,124,123,0.25) 30%, rgba(26,60,140,0.25) 70%, transparent); }
.section-wrap { padding: 48px 40px; max-width: 1100px; margin: 0 auto; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.4px; }
.section-title .gold { color: var(--gold); }
.section-title .teal { color: var(--teal-vivid); }
.see-all { font-size: 14px; font-weight: 600; color: var(--white); text-decoration: none; letter-spacing: 0.5px; }
.see-all:hover { color: var(--white); }

/* ─── HOME HERO ─── */
.hero { position: relative; padding: 64px 40px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 8% 50%, rgba(14,124,123,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 65% at 90% 35%, rgba(26,60,140,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 50% 95%, rgba(244,196,48,0.06) 0%, transparent 55%),
    var(--obsidian);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 64px; flex-wrap: wrap;
}
.hero-text { flex: 1; min-width: 280px; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.badge-pill { background: rgba(244,196,48,0.14); border: 1px solid rgba(244,196,48,0.4); color: var(--gold);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 4px; }
.eyebrow-sep { width: 28px; height: 1px; background: rgba(255,255,255,0.15); }
.eyebrow-label { font-size: 13px; color: var(--muted); letter-spacing: 0.8px; text-transform: uppercase; }
.hero-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.0; letter-spacing: -1.5px; text-transform: uppercase; margin-bottom: 18px; }
@media (max-width: 500px) {
  .hero-title { font-size: clamp(2.2rem, 11vw, 2.8rem); }
}
.hero-title .gold { color: var(--gold); }
.hero-title .teal { color: var(--teal-vivid); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 440px; margin-bottom: 20px; }
.hero-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 28px; }
.tag { font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 20px; letter-spacing: 0.2px; }
.tag-blue  { background: rgba(26,60,140,0.35);  color: #7BADFF; border: 1px solid rgba(26,60,140,0.55); }
.tag-teal  { background: rgba(14,124,123,0.28); color: #4DD8D3; border: 1px solid rgba(14,124,123,0.5); }
.tag-green { background: rgba(27,138,90,0.25);  color: #55D998; border: 1px solid rgba(27,138,90,0.45); }
.tag-gold  { background: rgba(244,196,48,0.10); color: var(--gold); border: 1px solid rgba(244,196,48,0.3); }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn-play, .btn-ghost {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.5px; padding: 13px 24px;
  border-radius: 8px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-play { background: var(--gold); color: var(--obsidian); border: none; }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.16); font-weight: 600; }
.play-circle { width: 18px; height: 18px; background: rgba(0,0,0,0.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
#hero-player-wrapper { width: 100%; max-width: 440px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; margin-top: 16px; }
#hero-player-wrapper.open { max-height: 200px; }
.hero-art {
  flex-shrink: 1; min-width: 0; max-width: 100%; display: flex; align-items: center; justify-content: center;
  position: relative; margin: 0 auto;
  background: transparent !important;
  background-color: transparent !important;
}
.art-glow { position: absolute; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(14,124,123,0.38) 0%, rgba(26,60,140,0.22) 50%, transparent 72%);
  border-radius: 50%; filter: blur(24px); }
.art-ring {
  position: relative; z-index: 1; width: 420px; max-width: 100%; height: auto; aspect-ratio: 1 / 1; border-radius: 0;
  background: transparent !important;
  background-color: transparent !important;
}

/* ─── EPISODE SHELF / LIST ─── */
.shelf { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.shelf::-webkit-scrollbar { display: none; }
.ep-card { flex-shrink: 0; width: 220px; background: var(--slate); border-radius: 12px; border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; text-decoration: none; transition: transform .18s, border-color .18s; }
.ep-card:hover { transform: translateY(-4px); border-color: rgba(14,124,123,0.5); }
.ep-thumb { height: 124px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; position: relative; }
.t1 { background: linear-gradient(135deg, rgba(14,124,123,0.22), rgba(26,60,140,0.35)); }
.t2 { background: linear-gradient(135deg, rgba(26,60,140,0.22), rgba(27,138,90,0.35)); }
.t3 { background: linear-gradient(135deg, rgba(27,138,90,0.22), rgba(14,124,123,0.35)); }
.ep-num { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,0.5); font-size: 11px; color: rgba(255,255,255,0.45);
  padding: 2px 6px; border-radius: 3px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.ep-body { padding: 10px 12px 12px; }
.ep-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; line-height: 1.4; margin-bottom: 5px; color: var(--white); }
.ep-meta { font-size: 12px; color: var(--white); }

.episode-list-full { display: flex; flex-direction: column; gap: 18px; }
.ep-row { display: flex; gap: 18px; align-items: flex-start; padding: 22px; background: var(--slate);
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.06); }
.ep-row .ep-thumb { width: 72px; height: 72px; flex-shrink: 0; border-radius: 8px; font-size: 1.8rem; }
.ep-row .ep-info { flex: 1; min-width: 0; }
.ep-row .ep-title-lg { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.02rem; margin-bottom: 6px; color: var(--white); }
.ep-row .ep-meta-lg { font-size: 11px; color: var(--teal-vivid); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.ep-row .ep-blurb { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ─── CREATOR CARDS ─── */
.creators-row { display: flex; gap: 20px; flex-wrap: wrap; }
.creator-card { flex: 1; min-width: 220px; background: var(--slate); border-radius: 14px; border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; text-align: center; padding-bottom: 20px; }
.creator-card.featured { border-color: rgba(20,196,190,0.35); }
@media (max-width: 760px) {
  .creators-row {
    flex-direction: column;
  }
  .creator-card {
    width: 100%;
    min-width: unset;
    flex: unset;
  }
}
.creator-photo {
  height: 280px;           /* was 200px — more room for face + badge */
  position: relative;
  overflow: hidden;
  background: var(--obsidian);
}
.creator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;   /* show face, not waist */
  display: block;
}
.creator-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;            /* solid color stripe at top of each card */
  z-index: 2;
}
.creator-role { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6);
  padding: 3px 10px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.4px; text-transform: uppercase; }
.creator-card.featured .creator-role { background: rgba(20,196,190,0.9); color: var(--obsidian); border-color: transparent; }
.creator-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; text-transform: uppercase;
  letter-spacing: 0.5px; margin: 14px 0 6px; color: var(--gold); }
.creator-name .g { color: var(--gold); }
.creator-bio { font-size: 16px; color: #FFFFFF; padding: 0 16px; line-height: 1.65; }

/* Crew card photo backgrounds — individual brand gradients */
.creator-card.rishma .creator-photo { background: linear-gradient(155deg, #0E7C7B, #1B8A5A); }
.creator-card.rishma .creator-photo::before { background: linear-gradient(90deg, #0E7C7B, #14C4BE); }

.creator-card.prem .creator-photo { background: linear-gradient(155deg, #1A3C8C, #0E7C7B); }
.creator-card.prem .creator-photo::before { background: linear-gradient(90deg, #1A3C8C, #0E7C7B); }

.creator-card.raahi .creator-photo { background: linear-gradient(155deg, #1B8A5A, #F4C430); }
.creator-card.raahi .creator-photo::before { background: linear-gradient(90deg, #1B8A5A, #F4C430); }

/* Prem and Raahi role badges — match Rishma's teal treatment */
.creator-card.prem .creator-role,
.creator-card.raahi .creator-role {
  background: rgba(20, 196, 190, 0.9);
  color: var(--obsidian);
  border-color: transparent;
}

/* Revert crew photo image back to full cover — no stripe needed */
.creator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.creator-photo::before {
  display: none;          /* remove any stripe added in earlier pass */
}

@media (max-width: 760px) {
  .creator-photo {
    height: 380px;        /* was 280px — taller on mobile to show full face */
  }
  .creator-photo img {
    object-position: center top;  /* ensure face centered, not cropped */
  }
}

/* ─── ABOUT PAGE ─── */
.about-hero-inner {
  background: rgba(31, 40, 51, 0.85);
  border-radius: 16px;
  padding: 36px 40px;     /* was 48px 40px */
  text-align: center;
  max-width: 700px;
  margin: 32px auto;      /* was 48px auto */
}
.about-origin {
  max-width: 1100px;
  margin: 0 auto 28px auto;  /* was 0 auto 48px auto */
  padding: 0 40px;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.crew-section-wrap {
  padding-top: 24px;      /* tighter entry into crew section */
}

/* ─── GENERIC CONTENT BLOCKS ─── */
.prose { max-width: 720px; margin: 0 auto; font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.8; }
.prose + .prose { margin-top: 20px; }

.platform-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.platform-pill { background: var(--slate); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: 9px 18px;
  font-size: 12px; font-weight: 600; color: var(--white); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.platform-pill:hover { border-color: rgba(244,196,48,0.4); }

.embed-wrap { max-width: 720px; margin: 0 auto 40px; border-radius: 14px; overflow: hidden; }

/* ─── CONTACT FORM ─── */
.contact-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.form-field label { display: block; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: #FFFFFF; margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--slate); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 12px 14px; color: var(--white); font-family: 'Inter', sans-serif; font-size: 16px; min-height: 52px;
}
.form-field select { width: 100%; }
.form-field textarea { min-height: 160px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--teal-vivid); }
.submit-btn {
  background: var(--gold); color: var(--obsidian); font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; padding: 18px 32px; border: none;
  border-radius: 8px; cursor: pointer; margin-top: 4px;
}
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.form-status { font-size: 13px; text-align: center; min-height: 18px; }
.form-status.ok { color: #55D998; }
.form-status.err { color: #FF7A7A; }

/* ─── FOOTER ─── */
footer { background: #080A0D; border-top: 1px solid rgba(255,255,255,0.05); padding: 28px 40px 20px; margin-top: 40px; }
.footer-row { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.f-logo-mark { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 10px; }
.f-wordmark {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px;
  text-transform: uppercase; margin-bottom: 6px; color: var(--white);
}
.f-wordmark em { color: var(--gold); font-style: normal; }
.f-tagline { font-size: 14px; color: rgba(255,255,255,0.7); max-width: 200px; line-height: 1.6; }
.f-nav-label { font-size: 16px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; color: #FFFFFF; margin-bottom: 14px; }
.f-nav-list { list-style: none; }
.f-nav-list li { margin-bottom: 4px; }
.f-nav-list a { font-size: 15px; color: #FFFFFF; text-decoration: none; line-height: 1.6; }
.f-nav-list a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.f-copy { font-size: 13px; color: rgba(255,255,255,0.5); }
.f-copy em { color: var(--gold); font-style: normal; }
.f-legal { display: flex; gap: 20px; }
.f-legal a { font-size: 13px; color: #FFFFFF; text-decoration: none; }

.f-platform-logos {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0;
}
.f-platform-logos a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
  padding: 0;
  margin: 0;
}
.f-platform-logos a:hover { opacity: 1; }
.f-platform-logos img {
  width: 100px;
  height: 44px;
  object-fit: contain;
  display: block;
}

/* ─── PLATFORM BUTTONS (The Dash Clubb page) ─── */
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
  background: rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.platform-btn:hover { background: rgba(255,255,255,0.12); }
.platform-btn img { width: 20px; height: 20px; object-fit: contain; }

/* ─── PLATFORM SECTION (The Dash Clubb page hero) ─── */
.platform-section {
  margin: 16px auto 16px;    /* even top and bottom margin */
  padding: 0;
  max-width: 600px;
  text-align: center;
}
.platform-intro {
  font-size: 15px;           /* increase from 13px */
  color: rgba(255,255,255,0.6);  /* brighter than current 0.4 */
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 16px;      /* add 16px space between text and logos below */
  padding-top: 8px;          /* add 8px space between tagline above and this text */
  font-family: 'Inter', sans-serif;
}
.platform-logos-row {
  padding-top: 0;
  padding-bottom: 16px;      /* 16px space between logos and description below */
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
}
/* Space between platform section and about text below */
.platform-section + * {
  margin-top: 24px;       /* consistent gap into about text */
}
/* Space between platform section and prose below */
.section-wrap .prose:first-child {
  margin-top: 0;
}
.platform-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.platform-logo-link:hover { opacity: 0.8; }
/* Fix: logos were rendering as grey boxes — ensure images display correctly */
.platform-logo-link img {
  width: 160px;
  height: 80px;              /* fixed height — not square, natural proportions */
  object-fit: contain;
  display: block;
  background: transparent;
}
/* Remove the text label below each logo */
.platform-logo-link span {
  display: none;          /* hide "Spotify", "Apple Podcasts", "YouTube" labels */
}

.show-tagline {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-top: 6px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
@media (max-width: 900px) {
  .show-tagline { font-size: 15px; }
}

/* ─── INSTAGRAM SECTION (homepage) ─── */
.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}
/* Wider container just for the 4-post Instagram grid so embeds aren't squished on desktop */
.instagram-section-wrap {
  max-width: 1560px;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
.instagram-grid iframe {
  width: 100% !important;
  min-width: 0 !important;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .instagram-grid { grid-template-columns: 1fr; }
}

/* ─── LEGAL PAGES (Privacy Policy, Terms of Service) ─── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.legal-content h1, .legal-content h2, .legal-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  margin: 32px 0 12px;
}
.legal-content h1 { font-size: 28px; }
.legal-content h2 { font-size: 22px; }
.legal-content h3 { font-size: 18px; }
.legal-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal-content a {
  color: var(--teal-vivid);
  text-decoration: underline;
}
