/* ============================================================
   Althea Hewitt — site styles (vanilla, self-contained)
   Warm Jamaican earth tones · editorial polish
   Desktop = base rules · @media (max-width:859px) = mobile
   Fluid type via clamp() replaces the old desktop/mobile JS branch.
   ============================================================ */

@import url("assets/fonts.css");

:root {
  --cream:      oklch(0.945 0.022 80);
  --cream-2:    oklch(0.91  0.028 78);
  --paper:      oklch(0.97  0.015 80);
  --ink:        oklch(0.18  0.025 50);
  --ink-2:      oklch(0.28  0.03  50);
  --terra:      oklch(0.58  0.16  40);
  --terra-deep: oklch(0.46  0.15  35);
  --gold:       oklch(0.80  0.13  82);
  --green:      oklch(0.40  0.09  150);
  --green-deep: oklch(0.28  0.07  155);
  --clay:       oklch(0.70  0.07  55);
  --line:       oklch(0.18 0.025 50 / 0.16);
  --on-dark:    oklch(0.945 0.022 80);

  /* Jamaican / reggae tricolour — red · gold · green */
  --rasta-red:    oklch(0.53 0.20 27);
  --rasta-gold:   oklch(0.80 0.14 85);
  --rasta-green:  oklch(0.46 0.12 152);
  --rasta-green-bright: oklch(0.62 0.15 150); /* legible on dark backgrounds */

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

/* ── After-dark theme: add class "is-dark" to .ah-root to enable ── */
.ah-root.is-dark {
  --cream:      oklch(0.15 0.022 50);
  --cream-2:    oklch(0.12 0.02 50);
  --paper:      oklch(0.21 0.022 50);
  --ink:        oklch(0.94 0.022 80);
  --ink-2:      oklch(0.78 0.02 80);
  --terra:      oklch(0.70 0.17 38);
  --terra-deep: oklch(0.60 0.16 35);
  --gold:       oklch(0.84 0.14 82);
  --green:      oklch(0.55 0.10 150);
  --green-deep: oklch(0.32 0.08 155);
  --line:       oklch(0.94 0.022 80 / 0.16);
}

/* ── Accent variations: set data-accent on .ah-root ── */
.ah-root[data-accent="gold"]    { --terra: oklch(0.76 0.15 75);  --terra-deep: oklch(0.66 0.16 65); }
.ah-root[data-accent="green"]   { --terra: oklch(0.48 0.13 155); --terra-deep: oklch(0.38 0.12 155); }
.ah-root[data-accent="magenta"] { --terra: oklch(0.55 0.18 350); --terra-deep: oklch(0.45 0.18 350); }
.ah-root.is-dark[data-accent="gold"]    { --terra: oklch(0.82 0.16 75);  --terra-deep: oklch(0.72 0.16 65); }
.ah-root.is-dark[data-accent="green"]   { --terra: oklch(0.62 0.13 155); --terra-deep: oklch(0.52 0.12 155); }
.ah-root.is-dark[data-accent="magenta"] { --terra: oklch(0.68 0.18 350); --terra-deep: oklch(0.58 0.18 350); }

/* ── Base ── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
.ah-root {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  transition: background .35s, color .35s;
  -webkit-font-smoothing: antialiased;
}
.ah-root img { display: block; max-width: 100%; }
.ah-root button { font-family: inherit; }
.ah-root a { color: inherit; text-decoration: none; }
.ah-root section { scroll-margin-top: 76px; } /* clears the fixed sticky nav */

.ah-serif   { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.ah-serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }
.ah-mono {
  font-family: var(--mono); letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 11px;
}

/* ── Section shell ── */
.ah-root > section {
  position: relative;
  padding: clamp(64px, 9vw, 120px) clamp(22px, 5vw, 56px);
}
@media (min-width: 1100px) {
  .ah-root > section {
    padding-left: max(56px, 10vw);
    padding-right: max(56px, 10vw);
  }
}

/* ── Desktop: frame the whole site as a centered card with a drop shadow ── */
@media (min-width: 1100px) {
  body { background: oklch(0.88 0.03 75); }
  body:has(.ah-root.is-dark) { background: oklch(0.10 0.02 50); }
  .ah-root {
    max-width: 80%;
    margin-inline: auto;
    box-shadow: 0 40px 100px -30px oklch(0.20 0.03 50 / 0.45),
                0 12px 32px oklch(0.20 0.03 50 / 0.14);
  }
}

/* ── Shared heading system ── */
.sec-eyebrow { margin-bottom: 18px; }
.ah-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra);
  display: inline-flex; align-items: center; gap: 10px;
}
.ah-eyebrow::before { content: ""; display: block; width: 22px; height: 1px; background: var(--terra); }
.ah-eyebrow.on-dark { color: var(--gold); }
.ah-eyebrow.on-dark::before { background: var(--gold); }

.h2 {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(50px, 7vw, 88px); line-height: 0.95; letter-spacing: -0.03em;
}
.h2--xl  { font-size: clamp(52px, 8.5vw, 108px); line-height: 0.92; }
.h2--album { font-size: clamp(72px, 12vw, 156px); line-height: 0.86; letter-spacing: -0.04em; }
.h3 {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.01em;
}
.accent-i { font-style: italic; color: var(--terra); }
.gold-i   { font-style: italic; color: var(--gold); }

/* ── Buttons ── */
.ah-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink); border-radius: 999px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em; cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.ah-btn:hover { background: var(--terra); border-color: var(--terra); color: var(--cream); }
.ah-btn--ghost { background: transparent; color: var(--ink); }
.ah-btn--ghost:hover { background: var(--ink); color: var(--cream); }
.ah-btn--terra { background: var(--terra); border-color: var(--terra); color: var(--cream); }
.ah-btn--terra:hover { background: var(--terra-deep); border-color: var(--terra-deep); }
.ah-btn--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.ah-btn--gold:hover { background: var(--cream); }
.ah-btn--outline { background: transparent; border-color: var(--on-dark); color: var(--on-dark); }
.ah-btn--outline:hover { background: var(--on-dark); color: var(--ink); }

/* ── Grain overlay ── */
.ah-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.18; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.07 0 0 0 0 0.05 0 0 0 0.7 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Entrance animations (run only when .ah-root.is-loaded) ── */
@keyframes ah-letter-in {
  0%   { opacity: 0; transform: translateY(0.6em) rotate(-6deg); filter: blur(8px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}
@keyframes ah-fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ah-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ah-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ah-spin { to { transform: rotate(360deg); } }
@keyframes ah-bar { 0%,100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }

.ah-letter { display: inline-block; will-change: transform, opacity, filter; }
.ah-root.is-loaded .ah-letter  { opacity: 0; animation: ah-letter-in 0.9s cubic-bezier(.2,.8,.2,1) forwards; }
.ah-root.is-loaded .ah-fade-up { opacity: 0; animation: ah-fade-up 0.9s cubic-bezier(.2,.8,.2,1) forwards; }
.ah-root.is-loaded .ah-fade    { opacity: 0; animation: ah-fade 1.4s ease forwards; }
@media (prefers-reduced-motion: reduce) {
  .ah-root.is-loaded .ah-letter,
  .ah-root.is-loaded .ah-fade-up,
  .ah-root.is-loaded .ah-fade { animation: none; opacity: 1; }
  .hero-disc, .album-vinyl { animation: none !important; }
}

/* ── Platform icon links ── */
.plink {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  transition: transform .15s, filter .15s;
}
.plink:hover { transform: scale(1.12); }
.plink svg { width: 100%; height: 100%; }
.plink--lg { width: 32px; height: 32px; }
.plink--md { width: 20px; height: 20px; }
.plink--spotify  { background: #1DB954; }
.plink--youtube  { background: #FF0000; }
.plink--apple    { background: #FA233B; }
.plink--amazon   { background: #FF9900; }
.plink--deezer   { background: #7C28F0; }
.plink--vpreggae { background: #1d4d3a; }
.plink--web      { background: #5a4a3a; }
.plink--link     { background: #5a4a3a; }

/* ============================================================
   HERO
   ============================================================ */
.ah-root > .hero {
  background: var(--cream);
  padding: clamp(20px, 4vw, 32px) clamp(22px, 5vw, 56px) 0;
  overflow: hidden;
}
.hero-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0 28px; border-bottom: 1px solid var(--line);
  position: relative; z-index: 3;
}
.hero-brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 36px; height: 36px; border-radius: 50%; background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1; flex-shrink: 0;
}
.brand-loc { color: var(--ink-2); }
.main-nav { display: flex; gap: 28px; }
.main-nav a { font-size: 13px; font-weight: 500; color: var(--ink); }
.main-nav a:hover { color: var(--terra); }
.nav-toggle {
  display: none; background: transparent; border: 0; padding: 6px; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
.book-btn { padding: 10px 18px; font-size: 12px; }

/* ── Sticky red·gold·green nav (revealed once the hero menu scrolls away) ── */
.sticky-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  /* Tricolour: thin red top band, gold body (where the links sit), thin green base */
  background: linear-gradient(to bottom,
    var(--rasta-red) 0, var(--rasta-red) 6px,
    var(--rasta-gold) 6px, var(--rasta-gold) calc(100% - 6px),
    var(--rasta-green) calc(100% - 6px), var(--rasta-green) 100%);
  box-shadow: 0 10px 34px oklch(0.18 0.025 50 / 0.28);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .38s cubic-bezier(.2,.7,.2,1), opacity .25s ease;
}
.sticky-nav.is-stuck { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sticky-nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 9px clamp(22px, 5vw, 56px);
}
.sticky-brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.sticky-brand .brand-badge {
  width: 30px; height: 30px; font-size: 18px;
  background: var(--ink); color: var(--rasta-gold);
}
.sticky-name { font-family: var(--serif); font-size: 19px; letter-spacing: -0.01em; }
.sticky-links { display: flex; gap: 24px; }
.sticky-links a {
  font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: 0.01em;
  transition: color .15s;
}
.sticky-links a:hover { color: var(--rasta-red); }
.sticky-actions { display: flex; align-items: center; gap: 14px; }
.sticky-book {
  padding: 9px 16px; font-size: 12px;
  background: var(--terra); border-color: var(--terra); color: var(--cream);
}
.sticky-book:hover {
  background: oklch(0.66 0.18 42); border-color: oklch(0.66 0.18 42); color: var(--cream);
}
.sticky-toggle {
  display: none; background: transparent; border: 0; padding: 6px; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.sticky-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; border-radius: 2px; }
@media (min-width: 1100px) {
  /* Align the sticky bar with the centred 80% content card */
  .sticky-nav { max-width: 80%; margin-inline: auto; }
}

.hero-main {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
  padding: 64px 0 32px; align-items: end; position: relative; z-index: 2;
}
.hero-h1 {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(72px, 13vw, 200px); line-height: 0.88;
  letter-spacing: -0.04em; color: var(--ink);
}
.hero-h1 .name-2 { display: block; font-style: italic; color: var(--terra); padding-left: clamp(28px, 6vw, 80px); }
.hero-lede { margin-top: 40px; max-width: 440px; display: flex; flex-direction: column; gap: 22px; }
.hero-lede p { margin: 0; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.4; color: var(--ink-2); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-portrait { position: relative; height: 640px; }
.hero-portrait-bg {
  position: absolute; right: 0; bottom: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--cream-2) 100%);
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
}
.hero-portrait img {
  position: absolute; right: -20px; bottom: 0; height: 100%; width: auto;
  object-fit: contain; object-position: bottom right;
  filter: drop-shadow(0 30px 60px rgba(40,20,10,0.25));
}
.hero-disc {
  position: absolute; left: -40px; top: 40px; width: 180px; height: 180px;
  border-radius: 50%; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(40,20,10,0.30);
  animation: ah-spin 18s linear infinite;
}
.hero-disc-mid {
  width: 70%; height: 70%; border-radius: 50%;
  background: repeating-radial-gradient(circle, var(--ink) 0px, var(--ink) 2px, var(--ink-2) 2.5px, var(--ink-2) 3px);
  border: 1px solid var(--ink-2);
  display: flex; align-items: center; justify-content: center;
}
.hero-disc-core {
  width: 36%; height: 36%; border-radius: 50%; background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 22px;
}
.hero-sticker {
  position: absolute; left: -30px; bottom: 70px; background: var(--gold);
  color: var(--ink); border-radius: 50%; width: 120px; height: 120px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.05;
  text-align: center; transform: rotate(-12deg); box-shadow: 0 8px 20px rgba(40,20,10,0.20);
}
.hero-sticker .yr { font-size: 12px; }
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0 28px; border-top: 1px solid var(--line);
  margin-top: 32px; flex-wrap: wrap; gap: 10px;
}
.hero-meta .now { display: inline-flex; align-items: center; gap: 12px; }
.hero-meta .now .title { font-family: var(--serif); font-style: italic; font-size: clamp(16px, 1.5vw, 20px); }

/* waveform */
.ah-wave { display: inline-flex; align-items: center; gap: 2px; height: 14px; }
.ah-wave span {
  display: block; width: 2px; height: 100%; background: var(--terra);
  transform-origin: center; transform: scaleY(0.35); border-radius: 1px;
  animation: ah-bar 0.9s ease-in-out infinite;
}
.ah-wave span:nth-child(2) { animation-delay: 0.1s; }
.ah-wave span:nth-child(3) { animation-delay: 0.2s; }
.ah-wave span:nth-child(4) { animation-delay: 0.05s; }
.ah-wave span:nth-child(5) { animation-delay: 0.25s; }

/* ============================================================
   MARQUEE
   ============================================================ */
.ah-marquee {
  display: flex; overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  background: var(--ink); color: var(--cream);
}
.ah-marquee-track {
  display: inline-flex; align-items: center; gap: 32px;
  animation: ah-marquee 30s linear infinite; padding: 14px 0; flex-shrink: 0;
}
.ah-marquee-item { display: inline-flex; align-items: center; gap: 32px; flex-shrink: 0; }
.ah-marquee-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
.ah-marquee-text { font-family: var(--serif); font-style: italic; font-size: 28px; letter-spacing: -0.01em; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.about-photo { margin-top: 32px; position: relative; max-width: 380px; }
.about-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 4px;
  filter: grayscale(0.15) contrast(1.05);
}
.about-photo .cap { position: absolute; bottom: -22px; left: 0; color: var(--ink-2); }
.about-col-2 { padding-top: 80px; }
.about-quote {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); line-height: 1.18;
  color: var(--ink); margin-bottom: 36px; letter-spacing: -0.01em;
}
.about-paras { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-paras p { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0; }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line);
}
.stat-n { font-family: var(--serif); font-size: clamp(44px, 5vw, 64px); line-height: 0.9; color: var(--terra); letter-spacing: -0.03em; }
.stat-k { margin-top: 6px; color: var(--ink-2); }

/* ============================================================
   ALBUM SPOTLIGHT
   ============================================================ */
#album { background: var(--green-deep); color: var(--on-dark); overflow: hidden; }
#album .glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 80% 30%, oklch(0.45 0.13 50 / 0.5), transparent 55%);
}
.album-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.album-meta-row {
  margin-top: 40px; display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid oklch(0.94 0.022 80 / 0.18);
}
.album-meta .k { color: oklch(0.94 0.022 80 / 0.55); }
.album-meta .v { font-family: var(--serif); font-size: 22px; margin-top: 4px; }
.album-blurb { margin-top: 28px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; max-width: 520px; color: oklch(0.94 0.022 80 / 0.85); }
.album-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.album-art-wrap { position: relative; display: flex; justify-content: flex-end; }
.album-cover {
  position: relative; width: 380px; height: 380px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4); transform: rotate(-3deg);
}
.album-cover img { width: 100%; height: 100%; object-fit: cover; }
.album-cover .tag { position: absolute; top: -22px; left: 0; color: var(--gold); }
.album-vinyl {
  position: absolute; right: -60px; top: 30px; width: 360px; height: 360px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #050505 0px, #050505 3px, #1a1a1a 3.5px, #1a1a1a 4.5px);
  border: 1px solid #050505; z-index: -1; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  animation: ah-spin 30s linear infinite;
}
.album-vinyl-core {
  width: 32%; height: 32%; border-radius: 50%; background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 24px;
  text-align: center; line-height: 1;
}
.album-vinyl-core .big { font-size: 36px; }

/* ============================================================
   LISTEN / DISCOGRAPHY
   ============================================================ */
#music { background: var(--cream); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.platform-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.disco-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.disco-stat {
  padding: 24px 22px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; display: flex; flex-direction: column; gap: 6px;
}
.disco-stat .n { font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); line-height: 0.9; color: var(--terra); letter-spacing: -0.03em; }
.disco-stat .k { color: var(--ink-2); }

.spotify-embed { margin-bottom: 32px; border-radius: 12px; overflow: hidden; background: #121212; border: 1px solid var(--line); }
.spotify-embed iframe { display: block; border: 0; width: 100%; }
.spotify-embed.lazy-embed { min-height: 352px; }

.subhead { margin-bottom: 16px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.subhead .count { color: var(--ink-2); }
.subhead--mt { margin-top: 56px; }

.release-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-bottom: 56px; }
.release {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.release:hover { transform: translateY(-3px); box-shadow: 0 10px 30px oklch(0.18 0.025 50 / 0.12); }
.release-cover { aspect-ratio: 1 / 1; position: relative; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.release-cover .ph { font-family: var(--serif); font-style: italic; color: var(--on-dark); font-size: 22px; text-align: center; padding: 0 14px; line-height: 1.1; }
.release-cover .new {
  position: absolute; top: 10px; right: 10px; padding: 4px 8px; background: var(--gold);
  color: oklch(0.18 0.025 50); font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; border-radius: 3px;
}
.release-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.release-body .meta { color: var(--ink-2); }
.release-body .title { font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.1; color: var(--ink); }
.release-links { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }

/* Lazy embed placeholder — subtle pulse until the widget loads */
.lazy-embed:not(.is-loaded-embed) { position: relative; }
.lazy-embed:not(.is-loaded-embed)::after {
  content: "Loading\2026"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2); opacity: 0.5; animation: ah-fade 1.2s ease-in-out infinite alternate;
}
.spotify-embed.lazy-embed:not(.is-loaded-embed)::after { color: oklch(0.85 0.02 80); }
.singles { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.singles-head {
  display: grid; grid-template-columns: 70px 1.4fr 1fr 1.6fr 180px;
  padding: 14px 22px; border-bottom: 1px solid var(--line);
  color: var(--ink-2); background: oklch(0.18 0.025 50 / 0.03);
}
.singles-head .right { text-align: right; }
.single-row {
  display: grid; grid-template-columns: 70px 1.4fr 1fr 1.6fr 180px;
  align-items: center; padding: 16px 22px; border-bottom: 1px solid var(--line);
  transition: background .12s;
}
.single-row:last-child { border-bottom: 0; }
.single-row:hover { background: oklch(0.18 0.025 50 / 0.04); }
.single-row .yr { color: var(--ink-2); }
.single-row .title { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.single-row .feat { font-size: 13px; color: var(--ink-2); }
.single-row .feat .dash { opacity: 0.4; }
.single-row .notes { font-size: 13px; color: var(--ink-2); line-height: 1.4; }
.single-row .meta-m { display: none; }
.single-row .links { display: flex; gap: 6px; justify-content: flex-end; flex-wrap: wrap; }
.single-row .links .vinyl { color: var(--ink-2); opacity: 0.5; font-size: 10px; }
.new-pill { margin-left: 8px; padding: 2px 6px; background: var(--gold); color: var(--ink); border-radius: 3px; font-size: 9px; vertical-align: middle; }
.single-row.is-extra { display: none; }
.singles.show-all .single-row.is-extra { display: grid; }
.singles-foot {
  padding: 16px 22px; display: flex; justify-content: space-between; align-items: center;
  background: oklch(0.18 0.025 50 / 0.03); flex-wrap: wrap; gap: 10px;
}
.singles-foot .lbl { color: var(--ink-2); }
.singles-foot button {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--ink);
  background: transparent; color: var(--ink); font-size: 12px; cursor: pointer;
}
.singles-foot button:hover { background: var(--ink); color: var(--cream); }
.disco-note { margin-top: 18px; font-size: 12px; color: var(--ink-2); line-height: 1.55; font-family: var(--mono); letter-spacing: 0.02em; }

/* collaborators */
.collab-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.collab {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; display: flex; align-items: center; gap: 12px;
  min-width: 0;
  transition: transform .2s, box-shadow .2s;
}
.collab:hover { transform: translateY(-2px); box-shadow: 0 6px 18px oklch(0.18 0.025 50 / 0.10); }
.collab-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  color: var(--on-dark); font-family: var(--serif); font-style: italic; font-size: 14px;
}
.collab-name { font-family: var(--serif); font-size: 16px; color: var(--ink); line-height: 1.15; overflow-wrap: anywhere; }
.collab .yr { color: var(--ink-2); margin-top: 2px; }

/* ============================================================
   VIDEOS
   ============================================================ */
#videos { background: var(--cream-2); }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 18px; }
.video-card {
  position: relative; overflow: hidden; border-radius: 8px; cursor: pointer;
  background: var(--ink); display: block; color: inherit;
}
.video-card.is-hidden { display: none; }
.video-card--big { grid-row: span 2; grid-column: span 2; aspect-ratio: 16 / 9; }
.video-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.02); transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.video-card:hover img { transform: scale(1.05); }
.video-card .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(20,12,6,0.85) 100%); }
.video-card .cap { position: absolute; left: 16px; right: 16px; bottom: 14px; color: var(--cream); display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.video-card .cap .tag { color: var(--gold); }
.video-card .cap .vt { font-family: var(--serif); font-size: 20px; margin-top: 4px; line-height: 1.05; }
.video-card--big .cap .vt { font-size: 34px; }
.video-card .play {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: oklch(0.94 0.022 80 / 0.95); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.video-card:hover .play { background: var(--terra); color: var(--cream); }
.videos-more { margin-top: 28px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.videos-more .ah-btn { padding: 12px 22px; font-size: 13px; }
.yt-live {
  margin-top: 56px; padding: 28px 30px 30px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 16px;
}
.yt-live-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.yt-live-head .lbl { color: var(--terra); }
.yt-live-head .t { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 28px); margin-top: 4px; line-height: 1.1; }
.yt-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--ink); border-radius: 10px; overflow: hidden; }
.yt-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
#coaching { background: var(--ink); color: var(--cream); }
.services-head { position: relative; z-index: 2; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 2; }
.service {
  background: var(--paper); color: var(--ink); border-radius: 16px; padding: 36px;
  position: relative; overflow: hidden; transition: transform .3s; min-height: 520px;
}
.service:hover { transform: translateY(-4px); }
.service--alt { background: oklch(0.94 0.022 80 / 0.05); color: var(--cream); }
.service-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.service .tag { color: var(--terra); }
.service--alt .tag { color: var(--gold); }
.service h3 { margin: 10px 0 8px; font-family: var(--serif); font-size: clamp(34px, 4vw, 56px); line-height: 1.0; font-weight: 400; letter-spacing: -0.02em; }
.service .tagline { font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.6vw, 22px); color: var(--terra); }
.service--alt .tagline { color: var(--gold); }
.service-avatar { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--terra); }
.service--alt .service-avatar { border-color: var(--gold); }
.service-avatar img { width: 100%; height: 100%; object-fit: cover; }
.service ul {
  list-style: none; padding: 0; margin: 32px 0 28px; display: flex; flex-direction: column; gap: 16px;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.service--alt ul { border-top-color: oklch(0.94 0.022 80 / 0.18); }
.service li { display: grid; grid-template-columns: 180px 1fr; gap: 12px; }
.service li .k { color: var(--ink-2); }
.service--alt li .k { color: oklch(0.94 0.022 80 / 0.55); }
.service li .v { font-size: 15px; line-height: 1.5; }
.booking-bar {
  margin-top: 48px; padding: 24px 32px; border: 1px solid oklch(0.94 0.022 80 / 0.18);
  border-radius: 12px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; position: relative; z-index: 2;
}
.booking-bar .left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.booking-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px var(--gold); }
.booking-bar .k { color: oklch(0.94 0.022 80 / 0.55); }
.booking-bar .v { font-family: var(--serif); font-size: 22px; font-style: italic; }

/* ============================================================
   PRESS
   ============================================================ */
#press { background: var(--cream); overflow: hidden; }
.press-head { margin-bottom: 48px; max-width: 760px; }
.press-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: stretch; min-height: 420px; }
.press-photo { position: relative; min-height: 480px; border-radius: 8px; overflow: hidden; background: var(--cream-2); }
.press-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.press-photo .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 60%, oklch(0.18 0.025 50 / 0.45) 100%); pointer-events: none; }
.press-photo .cap { position: absolute; bottom: 18px; left: 18px; color: var(--on-dark); }
.press-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 40px 44px; display: flex; flex-direction: column; justify-content: space-between;
}
.press-card .lbl { color: var(--terra); }
.press-quote { font-family: var(--serif); font-size: clamp(22px, 2.8vw, 32px); line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); margin-top: 18px; }
.press-quote .q { color: var(--terra); font-style: italic; }
.press-foot { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); }
.press-foot .lbl { color: var(--ink-2); display: block; margin-bottom: 14px; }
.press-foot p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0 0 18px; max-width: 480px; }
.press-foot .btns { display: flex; gap: 10px; flex-wrap: wrap; }
.press-foot .ah-btn { padding: 10px 16px; font-size: 12px; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
#instagram { background: var(--paper); }
.ig-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.ig-head .copy { max-width: 760px; }
.ig-head p { margin: 14px 0 0; font-size: clamp(15px, 1.3vw, 17px); line-height: 1.55; color: var(--ink-2); max-width: 520px; }
.ig-head .ah-btn { padding: 12px 22px; font-size: 13px; }
.ig-shell { position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 24px; overflow: hidden; }
.ig-shell .corner { position: absolute; top: 14px; left: 18px; color: var(--ink-2); font-size: 10px; letter-spacing: 0.14em; z-index: 1; }
.ig-widget { min-height: 380px; }

/* ============================================================
   TOUR
   ============================================================ */
#tour { background: var(--green); color: var(--on-dark); overflow: hidden; }
.tour-head { position: relative; z-index: 2; margin-bottom: 48px; }
.tour-card {
  position: relative; z-index: 2; padding: 48px 56px;
  border: 1px dashed oklch(0.94 0.022 80 / 0.35); border-radius: 16px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.tour-card .lead { margin: 0; font-family: var(--serif); font-size: clamp(22px, 2.8vw, 32px); line-height: 1.3; color: var(--on-dark); letter-spacing: -0.01em; }
.tour-card .sub { margin-top: 18px; color: oklch(0.94 0.022 80 / 0.65); letter-spacing: 0.05em; }
.tour-form { display: flex; flex-direction: column; gap: 12px; }
.tour-form input {
  width: 100%; padding: 14px 18px; border-radius: 999px;
  border: 1px solid oklch(0.94 0.022 80 / 0.4); background: transparent;
  color: var(--on-dark); font-family: inherit; font-size: 15px; outline: none;
}
.tour-form input::placeholder { color: oklch(0.94 0.022 80 / 0.55); }
.tour-form button { justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
.contact-h2 { margin: 0; font-family: var(--serif); font-size: clamp(52px, 8.5vw, 108px); line-height: 0.9; letter-spacing: -0.03em; font-weight: 400; }
.contact-rows { margin-top: 48px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.contact-row .k { color: var(--ink-2); flex-shrink: 0; min-width: 100px; }
.contact-row .val { flex: 1; min-width: 200px; }
.contact-row .val .v { font-family: var(--serif); font-size: 22px; color: var(--ink); display: block; }
.contact-row .val .sub { font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.contact-socials { margin-top: 36px; display: flex; gap: 18px; flex-wrap: wrap; }
.contact-socials a { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--ink); }
.contact-socials a span { color: var(--terra); }
.contact-form { background: var(--paper); border-radius: 16px; padding: 36px; display: flex; flex-direction: column; gap: 18px; align-self: start; }
.contact-form .lbl { color: var(--ink-2); }
.contact-form h3 { margin: 0; font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); line-height: 1.05; font-weight: 400; }
.field { display: block; }
.field .flabel { color: var(--ink-2); display: block; margin-bottom: 2px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid var(--line);
  background: transparent; font-size: 16px; color: var(--ink); font-family: inherit;
  outline: 0; transition: border-color .15s;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--terra); }
.field:focus-within .flabel { color: var(--terra); }
.contact-form > .ah-btn { align-self: flex-start; padding: 14px 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--cream); padding: 64px 56px 24px; position: relative; overflow: hidden; }
/* Reggae tricolour rule across the top edge of the footer */
.site-footer::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; z-index: 3;
  background: linear-gradient(to right,
    var(--rasta-red) 0 33.33%, var(--rasta-gold) 33.33% 66.66%, var(--rasta-green) 66.66% 100%);
}
.footer-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 28px; flex-wrap: wrap; }
.footer-brand { max-width: 380px; }
.footer-brand .row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .badge { width: 40px; height: 40px; border-radius: 50%; background: var(--terra); display: flex; align-items: center; justify-content: center; color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1; }
.footer-brand .name { font-family: var(--serif); font-size: 26px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: oklch(0.94 0.022 80 / 0.7); }
.footer-brand .ah-btn { margin-top: 20px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, auto); gap: 64px; }
.footer-cols h4 { color: var(--gold); margin: 0 0 14px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-cols a { font-size: 14px; color: oklch(0.94 0.022 80 / 0.78); }
.footer-cols a:hover { color: var(--gold); }
.footer-wordmark {
  position: relative; z-index: 1; margin-top: 60px; font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: clamp(100px, 26vw, 320px); line-height: 0.8;
  color: oklch(0.94 0.022 80 / 0.1); letter-spacing: -0.04em; white-space: nowrap;
}
.footer-legal {
  position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; margin-top: 20px; border-top: 1px solid oklch(0.94 0.022 80 / 0.12);
  font-size: 12px; color: oklch(0.94 0.022 80 / 0.5); flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   MOBILE  (was the prototype's variant="mobile" branch)
   ============================================================ */
@media (max-width: 859px) {
  .brand-loc { display: none; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; gap: 18px; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 22px; z-index: 20;
  }
  .nav-toggle { display: flex; }
  .hero-nav { padding: 0 0 12px; }
  .brand-badge { width: 30px; height: 30px; font-size: 18px; }
  .book-btn { padding: 8px 14px; }

  /* Sticky bar: collapse links behind a toggle, hide the inline Book button */
  .sticky-book { display: none; }
  .sticky-toggle { display: flex; }
  .sticky-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 16px; background: var(--rasta-gold);
    padding: 16px 22px 20px; border-bottom: 6px solid var(--rasta-green);
    box-shadow: 0 16px 30px oklch(0.18 0.025 50 / 0.25);
  }
  .sticky-links.open { display: flex; }

  .hero-main { grid-template-columns: 1fr; gap: 24px; padding: 36px 0 24px; }
  .hero-lede { margin-top: 26px; max-width: 100%; }
  .hero-portrait { height: 420px; }
  .hero-portrait img { right: -10px; }
  .hero-disc { left: 8px; top: 16px; width: 110px; height: 110px; }
  .hero-disc-core { font-size: 14px; }
  .hero-sticker { left: 6px; bottom: 24px; width: 86px; height: 86px; font-size: 16px; }
  .hero-sticker .yr { font-size: 10px; }
  .hero-meta { padding: 12px 0 18px; margin-top: 18px; }

  .marquee-text { font-size: 22px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { display: none; }
  .about-col-2 { padding-top: 0; }
  .about-paras { grid-template-columns: 1fr; gap: 18px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 36px; }

  .album-grid { grid-template-columns: 1fr; gap: 28px; }
  .album-meta-row { margin-top: 24px; gap: 18px; }
  .album-art-wrap { justify-content: center; }
  .album-cover { width: 260px; height: 260px; transform: rotate(-2deg); }
  .album-vinyl { right: -30px; top: 20px; width: 240px; height: 240px; }
  .album-vinyl-core { font-size: 16px; }
  .album-vinyl-core .big { font-size: 22px; }

  .disco-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 22px; }
  .disco-stat { padding: 18px; }
  .release-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 40px; }
  .release-cover .ph { font-size: 18px; }
  .release-body .title { font-size: 17px; }

  /* singles → stacked card layout */
  .singles-head { display: none; }
  .single-row, .singles.show-all .single-row.is-extra { grid-template-columns: 60px 1fr; gap: 4px; align-items: start; padding: 14px 18px; }
  .single-row.is-extra { display: grid; }            /* mobile shows all */
  .single-row .title { grid-column: 2 / 3; font-size: 17px; }
  .single-row .feat, .single-row .notes { display: none; }
  .single-row .meta-m { display: block; grid-column: 2 / 3; margin-top: 2px; font-size: 12px; color: var(--ink-2); line-height: 1.4; }
  .single-row .links { grid-column: 2 / 3; justify-content: flex-start; margin-top: 6px; }
  .singles-foot { display: none; }                   /* no toggle on mobile */

  .collab-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .collab { padding: 12px; }
  .collab-name { font-size: 14px; }

  .videos-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 14px; }
  .video-card { aspect-ratio: 16 / 9; }
  .video-card--big { grid-row: auto; grid-column: auto; }
  .video-card--big .cap .vt { font-size: 20px; }
  .yt-live { margin-top: 40px; padding: 20px 18px 22px; }

  .services-head { margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service { padding: 24px; min-height: auto; }
  .service-avatar { width: 80px; height: 80px; }
  .service li { grid-template-columns: 1fr; }
  .booking-bar { margin-top: 28px; padding: 20px 22px; }

  .press-head { margin-bottom: 28px; }
  .press-grid { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .press-photo { aspect-ratio: 4 / 5; min-height: auto; }
  .press-card { padding: 28px 24px; }

  .ig-head { margin-bottom: 28px; }
  .ig-shell { padding: 14px; }
  .ig-widget { min-height: 280px; }

  .tour-head { margin-bottom: 28px; }
  .tour-card { padding: 32px 24px; grid-template-columns: 1fr; gap: 24px; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-rows { margin-top: 28px; }
  .contact-socials { margin-top: 24px; }
  .contact-socials a { font-size: 18px; }
  .contact-form { padding: 22px; }

  .site-footer { padding: 40px 22px 18px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
