/* ==========================================================================
   LIVE MUSIC BESTIES | Brand Design System
   Bold · warm · social · community-first
   Palette: pink #e53554 · coral #f15c4b · orange #f68926 · ink #1a1a1a · cream
   Type: Poppins (brand font)
   ========================================================================== */

/* 1 | DESIGN TOKENS ------------------------------------------------------- */
:root {
  /* Brand color tokens (from brand color sheet) */
  --pink:        #e53554;
  --coral:       #f15c4b;
  --orange:      #f68926;
  --ink:         #1a1a1a;
  --ink-soft:    #2a2626;
  --black:       #000000;
  --white:       #ffffff;
  --cream:       #f7f1e8;   /* warm canvas */
  --cream-deep:  #efe6d8;   /* alt band */
  --card:        #ffffff;

  /* Signature gradients */
  --grad-brand:    linear-gradient(115deg, #e53554 0%, #f15c4b 46%, #f68926 100%);
  --grad-vertical: linear-gradient(180deg, #e53554 0%, #f15c4b 46%, #f68926 100%);
  --grad-soft:     linear-gradient(180deg, #fff4ef 0%, #ffe9df 100%);

  /* Fonts | Poppins is the brand typeface */
  --font-display: 'Poppins', system-ui, 'Segoe UI', sans-serif;
  --font-body:    'Poppins', system-ui, 'Segoe UI', sans-serif;

  /* Type scale */
  --text-caption:    12px;
  --text-body-sm:    14px;
  --text-body:       16px;
  --text-subheading: 18px;
  --text-heading-sm: 22px;
  --text-heading:    clamp(26px, 2vw + 16px, 34px);
  --text-heading-lg: clamp(34px, 4vw + 16px, 56px);
  --text-display:    clamp(44px, 6vw + 18px, 82px);

  /* Spacing */
  --gutter:      clamp(16px, 3vw, 48px);
  --maxw:        1200px;
  --section-gap: clamp(56px, 7vw + 12px, 104px);

  /* Radii */
  --r-sm:  14px;
  --r-md:  22px;
  --r-lg:  32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 14px 34px -18px rgba(26,26,26,0.30);
  --shadow-lift: 0 22px 48px -20px rgba(26,26,26,0.42);
  --shadow-sticker: 3px 3px 0 var(--ink);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2 | RESET / BASE -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
strong { font-weight: 700; }

/* 3 | LAYOUT -------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: 1320px; }
.basecamp .container--wide { max-width: 1400px; }
.section { padding-block: var(--section-gap); }
.section--tight { padding-block: clamp(36px, 5vw, 64px); }

/* Surface classes */
.bg-cream   { background: var(--cream); color: var(--ink); }
.bg-cream-2 { background: var(--cream-deep); color: var(--ink); }
.bg-card    { background: var(--card); color: var(--ink); }
.bg-ink     { background: var(--ink); color: var(--cream); }
.bg-grad    { background: var(--grad-brand); color: var(--white); }

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.bg-ink .eyebrow  { color: var(--orange); }
.bg-grad .eyebrow { color: var(--ink); }
.bg-grad .eyebrow::before,
.bg-ink  .eyebrow::before { background: currentColor; }

/* Section heading block */
.section-head { max-width: 60ch; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--text-heading-lg); }
.section-head p {
  margin-top: 14px;
  font-size: var(--text-subheading);
  line-height: 1.5;
  color: rgba(26,26,26,0.66);
}
.bg-ink .section-head p { color: rgba(247,241,232,0.75); }

/* Gradient + sticker text treatments */
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sticker-text { text-shadow: var(--shadow-sticker); }

/* Sparkle accent */
.spark { color: var(--coral); display: inline-block; }

/* 4 | SKIP LINK ----------------------------------------------------------- */
.skip-link {
  position: absolute; left: 16px; top: -100px;
  background: var(--ink); color: var(--white);
  padding: 10px 18px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; z-index: 1000;
  transition: top 0.2s var(--ease); text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* 5 | HEADER / NAV -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,241,232,0.88);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.nav-pill {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 10px var(--gutter);
  min-height: 66px;
}
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 50px; width: auto; }

.nav-links { display: none; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 84px 12px auto 12px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 20px;
  display: grid; gap: 2px;
  transform: translateY(-130%); transition: transform 0.3s var(--ease);
  z-index: 99;
  box-shadow: var(--shadow-lift);
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer a {
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(26,26,26,0.1);
}
.nav-drawer a[aria-current="page"] { color: var(--pink); }
.nav-drawer .btn { margin-top: 14px; justify-self: stretch; justify-content: center; }

/* 6 | BUTTONS ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display);
  font-size: var(--text-body-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--pink);   color: var(--white); }
.btn--primary:hover { background: var(--coral); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn--orange  { background: var(--orange); color: var(--ink); }
.btn--orange:hover { filter: brightness(1.03); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn--grad    { background: var(--grad-brand); color: var(--white); }
.btn--grad:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--ink     { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn--light   { background: var(--white); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn--ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); transform: translateY(-2px); }
.btn--nav {
  background: var(--grad-brand); color: var(--white);
  padding: 11px 20px; font-size: 12px;
}
.btn--nav:hover { box-shadow: var(--shadow-card); transform: translateY(-1px); }
.btn--sm { padding: 11px 18px; font-size: 12px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Pill chip / badge */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--ink); color: var(--white);
}
.chip--grad { background: var(--grad-brand); color: var(--white); }
.chip--soon { background: var(--cream-deep); color: var(--ink); border: 1px dashed rgba(26,26,26,0.35); }

/* 7 | HERO ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 50%, rgba(246,137,38,0.28), transparent 31%),
    radial-gradient(circle at 92% 18%, rgba(229,53,84,0.32), transparent 24%),
    var(--ink);
  isolation: isolate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(26,26,26,0.98) 0%, rgba(26,26,26,0.9) 44%, rgba(26,26,26,0.15) 74%, rgba(26,26,26,0.45) 100%),
    repeating-linear-gradient(125deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 12px);
}
.hero-logo-stage {
  position: absolute; z-index: -1; right: clamp(-130px, -5vw, -32px); top: 50%;
  width: min(52vw, 690px); aspect-ratio: 1; transform: translateY(-50%);
  display: grid; place-items: center;
}
.hero-logo-stage::before {
  content: ""; position: absolute; inset: 7%; border-radius: 50%;
  background: var(--grad-brand); opacity: 0.2; filter: blur(28px);
  animation: heroPulse 4.8s ease-in-out infinite;
}
.hero-logo-stage img {
  position: relative; width: 78%; height: 78%; object-fit: contain;
  filter: drop-shadow(12px 18px 0 rgba(0,0,0,0.3));
  animation: heroFloat 5.8s ease-in-out infinite;
}
.hero-orbit { position: absolute; border: 2px dashed rgba(247,241,232,0.28); border-radius: 50%; animation: heroSpin 22s linear infinite; }
.hero-orbit--one { inset: 3%; }
.hero-orbit--two { inset: 17%; border-color: rgba(246,137,38,0.5); animation-duration: 16s; animation-direction: reverse; }
.hero-spark { position: absolute; color: var(--orange); font-size: clamp(28px, 4vw, 58px); animation: heroSpark 3.6s ease-in-out infinite; }
.hero-spark--one { top: 9%; left: 8%; }
.hero-spark--two { right: 9%; bottom: 14%; color: var(--pink); animation-delay: -1.4s; }
@keyframes heroFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-16px) rotate(2deg); } }
@keyframes heroPulse { 0%,100% { transform: scale(0.95); opacity: 0.18; } 50% { transform: scale(1.06); opacity: 0.32; } }
@keyframes heroSpin { to { transform: rotate(360deg); } }
@keyframes heroSpark { 0%,100% { transform: rotate(-8deg) scale(0.9); opacity: 0.6; } 50% { transform: rotate(9deg) scale(1.12); opacity: 1; } }
.hero-inner { width: 100%; padding-block: clamp(64px, 9vw, 112px); }
.hero-body { max-width: 650px; color: var(--white); position: relative; z-index: 1; }
.hero-body .eyebrow { color: var(--orange); }
.hero h1 {
  font-size: var(--text-display);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.hero h1 .accent { display: inline; color: var(--orange); }
.hero-lead {
  font-size: var(--text-subheading);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 46ch;
  margin-top: 20px;
}
.hero .btn-row { margin-top: 30px; }
.hero-meta {
  margin-top: 30px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.22);
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
}
.hero-meta a { color: var(--white); text-decoration: none; border-bottom: 2px solid var(--orange); padding-bottom: 2px; }
.hero-meta a:hover { color: var(--orange); }

/* Festival album entry points */
.albums-section { background: var(--cream); }
.albums-intro { max-width: 48ch; color: rgba(26,26,26,0.64); }
.album-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.album-card {
  position: relative; min-height: clamp(360px, 58vw, 500px); border-radius: var(--r-lg);
  overflow: hidden; color: var(--white); text-decoration: none; box-shadow: var(--shadow-card);
  isolation: isolate; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.album-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.album-card picture, .album-card picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.album-card picture img { object-fit: cover; object-position: center 30%; transition: transform 0.7s var(--ease); }
.album-card:hover picture img { transform: scale(1.045); }
.album-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,26,26,0.05) 18%, rgba(26,26,26,0.88) 100%); }
.album-card__content { position: absolute; inset: auto 0 0; padding: clamp(24px, 4vw, 38px); display: grid; justify-items: start; gap: 10px; }
.album-card__kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }
.album-card__content strong { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); line-height: 1; }
.album-card__cta {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 6px; padding: 12px 20px;
  border-radius: var(--r-pill); background: var(--white); color: var(--ink);
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.album-card__cta span { transition: transform 0.2s var(--ease); }
.album-card:hover .album-card__cta span { transform: translateX(4px); }

/* Simple sub-page hero (about/contact/gallery) */
.pagehead { padding-block: clamp(48px, 6vw, 92px) clamp(32px, 4vw, 52px); }
.pagehead h1 { font-size: var(--text-display); line-height: 0.98; letter-spacing: -0.02em; max-width: 16ch; }
.pagehead .accent { color: var(--orange); }
.pagehead p { max-width: 52ch; margin-top: 16px; font-size: var(--text-subheading); line-height: 1.5; color: rgba(247,241,232,0.72); }

/* 8 | SECTION TITLE ROW (with "view all" link) --------------------------- */
.row-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: clamp(22px, 3vw, 34px);
}
.row-head h2 { font-size: var(--text-heading-lg); }
.link-arrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.link-arrow:hover { color: var(--orange); }
.link-arrow span { transition: transform 0.2s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }
.bg-grad .link-arrow, .bg-ink .link-arrow { color: var(--white); }

/* 9 | CAROUSEL + FESTIVAL CARDS ------------------------------------------ */
.carousel { position: relative; }
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; }

.fest-card {
  background: var(--card);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26,26,26,0.06);
  display: flex; flex-direction: column;
  color: var(--ink); text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.fest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.fest-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.fest-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.fest-card:hover .fest-card__media img { transform: scale(1.05); }
.fest-card__media.fest-logo { display: grid; place-items: center; padding: clamp(20px, 3vw, 34px); }
.fest-card__media.fest-logo img { width: 100%; height: 100%; object-fit: contain; }
.fest-card:hover .fest-card__media.fest-logo img { transform: scale(1.04); }
.fest-logo--dark { background: var(--ink); }
.fest-logo--light { background: var(--cream); }
.fest-card__body { padding: 18px 18px 22px; text-align: center; }
.fest-card__title { font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.12; }
.fest-card__meta { margin-top: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pink); }
.fest-card__date { margin-top: 3px; font-size: 12px; color: rgba(26,26,26,0.55); }

.carousel-nav { display: flex; gap: 10px; justify-content: center; margin-top: 22px; }
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--ink); background: var(--cream);
  color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; transition: 0.18s var(--ease);
}
.carousel-btn:hover { background: var(--ink); color: var(--white); }
.carousel-tagline { text-align: center; margin-top: 22px; font-weight: 600; color: rgba(26,26,26,0.6); }
.carousel-tagline .spark { margin: 0 8px; }

/* 10 | BASECAMP BAND ------------------------------------------------------ */
.basecamp { background: var(--grad-brand); color: var(--white); }
.basecamp-grid { display: grid; gap: clamp(28px, 4vw, 48px); align-items: center; }
.basecamp-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: transparent;
}
.basecamp-media video, .basecamp-media img { width: 100%; height: auto; display: block; }
.basecamp-copy h2 { font-size: var(--text-heading-lg); }
.basecamp-copy p { margin-top: 14px; font-size: var(--text-subheading); line-height: 1.55; color: rgba(255,255,255,0.9); max-width: 44ch; }
.basecamp-copy .btn-row { margin-top: 24px; }

/* Session cards */
.session-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  margin-top: clamp(28px, 4vw, 40px);
}
.session-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-md);
  overflow: hidden; text-decoration: none; color: var(--white);
  transition: 0.2s var(--ease);
}
.session-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.session-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  border: clamp(5px, 0.65vw, 9px) solid #111;
}
.session-thumb img { width: 100%; height: 100%; object-fit: cover; }
.session-thumb--branded::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(17,17,17,0.16), rgba(17,17,17,0.03) 42%, rgba(17,17,17,0.2));
}
.session-thumb .session-brandmark {
  position: absolute;
  z-index: 2;
  top: clamp(7px, 0.85vw, 12px);
  left: clamp(7px, 0.85vw, 12px);
  width: clamp(38px, 4.6vw, 64px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(1px 2px 0 rgba(255,255,255,0.35));
}
.session-label,
.session-artist,
.session-song {
  position: absolute;
  z-index: 2;
  left: 50%;
  width: calc(100% - 16px);
  text-align: center;
  text-shadow: 0 2px 5px rgba(0,0,0,0.8);
  white-space: nowrap;
}
.session-label {
  top: 34%;
  transform: translate(-50%, -50%);
  font-size: clamp(10px, 1.35vw, 19px);
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}
.session-artist {
  top: 51%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(21px, 3.15vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}
.session-artist--wide {
  max-width: 98%;
  font-size: clamp(20px, 2.6vw, 44px);
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.session-artist--long {
  max-width: 98%;
  font-size: clamp(16px, 2vw, 34px);
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.session-artist--xlong {
  max-width: 98%;
  font-size: clamp(13px, 1.85vw, 23px);
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.session-song {
  top: 70%;
  transform: translate(-50%, -50%);
  font-size: clamp(10px, 1.45vw, 20px);
  font-style: italic;
  font-weight: 800;
  line-height: 1.05;
}
.session-song--long { font-size: clamp(9px, 1.1vw, 16px); }
.session-thumb::after {
  content: none;
}
.session-card__body { padding: 12px 14px 16px; }
.session-card__title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.session-card__sub { margin-top: 4px; font-size: 12px; color: rgba(255,255,255,0.72); }

/* 11 | BESTIE SHOWS POSTERS ---------------------------------------------- */
.poster-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.poster {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26,26,26,0.06);
  background: var(--ink);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  aspect-ratio: 4/5;
}
.poster:hover { transform: translateY(-4px) rotate(-0.6deg); box-shadow: var(--shadow-lift); }
.poster img { width: 100%; height: 100%; object-fit: cover; }

/* 12 | SPLIT VALUE / STORY ----------------------------------------------- */
.split { display: grid; gap: clamp(26px, 4vw, 52px); align-items: center; }
.figure-round {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.figure-round img { width: 100%; height: 100%; object-fit: cover; }
.duo-figs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.duo-figs .figure-round img { aspect-ratio: 4/5; }
.duo-figs .figure-round:first-child { margin-top: clamp(16px, 4vw, 40px); }
.lead-quote { font-size: clamp(28px, 3vw + 14px, 48px); line-height: 1.05; }
.lead-quote .mark { color: var(--pink); }
.bg-ink .lead-quote .mark { color: var(--orange); }
.prose { max-width: 60ch; }
.prose p { line-height: 1.7; }
.prose p + p { margin-top: 14px; }
.bg-ink .prose { color: rgba(247,241,232,0.85); }

/* Value cards (who it's for / why) */
.value-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.value-card {
  background: var(--card);
  border-radius: var(--r-md);
  padding: 26px 24px;
  border: 1px solid rgba(26,26,26,0.07);
  box-shadow: var(--shadow-card);
}
.bg-ink .value-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); box-shadow: none; }
.value-card__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-brand); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.value-card h3 { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; }
.value-card p { margin-top: 8px; font-size: var(--text-body-sm); line-height: 1.6; color: rgba(26,26,26,0.66); }
.bg-ink .value-card p { color: rgba(247,241,232,0.75); }

/* 13 | TRACKLIST (kept, restyled) ---------------------------------------- */
.tracklist { display: grid; border-top: 2px solid currentColor; }
.track {
  display: grid; grid-template-columns: 54px 1fr; gap: 6px 16px;
  align-items: baseline; padding: 20px 6px;
  border-bottom: 1px solid rgba(26,26,26,0.16);
  transition: padding-left 0.22s var(--ease), background 0.22s var(--ease);
}
.bg-ink .track { border-bottom-color: rgba(247,241,232,0.18); }
.track:hover { padding-left: 14px; background: rgba(229,53,84,0.06); }
.bg-ink .track:hover { background: rgba(246,137,38,0.12); }
.track-no { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--pink); }
.bg-ink .track-no { color: var(--orange); }
.track-title { font-family: var(--font-display); font-weight: 800; font-size: var(--text-heading-sm); text-transform: uppercase; letter-spacing: 0; line-height: 1.15; }
.track-desc { grid-column: 2; font-size: var(--text-body-sm); line-height: 1.6; color: rgba(26,26,26,0.62); margin-top: 3px; }
.bg-ink .track-desc { color: rgba(247,241,232,0.7); }

/* 14 | SHOP / ESSENTIALS TEASER ------------------------------------------ */
.teaser-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.teaser {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(26,26,26,0.07);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.teaser h3 { font-size: var(--text-heading); text-transform: uppercase; }
.teaser p { margin-top: 8px; color: rgba(26,26,26,0.62); }
.teaser .btn { margin-top: 20px; }
.teaser-art {
  height: 120px; margin: 8px auto 18px; max-width: 320px;
  border-radius: var(--r-md);
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
}
.teaser-art img { height: 74px; width: auto; opacity: 0.9; }

/* 15 | PARTNER ------------------------------------------------------------ */
.partner-card {
  background: var(--ink); color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 56px);
  display: grid; gap: clamp(24px, 3vw, 44px);
  align-items: center;
  position: relative; overflow: hidden;
}
.partner-card::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: var(--grad-brand); opacity: 0.24; filter: blur(10px);
}
.partner-card h2 { font-size: var(--text-heading-lg); position: relative; }
.partner-card p { margin-top: 12px; color: rgba(247,241,232,0.8); max-width: 46ch; position: relative; }
.partner-card .btn-row { margin-top: 22px; position: relative; }

/* 16 | JOIN CTA + circular badge ----------------------------------------- */
.join { background: var(--grad-brand); color: var(--white); position: relative; overflow: hidden; }
.join-grid { display: grid; gap: clamp(26px, 4vw, 44px); align-items: center; }
.join h2 { font-size: var(--text-heading-lg); }
.join > .container > .join-grid > .join-copy p { margin-top: 12px; font-size: var(--text-subheading); line-height: 1.5; color: rgba(255,255,255,0.9); max-width: 42ch; }

.signup { display: grid; gap: 10px; max-width: 460px; }
.signup .field { display: flex; flex-direction: column; gap: 6px; }
.signup label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.signup input {
  font-family: var(--font-body); font-size: var(--text-body);
  padding: 14px 20px; border: 2px solid transparent; border-radius: var(--r-pill);
  background: var(--white); color: var(--ink);
}
.signup input::placeholder { color: rgba(26,26,26,0.45); }
.signup input:focus-visible { outline: none; border-color: var(--ink); }
.signup .btn { margin-top: 4px; }
.form-note { font-size: 12px; color: rgba(255,255,255,0.8); }
.form-error { font-size: var(--text-body-sm); min-height: 1em; font-weight: 600; color: var(--ink); }
.hp { position: absolute; left: -9999px; }

.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.social-row a {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  color: var(--white); border: 2px solid rgba(255,255,255,0.6);
  padding: 9px 16px; border-radius: var(--r-pill); transition: 0.18s var(--ease);
}
.social-row a:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.bg-ink .social-row a { color: var(--cream); border-color: rgba(247,241,232,0.4); }
.bg-ink .social-row a:hover { background: var(--cream); color: var(--ink); }

/* Circular "curated with love" badge */
.badge-round { display: none; }
.badge-round svg { width: 150px; height: 150px; animation: spin 22s linear infinite; }
.badge-round .badge-heart {
  position: absolute; inset: 0; margin: auto;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); color: var(--pink);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.badge-round { position: relative; width: 150px; height: 150px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .badge-round svg { animation: none; } }

/* 17 | FOOTER ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--cream); padding-block: clamp(44px, 5vw, 72px) 28px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.footer-brand img { height: 78px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: rgba(247,241,232,0.6); max-width: 34ch; font-size: var(--text-body-sm); line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(247,241,232,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream); text-decoration: none; transition: 0.18s var(--ease);
}
.footer-social a:hover { background: var(--grad-brand); border-color: transparent; color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: rgba(247,241,232,0.8); text-decoration: none; font-size: var(--text-body-sm); transition: color 0.18s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 42px; padding-top: 20px;
  border-top: 1px solid rgba(247,241,232,0.15);
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  font-size: 12px; color: rgba(247,241,232,0.45);
}

/* 18 | GALLERY + LIGHTBOX ------------------------------------------------- */
.gallery { display: grid; gap: clamp(8px, 1vw, 12px); grid-template-columns: 1fr 1fr; }
.gphoto {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background: var(--ink); aspect-ratio: 1/1; box-shadow: var(--shadow-card);
}
.gphoto button.gtrigger { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.gphoto picture { display: block; width: 100%; height: 100%; }
.gphoto img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transition: transform 0.5s var(--ease); }
.gphoto:hover img { transform: scale(1.05); }
.gphoto figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white);
  padding: 30px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(26,26,26,0.8));
  opacity: 0; transition: opacity 0.25s var(--ease); pointer-events: none;
}
.gphoto:hover figcaption, .gphoto:focus-within figcaption { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(26,26,26,0.94); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(94vw, 1100px); max-height: 86vh; width: auto; height: auto; border-radius: var(--r-md); }
.lightbox-cap { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,241,232,0.6); padding-inline: 16px; }
.lightbox-close { position: absolute; top: 16px; right: 16px; width: 46px; height: 46px; border-radius: 50%; border: 2px solid rgba(247,241,232,0.4); background: rgba(26,26,26,0.5); color: var(--cream); font-size: 22px; cursor: pointer; line-height: 1; }
.lightbox-close:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }

/* 19 | MOTION + A11Y ------------------------------------------------------ */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
a:focus-visible, button:focus-visible, input:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* 20 | RESPONSIVE --------------------------------------------------------- */
@media (min-width: 560px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .album-grid { grid-template-columns: 1fr 1fr; }
  .session-grid { grid-template-columns: 1fr; }
  .carousel-track { grid-auto-columns: 46%; }
}
@media (min-width: 700px) {
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .poster-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .badge-round { display: inline-block; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-drawer { display: none !important; }
  .nav-links { display: flex; align-items: center; gap: 18px; }
  .nav-links a {
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
    text-decoration: none; padding: 4px 0; position: relative;
  }
  .nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 2px; background: var(--grad-brand); transition: right 0.25s var(--ease); }
  .nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
  .nav-links a[aria-current="page"] { color: var(--pink); }

  .carousel-track { grid-auto-columns: 30%; }
  .session-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .story-2col { grid-template-columns: 1.1fr 0.9fr; }
  .basecamp-grid { grid-template-columns: 0.95fr 1.05fr; }
  .basecamp-story { grid-template-columns: minmax(240px, 300px) 1fr; }
  .join-grid { grid-template-columns: 1fr 1fr; }
  .partner-card { grid-template-columns: 1.3fr 0.7fr; }
}
@media (min-width: 1100px) {
  .nav-links { gap: 24px; }
  .carousel-track { grid-auto-columns: 22.5%; }
}

@media (max-width: 899px) {
  .hero { min-height: 760px; align-items: flex-start; }
  .hero-inner { padding-top: 70px; padding-bottom: 310px; }
  .hero-logo-stage { width: min(96vw, 520px); right: -92px; top: auto; bottom: -120px; transform: none; opacity: 0.82; }
  .hero::after { background: linear-gradient(180deg, rgba(26,26,26,0.98) 0%, rgba(26,26,26,0.84) 53%, rgba(26,26,26,0.22) 100%); }
}

/* 21 | LIGHT EDITORIAL FESTIVAL-POSTER REFRESH -------------------------- */
:root {
  --cream: #fff8ed;
  --cream-deep: #f3eadc;
  --card: #fffdf8;
  --lavender: #aaa4d6;
  --lavender-soft: #e8e4f4;
  --lavender-deep: #77719e;
  --gold: #d99b25;

  /* Batch 1 | charcoal primary neutral + supporting neutrals */
  --charcoal:       #343238;   /* primary dark neutral */
  --charcoal-soft:  #423f49;   /* lifted charcoal for cards/hover on dark */
  --warm-white:     #faf8f4;   /* type + surfaces on charcoal */
  --smoky-lavender: #d8d2e6;
  --periwinkle:     #c9cce8;
  --blue-gray:      #c8d4da;
  --sage:           #cdd6c5;
  --blush:          #d8cdd2;
  --cool-gray:      #d8d9dc;
  --line: rgba(26,26,26,0.24);
  --shadow-card: 0 12px 28px -22px rgba(26,26,26,0.36);
  --shadow-lift: 0 22px 42px -26px rgba(26,26,26,0.42);
}

body {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(229,53,84,0.035) 0 1px, transparent 1.5px),
    radial-gradient(circle at 76% 64%, rgba(246,137,38,0.035) 0 1px, transparent 1.5px);
  background-size: 9px 9px, 11px 11px;
}

.section, .section--tight, .pagehead { border-bottom: 1px solid rgba(217,155,37,0.32); }
.bg-cream { background: rgba(255,248,237,0.94); }
.bg-cream-2 { background: rgba(243,234,220,0.84); }
.bg-card { background: rgba(255,253,248,0.94); }
.bg-ink { background: var(--lavender-soft); color: var(--ink); }
.bg-grad { background: var(--cream-deep); color: var(--ink); }

.bg-ink .eyebrow, .bg-grad .eyebrow { color: var(--pink); }
.bg-ink .section-head p,
.bg-ink .prose,
.bg-ink .track-desc,
.bg-ink .value-card p { color: rgba(26,26,26,0.72); }
.bg-ink .lead-quote .mark { color: var(--pink); }

.site-header {
  background: rgba(255,248,237,0.92);
  border-bottom: 1px solid rgba(26,26,26,0.2);
}
.nav-drawer { background: var(--cream); border: 1px solid var(--ink); box-shadow: 7px 8px 0 rgba(170,164,214,0.42); }

.btn { box-shadow: none; }
.btn--primary, .btn--grad, .btn--nav { background: var(--pink); color: var(--white); }
.btn--primary:hover, .btn--grad:hover, .btn--nav:hover { background: var(--coral); }
.btn--orange { background: var(--orange); color: var(--ink); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--outline { border-width: 1px; background: rgba(255,253,248,0.48); }
.btn--ghost-light { color: var(--ink); border-color: rgba(26,26,26,0.5); }
.btn--ghost-light:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.hero {
  min-height: min(84vh, 740px);
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(59vw, 790px);
  aspect-ratio: 1;
  right: clamp(-165px, -7vw, -55px);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50% 50% 6% 6%;
  background: var(--lavender);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(229,53,84,0.08);
}
.hero::after {
  z-index: -3;
  background:
    radial-gradient(circle at 75% 63%, rgba(246,137,38,0.2) 0 9%, transparent 9.5%),
    repeating-conic-gradient(from 8deg at 75% 63%, rgba(217,155,37,0.28) 0deg 1deg, transparent 1deg 8deg),
    linear-gradient(90deg, rgba(255,248,237,0.98) 0%, rgba(255,248,237,0.94) 47%, rgba(255,248,237,0.08) 72%);
}
.hero-logo-stage { z-index: -1; }
.hero-logo-stage::before {
  inset: 10%;
  background: rgba(255,248,237,0.42);
  border: 1px solid rgba(26,26,26,0.18);
  filter: none;
}
.hero-logo-stage::after {
  content: "";
  position: absolute;
  inset: 24%;
  border: 1px solid rgba(217,155,37,0.6);
  border-radius: 50%;
}
.hero-logo-stage img { filter: drop-shadow(7px 9px 0 rgba(255,248,237,0.7)); }
.hero-orbit { border-color: rgba(26,26,26,0.24); }
.hero-orbit--two { border-color: rgba(229,53,84,0.54); }
.hero-spark--one { color: var(--pink); }
.hero-spark--two { color: var(--orange); }
.hero-body { color: var(--ink); }
.hero-body .eyebrow { color: var(--pink); }
.hero h1 .accent { color: var(--pink); }
.hero-lead { color: rgba(26,26,26,0.75); }
.hero-meta { color: rgba(26,26,26,0.56); border-top-color: rgba(26,26,26,0.22); }
.hero-meta a { color: var(--ink); border-bottom-color: var(--pink); }
.hero-meta a:hover { color: var(--pink); }

.albums-section {
  background:
    linear-gradient(90deg, rgba(229,53,84,0.035), transparent 32%),
    var(--cream);
}
.album-card { border: 1px solid rgba(26,26,26,0.34); box-shadow: 7px 8px 0 rgba(170,164,214,0.34); }
.album-card:hover { box-shadow: 9px 11px 0 rgba(170,164,214,0.48); }
.album-card__shade { background: linear-gradient(180deg, transparent 44%, rgba(26,26,26,0.38) 72%, rgba(26,26,26,0.58) 100%); }
.album-card__content {
  inset: auto clamp(14px, 2.2vw, 24px) clamp(14px, 2.2vw, 24px);
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255,248,237,0.96);
  color: var(--ink);
  border: 1px solid rgba(26,26,26,0.3);
  border-radius: var(--r-md);
}
.album-card__kicker { color: var(--pink); }
.album-card__cta { background: var(--pink); color: var(--white); }

.pagehead {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 50%, rgba(246,137,38,0.26) 0 8%, transparent 8.5%),
    repeating-conic-gradient(from 0deg at 82% 50%, rgba(217,155,37,0.18) 0deg 1deg, transparent 1deg 9deg),
    var(--lavender-soft);
  color: var(--ink);
}
.pagehead p { color: rgba(26,26,26,0.72); }
.pagehead .accent { color: var(--pink); }

.fest-card {
  border: 1px solid rgba(26,26,26,0.3);
  box-shadow: 5px 6px 0 rgba(246,137,38,0.12);
}
.fest-card:hover { box-shadow: 7px 8px 0 rgba(246,137,38,0.2); }
.fest-logo--light { background: var(--cream); }
.carousel-btn { border-width: 1px; background: var(--card); }

.basecamp {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--lavender-soft);
  color: var(--ink);
  border-block: 1px solid rgba(26,26,26,0.28);
}
.basecamp::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 540px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(255,248,237,0.38);
}
.basecamp-media { background: var(--cream); border: 1px solid rgba(26,26,26,0.26); box-shadow: 8px 9px 0 rgba(229,53,84,0.16); }
.basecamp-copy .eyebrow { color: var(--pink); }
.basecamp-copy p { color: rgba(26,26,26,0.74); }
.basecamp .btn--light { background: var(--pink); color: var(--white); }
.session-card {
  background: var(--card);
  border: 1px solid rgba(26,26,26,0.3);
  color: var(--ink);
  box-shadow: 4px 5px 0 rgba(246,137,38,0.16);
}
.session-card:hover { background: var(--cream); box-shadow: 6px 7px 0 rgba(246,137,38,0.24); }
.session-card__sub { color: rgba(26,26,26,0.62); }

/* Basecamp — story so far */
.basecamp-story {
  margin-top: clamp(34px, 4.5vw, 52px);
  display: grid;
  gap: clamp(24px, 3.4vw, 40px);
  align-items: center;
}
.basecamp-story__content {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
  align-content: center;
}
.basecamp-story__media {
  margin: 0 auto;
  width: 100%;
  max-width: 290px;
  aspect-ratio: 1080 / 1640;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(26,26,26,0.26);
  box-shadow: 8px 9px 0 rgba(229,53,84,0.16);
}
.basecamp-story__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.basecamp-story__head { max-width: 64ch; }
.basecamp-story__head h3 {
  margin-top: 8px;
  font-size: var(--text-heading);
  line-height: 1.15;
}
.basecamp-story__head p {
  margin-top: 12px;
  font-size: var(--text-subheading);
  line-height: 1.55;
  color: rgba(26,26,26,0.74);
  max-width: 64ch;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat {
  background: var(--card);
  border: 1px solid rgba(26,26,26,0.3);
  border-radius: var(--r-md);
  box-shadow: 4px 5px 0 rgba(246,137,38,0.16);
  padding: clamp(20px, 2.6vw, 30px) clamp(14px, 2vw, 22px);
  text-align: center;
  transition: 0.2s var(--ease);
}
.stat:hover { background: var(--cream); box-shadow: 6px 7px 0 rgba(246,137,38,0.24); transform: translateY(-3px); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-heading-lg);
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  font-size: var(--text-body-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.68);
}

.poster, .figure-round, .gphoto { border: 1px solid rgba(26,26,26,0.3); box-shadow: 5px 6px 0 rgba(170,164,214,0.25); }
.value-card, .teaser {
  border: 1px solid rgba(26,26,26,0.26);
  box-shadow: 4px 5px 0 rgba(170,164,214,0.18);
}
.value-card__icon {
  border-radius: 50%;
  background: var(--cream);
  color: var(--pink);
  border: 1px solid var(--gold);
}
.bg-ink .value-card { background: rgba(255,253,248,0.68); border-color: rgba(26,26,26,0.22); box-shadow: 4px 5px 0 rgba(229,53,84,0.12); }
.bg-ink .track { border-bottom-color: rgba(26,26,26,0.2); }
.bg-ink .track:hover { background: rgba(255,248,237,0.48); }
.bg-ink .track-no { color: var(--pink); }

.partner-card {
  background: var(--lavender-soft);
  color: var(--ink);
  border: 1px solid rgba(26,26,26,0.3);
  box-shadow: 8px 9px 0 rgba(246,137,38,0.18);
}
.partner-card::before {
  background:
    radial-gradient(circle, var(--orange) 0 13%, transparent 14%),
    repeating-conic-gradient(from 0deg, rgba(229,53,84,0.36) 0deg 2deg, transparent 2deg 12deg);
  opacity: 0.42;
  filter: none;
}
.partner-card p { color: rgba(26,26,26,0.72); }

.join {
  background:
    radial-gradient(circle at 90% 14%, rgba(229,53,84,0.18) 0 7%, transparent 7.5%),
    var(--cream-deep);
  color: var(--ink);
  border-block: 1px solid rgba(26,26,26,0.28);
}
.join .eyebrow { color: var(--pink); }
.join > .container > .join-grid > .join-copy p { color: rgba(26,26,26,0.72); }
.signup label { color: var(--ink); }
.signup input { border-color: rgba(26,26,26,0.26); background: var(--card); }
.form-note { color: rgba(26,26,26,0.62); }
.social-row a { color: var(--ink); border-color: rgba(26,26,26,0.45); }
.social-row a:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }
.join .btn--ghost-light { color: var(--ink); border-color: rgba(26,26,26,0.5); }

.site-footer { background: var(--lavender-deep); color: var(--white); border-top: 1px solid var(--ink); }
.footer-brand p { color: rgba(255,255,255,0.78); }
.footer-col h3 { color: #ffd89b; }
.footer-col a { color: rgba(255,255,255,0.88); }
.footer-col a:hover { color: #ffd89b; }
.footer-social a { color: var(--white); border-color: rgba(255,255,255,0.52); }
.footer-bottom { color: rgba(255,255,255,0.68); border-top-color: rgba(255,255,255,0.26); }

@media (max-width: 899px) {
  .hero { min-height: 760px; }
  .hero-inner { padding-top: 64px; padding-bottom: 310px; }
  .hero::before {
    width: min(112vw, 590px);
    right: -170px;
    top: auto;
    bottom: -175px;
    transform: none;
  }
  .hero::after {
    background:
      radial-gradient(circle at 70% 84%, rgba(246,137,38,0.2) 0 8%, transparent 8.5%),
      repeating-conic-gradient(from 8deg at 70% 84%, rgba(217,155,37,0.22) 0deg 1deg, transparent 1deg 9deg),
      linear-gradient(180deg, rgba(255,248,237,0.99) 0%, rgba(255,248,237,0.92) 58%, rgba(255,248,237,0.08) 100%);
  }
  .hero-logo-stage { opacity: 1; }
}


/* 22 | BATCH 1 — CHARCOAL PRIMARY NEUTRAL + REBALANCED SURFACES ----------
   Section 21 (the "light editorial" pass) had flattened every dark section
   to cream/lavender, which read as beige-on-beige. This block restores
   charcoal (#343238) as the primary dark anchor and adds a set of
   supporting-neutral light surfaces so the page alternates instead of
   repeating one cream. Pink/orange remain the brand accents. Reversible:
   delete this block + the Batch-1 tokens to return to the section-21 look. */

/* --- Dark anchors: .bg-ink now renders as charcoal --- */
.bg-ink { background: var(--charcoal); color: var(--warm-white); }
.bg-ink .eyebrow { color: var(--orange); }
.bg-ink .section-head p,
.bg-ink .prose,
.bg-ink .prose p,
.bg-ink .track-desc { color: rgba(250,248,244,0.82); }
.bg-ink .lead-quote .mark { color: var(--pink); }
.bg-ink:not(.pagehead) a { color: var(--warm-white); }

/* Cards / list rows sitting on charcoal */
.bg-ink .value-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(250,248,244,0.20);
  box-shadow: none;
  color: var(--warm-white);
}
.bg-ink .value-card p { color: rgba(250,248,244,0.78); }
.bg-ink .value-card h3 { color: var(--warm-white); }
.bg-ink .value-card__icon {
  background: rgba(255,255,255,0.08);
  border-color: var(--orange);
  color: var(--warm-white);
}
.bg-ink .track { border-bottom-color: rgba(250,248,244,0.18); }
.bg-ink .track:hover { background: rgba(255,255,255,0.05); }
.bg-ink .track-no { color: var(--orange); }
.bg-ink:not(.pagehead) .btn--ghost-light { color: var(--warm-white); border-color: rgba(250,248,244,0.6); }
.bg-ink:not(.pagehead) .btn--ghost-light:hover { background: var(--warm-white); color: var(--charcoal); border-color: var(--warm-white); }
.bg-ink .duo-figs .figure-round,
.bg-ink .figure-round { box-shadow: 6px 7px 0 rgba(0,0,0,0.35); border-color: rgba(250,248,244,0.28); }

/* --- Supporting-neutral light surfaces --- */
.bg-smoky    { background: var(--smoky-lavender); color: var(--ink); }
.bg-peri     { background: var(--periwinkle);     color: var(--ink); }
.bg-bluegray { background: var(--blue-gray);      color: var(--ink); }
.bg-sage     { background: var(--sage);           color: var(--ink); }
.bg-blush    { background: var(--blush);          color: var(--ink); }
.bg-coolgray { background: var(--cool-gray);      color: var(--ink); }
.bg-warm     { background: var(--warm-white);     color: var(--ink); }

/* Keep interior page headers on their designed light poster treatment
   (charcoal is reserved for content sections, not the .pagehead banners). */
.bg-ink.pagehead {
  background:
    radial-gradient(circle at 82% 50%, rgba(246,137,38,0.26) 0 8%, transparent 8.5%),
    repeating-conic-gradient(from 0deg at 82% 50%, rgba(217,155,37,0.18) 0deg 1deg, transparent 1deg 9deg),
    var(--lavender-soft);
  color: var(--ink);
}
.bg-ink.pagehead .eyebrow { color: var(--pink); }
.bg-ink.pagehead p { color: rgba(26,26,26,0.72); }
.bg-ink.pagehead a { color: var(--ink); }

/* 23 | BATCH 2 — BELONGING-LED HERO (founder photo + supporting logo) -----
   Replaces the oversized decorative bouncing logo with a founder photo as
   the lead image; the logo is retained as a small animated badge that
   supports the photo instead of covering it. Reduced-motion is handled by
   the global media query in section 20. Reversible: delete this block. */
.hero { min-height: auto; }
.hero::before, .hero::after { display: none; }   /* drop the big logo blob + rays */

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4.5vw, 52px);
  align-items: center;
  padding-block: clamp(44px, 7vw, 92px) !important;   /* cancel the old 310px logo reserve */
}
.hero-body { max-width: 640px; }

.hero-photo { position: relative; margin: 0; }
.hero-photo > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 22%;   /* bias toward the top so all faces show */
  border-radius: var(--r-lg);
  border: 1px solid rgba(26,26,26,0.28);
  box-shadow: 10px 12px 0 rgba(170,164,214,0.42);
}
.hero-photo > .hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;   /* keep the video horizontal — no tall crop */
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-lg);
  border: 1px solid rgba(26,26,26,0.28);
  box-shadow: 10px 12px 0 rgba(170,164,214,0.42);
  background: #1a1a1a;
}
.hero-badge {
  position: absolute;
  left: clamp(-8px, -1vw, -4px);
  bottom: clamp(-16px, -1.8vw, -10px);
  width: clamp(78px, 11vw, 116px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--warm-white);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.hero-badge img {
  width: 78%; height: 78%;
  object-fit: contain;
  animation: heroFloat 5.8s ease-in-out infinite;
}
@media (min-width: 860px) {
  .hero-inner { grid-template-columns: 1.02fr 0.98fr; }
  .hero-photo > img { aspect-ratio: 5 / 4; }
  .hero-photo > .hero-video { aspect-ratio: 16 / 9; }
}

/* 24 | BATCH 3 — 3 featured sessions + scrollable festival albums --------
   Basecamp now shows three featured sessions with a "See the Rest" button;
   the festival albums are a horizontal scroll-snap carousel. Reversible. */

/* Three featured session cards in one clean row on desktop */
.basecamp-more { justify-content: center; margin-top: clamp(24px, 3vw, 38px); }
@media (min-width: 760px) {
  .session-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Festival-album carousel: give album cards a comfortable card width */
.album-track { grid-auto-columns: 82%; }
@media (min-width: 620px) { .album-track { grid-auto-columns: 48%; } }
@media (min-width: 960px) { .album-track { grid-auto-columns: 32%; } }
.album-track .album-card { min-height: clamp(340px, 42vw, 460px); }

/* "More coming" placeholder card */
.album-card--soon { border: 1px dashed rgba(26,26,26,0.5); }
.album-card--soon picture img { filter: grayscale(0.35) saturate(0.85); opacity: 0.85; }
.album-card--soon .album-card__kicker { color: var(--warm-white); }
.album-card__note { font-size: 13px; line-height: 1.4; color: rgba(255,255,255,0.9); max-width: 26ch; }

/* 25 | BATCH 4 — ABOUT HERO WITH FOUNDER PHOTO ---------------------------
   The About page header becomes a two-column banner: founders' origin copy
   on the left, a founder-trio photo on the right. Reversible. */
.pagehead-photo { margin: 26px 0 0; }
.pagehead-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--r-lg);
  border: 1px solid rgba(26,26,26,0.28);
  box-shadow: 10px 12px 0 rgba(170,164,214,0.42);
}
.pagehead--about .pagehead-copy h1 { max-width: 18ch; }
@media (min-width: 860px) {
  .pagehead--about .pagehead-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
  }
  .pagehead--about .pagehead-photo { margin: 0; }
}

/* 26 | BATCH 5 — "What we're about" clickable pathways --------------------
   The three value cards become links with a clear call-to-action cue and a
   distinct color accent each. Reversible. */
a.value-card--link { display: block; text-decoration: none; color: inherit; cursor: pointer; }
a.value-card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.value-card--link { position: relative; border-top: 4px solid var(--pink); }
.value-grid > .value-card--link:nth-child(2) { border-top-color: var(--orange); }
.value-grid > .value-card--link:nth-child(3) { border-top-color: var(--lavender); }
.value-card__go {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--pink);
}
.value-card__go span { transition: transform 0.2s var(--ease); }
a.value-card--link:hover .value-card__go span { transform: translateX(4px); }

/* 27 | BATCH 6 — FINAL CTA -------------------------------------------------
   High-impact closing banner: charcoal ground, warm-white type, hot-pink
   accent, orange primary button, restrained music/community graphic. */
.final-cta {
  background: var(--charcoal);
  color: var(--warm-white);
  padding-block: clamp(52px, 7vw, 104px);
  border-block: 1px solid rgba(0,0,0,0.35);
}
.final-cta__grid { display: grid; gap: clamp(30px, 4vw, 60px); align-items: center; }
.final-cta .eyebrow { color: var(--orange); }
.final-cta h2 { font-size: var(--text-heading-lg); line-height: 1.03; letter-spacing: -0.01em; }
.final-cta h2 .mark { color: var(--pink); }
.final-cta__copy > p {
  margin-top: 16px; font-size: var(--text-subheading); line-height: 1.55;
  color: rgba(250,248,244,0.82); max-width: 48ch;
}
.final-cta .btn-row { margin-top: 26px; }
.final-cta__art { justify-self: center; width: min(100%, 360px); }
.final-cta__art svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35)); }
.final-cta__art img { width: 100%; height: auto; display: block; border-radius: var(--r-lg); object-fit: cover; box-shadow: 0 18px 30px rgba(0,0,0,0.35); border: 1px solid rgba(250,248,244,0.14); }
@media (min-width: 860px) {
  .final-cta__grid { grid-template-columns: 1.05fr 0.95fr; }
  .final-cta__art { justify-self: end; }
}

/* Batch 6 addendum — logo beside the final-CTA headline */
.cta-logo {
  display: inline-block;
  height: 0.92em;
  width: auto;
  vertical-align: -0.14em;
  margin-left: 0.18em;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}

/* 28 | HERO IMAGE SIZING — smaller, better balanced with the copy --------
   The founder photo was matching the headline in mass on desktop (~50/50
   split, tall 5/4 crop). This gives the copy more room and caps the photo
   so it supports the headline and flows with the layout instead of
   dominating it. Right-aligned to the margin so it flows with the layout;
   Reversible: delete this block. */
@media (min-width: 860px) {
  .hero-inner { grid-template-columns: 1.4fr 0.85fr; align-items: center; }
  .hero-photo {
    justify-self: end;
    width: 100%;
    max-width: clamp(300px, 31vw, 400px);
  }
  .hero-photo > img { aspect-ratio: 4 / 3; }
  .hero-photo > .hero-video { aspect-ratio: 16 / 9; }
}

/* 29 | HERO — VIDEO CENTERPIECE + SUNSHINE BURSTS -----------------------
   The hero now flows as one centered column: eyebrow, headline, then a
   large video centerpiece, then the lead copy, buttons and socials. Radiant
   "sunshine burst" rays sit behind the video. The <figure class="hero-photo">
   was moved in the markup to sit between the <h1> and the lead paragraph.
   Supersedes the two-column layout in sections 23 & 28 (left intact so this
   is a clean revert). Reduced-motion is covered by the global block in
   section 20. Reversible: delete this block and move the figure back after
   .hero-body. */

.hero-inner { grid-template-columns: 1fr; justify-items: center; }
.hero-body {
  max-width: min(980px, 100%);
  margin-inline: auto;
  text-align: center;
}
/* keep copy above any ray bleed */
.hero-body > :not(.hero-photo) { position: relative; z-index: 2; }
.hero-body h1 { margin-inline: auto; max-width: 20ch; }
.hero-lead { margin-inline: auto; }
.hero .btn-row { justify-content: center; }
.hero-meta { justify-content: center; }

/* The video becomes the centered centerpiece — bigger, flowing between the
   headline and the copy. */
.hero-photo {
  width: min(860px, 100%);
  max-width: none;
  margin: clamp(30px, 4.5vw, 52px) auto clamp(24px, 3.5vw, 40px);
  isolation: isolate;   /* contain the ray + badge stacking */
}
.hero-photo > .hero-video,
.hero-photo > img { position: relative; z-index: 1; }

/* Sunshine bursts radiating from behind the video */
.hero-photo::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 156%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background:
    repeating-conic-gradient(from 0deg at 50% 50%,
      rgba(246,137,38,0.55) 0deg 5deg, transparent 5deg 15deg),
    repeating-conic-gradient(from 7.5deg at 50% 50%,
      rgba(241,92,75,0.32) 0deg 4deg, transparent 4deg 15deg),
    radial-gradient(circle at 50% 50%, rgba(246,137,38,0.20), transparent 56%);
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 27%, rgba(0,0,0,0.5) 45%, transparent 64%);
          mask: radial-gradient(circle at 50% 50%, #000 27%, rgba(0,0,0,0.5) 45%, transparent 64%);
  z-index: 0;
  pointer-events: none;
  animation: heroBurst 120s linear infinite;
}
@keyframes heroBurst { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Hold the single-column, uncapped video on desktop (beats sections 23 & 28). */
@media (min-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { max-width: none; width: min(860px, 100%); }
}

/* 30 | HERO — VIDEO FRAME SIZING + CUSTOM VIDEO CONTROLS ------------------
   Widens the centered video frame to ~980px and the lead paragraph to a
   readable ~740px. Adds the custom, accessible sound toggle + play/pause
   controls and the centered manual "Play video" button used for
   prefers-reduced-motion. Reversible: delete this block (and the inline
   hero-video script in index.html). */

/* Frame: ~980px, still 16:9, centered, never distorted */
.hero-photo { width: min(980px, 100%); }
.hero-lead { max-width: min(740px, 100%); }
@media (min-width: 860px) {
  .hero-photo { width: min(980px, 100%); max-width: none; }
}
.hero-photo > .hero-video {
  object-fit: cover;          /* 16:9 clip in a 16:9 frame => no crop */
  object-position: center center;
}

/* Control cluster — lower-right of the video */
.hero-video-controls {
  position: absolute;
  right: clamp(10px, 1.4vw, 16px);
  bottom: clamp(10px, 1.4vw, 16px);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hv-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; line-height: 1;
  color: #fff; background: rgba(26,26,26,0.72);
  border: 1px solid rgba(255,255,255,0.38); border-radius: 999px;
  padding: 9px 13px; cursor: pointer;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background .15s ease, transform .12s ease, border-color .15s ease;
}
.hv-btn:hover { background: var(--pink); border-color: var(--pink); }
.hv-btn:active { transform: translateY(1px); }
.hv-btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.hv-btn svg { width: 18px; height: 18px; display: block; }
.hv-playpause { padding: 9px; }
.hv-playpause svg { fill: currentColor; }
.hv-sound svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hv-sound svg path:first-child { fill: currentColor; stroke: none; }

/* icon state toggles */
.hero-photo[data-playing="true"]  .hv-playpause .ic-play  { display: none; }
.hero-photo[data-playing="true"]  .hv-playpause .ic-pause { display: block; }
.hero-photo:not([data-playing="true"]) .hv-playpause .ic-pause { display: none; }
.hero-photo:not([data-playing="true"]) .hv-playpause .ic-play  { display: block; }
.hv-sound .ic-unmute { display: none; }
.hv-sound[aria-pressed="true"] .ic-unmute { display: block; }
.hv-sound[aria-pressed="true"] .ic-mute   { display: none; }

/* Centered manual "Play video" (paused / reduced-motion) */
.hv-bigplay {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 5; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff;
  background: rgba(26,26,26,0.66); border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px; padding: 14px 22px; cursor: pointer;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background .15s ease, border-color .15s ease;
}
.hv-bigplay svg { width: 20px; height: 20px; fill: currentColor; }
.hv-bigplay:hover { background: var(--pink); border-color: var(--pink); }
.hv-bigplay:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.hero-photo[data-playing="true"] .hv-bigplay { display: none; }

@media (max-width: 480px) {
  .hv-btn { font-size: 12px; padding: 8px 11px; }
  .hv-bigplay { font-size: 14px; padding: 12px 18px; }
}

/* 31 | VINTAGE-ORANGE NEUTRAL REPALETTE ---------------------------------
   Makes a SOFT vintage orange the site's main neutral, broken up sparingly
   by charcoal strips. Self-contained + reversible: delete this whole block
   (and the .bak file) to restore the prior cream + cool-pastel scheme.
   - Retones the entire neutral family (canvas + supporting bands) into one
     soft vintage-orange ramp so nothing reads cool against the warm ground.
   - Charcoal stays exactly as the dark "strips": the existing .bg-ink
     section(s), the .final-cta banner, and the footer (unified from its old
     muted purple to charcoal). No NEW dark sections are added.
   - Brand accents (pink/coral/orange) and the gradient join CTA are untouched.
------------------------------------------------------------------------ */
:root {
  /* main neutral canvas — soft, muted vintage orange */
  --cream:       #f6e3cc;   /* lightest ground / page canvas */
  --cream-deep:  #eed2af;   /* deeper warm band */
  --card:        #fffaf3;   /* near-white warm so cards lift off the orange */

  /* supporting bands — all retoned into the vintage-orange family, with
     gentle value/hue variation so the bands still read as distinct */
  --periwinkle:     #f3d0a4;   /* apricot */
  --sage:           #e9c597;   /* amber sand */
  --blue-gray:      #f0d8bf;   /* pale warm */
  --blush:          #f1cca7;   /* dusty peach */
  --smoky-lavender: #ecc39d;   /* soft terracotta tint */
  --cool-gray:      #eed8c4;   /* warm greige */

  /* former "lavender" roles (badges, card top-borders) -> warm accents */
  --lavender:       #dda06a;   /* mid vintage orange accent */
  --lavender-soft:  #f5dcc2;   /* soft warm badge / section fill */
  --lavender-deep:  #8a5a34;   /* deep burnt orange (rarely visible) */

  /* charcoal left as-is — it IS the breaking-up strip color */
}

/* section-21 literal surfaces re-pointed to the tokens above */
.bg-cream   { background: var(--cream); }
.bg-cream-2 { background: var(--cream-deep); }
.bg-card    { background: var(--card); }

/* warm the sticky header + drawer to sit on the new ground */
.site-header { background: rgba(246,227,204,0.90); border-bottom: 1px solid rgba(26,26,26,0.16); }

/* CHARCOAL STRIPS — unify the footer to charcoal (was muted purple) so all
   dark anchors match. .bg-ink and .final-cta are already charcoal. */
.site-footer { background: var(--charcoal); color: var(--warm-white); border-top: none; }
.footer-brand p     { color: rgba(250,248,244,0.62); }
.footer-col a       { color: rgba(250,248,244,0.82); }
.footer-col a:hover { color: var(--orange); }
.footer-social a    { color: var(--warm-white); border-color: rgba(250,248,244,0.4); }
.footer-social a:hover { color: var(--white); }
.footer-bottom, .footer-legal { color: rgba(250,248,244,0.5); }
