/* =============================================================
   Sauropod Studio — Globals
   Design tokens (from colors_and_type.css) + landing-page styles,
   inlined into a single file so there is no chained @import.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Fredoka:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ----- BRAND COLORS ----- */
  --sauropod-blue:        #2826F5;
  --sauropod-blue-700:    #1E1ECC;
  --sauropod-blue-500:    #4A48F7;
  --sauropod-blue-300:    #8E8DFA;
  --sauropod-blue-100:    #E0E0FE;

  --sauropod-orange:      #FF5A1F;
  --sauropod-orange-700:  #E04412;
  --sauropod-orange-500:  #FF7B4A;
  --sauropod-orange-300:  #FFA585;
  --sauropod-orange-100:  #FFE4D6;

  --sauropod-cream:       #F6EFE3;
  --sauropod-cream-2:     #EFE6D3;
  --sauropod-paper:       #FBF7EE;

  --sauropod-ink:         #14110E;
  --sauropod-ink-2:       #221E1A;
  --sauropod-ink-3:       #3A3530;

  --neutral-900: #1A1714;
  --neutral-700: #4A433D;
  --neutral-500: #807870;
  --neutral-300: #C9C0B5;
  --neutral-100: #ECE5D8;
  --neutral-50:  #F8F3E8;
  --white:       #FFFFFF;

  /* ----- SEMANTIC ----- */
  --bg:        var(--sauropod-cream);
  --bg-paper:  var(--sauropod-paper);
  --bg-dark:   var(--sauropod-ink);
  --fg:        var(--sauropod-ink);
  --fg-muted:  var(--neutral-700);
  --fg-soft:   var(--neutral-500);
  --fg-on-dark: #F6EFE3;

  --accent:        var(--sauropod-blue);
  --accent-warm:   var(--sauropod-orange);
  --accent-on:     #FFFFFF;

  --border:        #221E1A;
  --border-soft:   var(--neutral-300);

  --success: #2BAA6E;
  --warning: var(--sauropod-orange);
  --danger:  #D9342B;

  /* ----- TYPE FAMILIES ----- */
  --font-display: 'Pacifico', 'Fredoka', cursive, sans-serif;
  --font-heading: 'Fredoka', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* ----- TYPE SCALE ----- */
  --fs-xxxl: clamp(56px, 7vw, 96px);
  --fs-xxl:  clamp(40px, 5vw, 64px);
  --fs-xl:   clamp(28px, 3.4vw, 40px);
  --fs-lg:   24px;
  --fs-md:   18px;
  --fs-base: 16px;
  --fs-sm:   14px;
  --fs-xs:   12px;

  /* ----- LAYOUT TOKENS ----- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-8:  48px;
  --space-10: 64px;
  --space-12: 96px;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill: 999px;
  --radius-blob: 60% 40% 55% 45% / 50% 60% 40% 50%;

  --shadow-card:    0 2px 0 var(--border), 0 8px 24px rgba(20, 17, 14, 0.08);
  --shadow-pop:     0 4px 0 var(--border), 0 12px 28px rgba(20, 17, 14, 0.14);
  --shadow-deep:    0 24px 60px rgba(20, 17, 14, 0.25);

  --border-thick:    2px solid var(--border);
  --border-hairline: 1px solid var(--border-soft);
}

/* ----- BASE / RESETS ----- */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ----- SEMANTIC TYPE STYLES (from design system) ----- */
.h-display, .display {
  font-family: var(--font-display);
  font-size: var(--fs-xxxl);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--accent);
}
h1, .h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xxl);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 var(--space-5);
}
h2, .h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 var(--space-4);
}
h3, .h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-lg);
  line-height: 1.2;
  color: var(--fg);
  margin: 0 0 var(--space-3);
}
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
}
p, .p {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--fg);
}
.lede {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--fg-muted);
}
small, .caption {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--fg-soft);
}
.price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xl);
  letter-spacing: -0.01em;
  color: var(--accent);
}
code, .code, .mono {
  font-family: var(--font-mono);
  font-size: 0.95em;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px;
  background: rgba(246, 239, 227, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border);
}
.nav-links { display: flex; gap: 28px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; }
.nav-links a { color: var(--fg); text-decoration: none; }
.nav-links a:hover { color: var(--accent-warm); }

.wordmark {
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 1;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  text-decoration: none;
}
.wordmark .dot { border-radius: 999px; background: var(--accent-warm); }

/* ── PILL BUTTON ─────────────────────────────────────────── */
.pill {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid var(--border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  padding: 12px 22px;
  box-shadow: 0 4px 0 var(--border);
  transition: transform 180ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 180ms;
}
.pill:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--border); }
.pill:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--border); }
.pill.sm { font-size: 13px; padding: 8px 16px; }
.pill.lg { font-size: 17px; padding: 16px 28px; }
.pill.warm { background: var(--accent-warm); color: #fff; }
.pill.ghost { background: transparent; color: var(--fg); box-shadow: none; }
.pill.ghost:hover { transform: translateY(-3px); box-shadow: none; }
.pill.ghost:active { transform: translateY(2px); box-shadow: none; }
.pill.cream { background: #fff; color: var(--fg); }
.pill.dark { background: var(--sauropod-ink); color: #fff; }
.pill .icon { width: 18px; height: 18px; flex-shrink: 0; }
.pill.sm .icon { width: 16px; height: 16px; }

/* ── TAGS / EYEBROWS ─────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  border: 2px solid var(--border);
  background: #fff; color: var(--fg);
  white-space: nowrap;
}
.tag.blue  { background: var(--sauropod-blue-100); color: var(--accent); }
.tag.new   { background: var(--accent-warm); color: #fff; }
.tag.ink   { background: var(--sauropod-ink); color: #fff; }

.eyebrow-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 10px;
}

.blob { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
.float { position: absolute; pointer-events: none; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { position: relative; padding: 32px 48px 60px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin: 16px 0 6px;
}
.hero h1 .warm { color: var(--accent-warm); }
.hero-lede {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 20px 0 0;
  max-width: 480px;
}
.hero-cta-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 22px; margin-top: 28px;
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  color: var(--fg-muted);
  flex-wrap: wrap;
}

.collage { position: relative; height: 520px; }
.collage .frame {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 6px 0 var(--border);
}
.collage .frame img { width: 100%; height: 100%; object-fit: cover; }
.collage .frame.f1 { top: 0; right: 0; width: 280px; height: 360px; transform: rotate(3deg); border-radius: 28px; }
.collage .frame.f2 { top: 60px; left: 0; width: 230px; height: 280px; transform: rotate(-5deg); background: var(--sauropod-ink); }
.collage .frame.f3 { bottom: 20px; right: 60px; width: 200px; height: 200px; transform: rotate(8deg); }
.collage .stamp {
  position: absolute;
  bottom: 60px; left: 40px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent-warm);
  transform: rotate(-8deg);
  line-height: 1.05;
}

/* ── PRODUCT BLOCKS ──────────────────────────────────────── */
.product {
  padding: 70px 48px;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}
.product.space { background: var(--sauropod-paper); }
.product.podcast { background: var(--sauropod-cream-2); }

.product-header {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.product-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 4px 0 8px;
}
.product-blurb {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 10px 0 0;
  max-width: 540px;
}
.product-photo {
  width: 320px; height: 200px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 6px 0 var(--border);
  transform: rotate(-2deg);
}
.product-photo img { width: 100%; height: 100%; object-fit: cover; }

.price-grid { display: grid; gap: 18px; max-width: 1100px; margin: 0 auto 44px; }
.price-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.price-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Tablet: drop the 4-up Space grid to 2-up before stacking on mobile. */
@media (max-width: 1100px) and (min-width: 901px) {
  .price-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

.price-card {
  position: relative;
  padding: 28px 26px;
  background: #fff;
  color: var(--fg);
  border: 2px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 4px 0 var(--border);
}
.price-card.best {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 0 var(--border);
  transform: translateY(-6px);
}
.product.podcast .price-card.best { background: var(--accent-warm); }

.price-card .best-tag {
  position: absolute;
  top: -14px; right: 22px;
  background: var(--accent-warm);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 2px solid var(--border);
  white-space: nowrap;
}
.product.podcast .price-card .best-tag { background: var(--accent); }

.price-card .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.product.podcast .price-card .name { color: var(--accent-warm); }
.price-card.best .name { color: #fff; }
/* Specificity fix: in podcast section, .product.podcast .price-card .name (0,3,0)
   was overriding .price-card.best .name (0,2,0), making the highlighted card's
   name orange-on-orange (invisible). Force white on the best card. */
.product.podcast .price-card.best .name { color: #fff; }

.price-card .sub {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin: 10px 0 18px;
}
.price-card.best .sub { color: #FFE4D6; }

.price-card .price-row {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.025em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-card .price-k { font-size: 22px; opacity: 0.55; }
.price-card .price-unit {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.65;
  margin-left: 8px;
  white-space: nowrap;
}
/* Compact Space cards: 4-up at full width, prices need to fit narrower cards. */
.product.space .price-card { padding: 26px 22px; }
.product.space .price-card .name { font-size: 26px; }
.product.space .price-card .price-row {
  font-size: clamp(30px, 2.7vw, 38px);
  letter-spacing: -0.025em;
}

/* ── Scroll reveal + parallax-friendly transitions ───────── */
.fade-in {
  opacity: 0;
  transition: opacity 700ms ease-out;
}
.fade-in.in-view { opacity: 1; }

/* Stagger fade-in for siblings inside a price-grid or samples-grid */
.price-grid .fade-in:nth-child(2) { transition-delay: 80ms; }
.price-grid .fade-in:nth-child(3) { transition-delay: 160ms; }
.price-grid .fade-in:nth-child(4) { transition-delay: 240ms; }
.samples-grid .fade-in:nth-child(2) { transition-delay: 100ms; }
.samples-grid .fade-in:nth-child(3) { transition-delay: 200ms; }
.samples-grid .fade-in:nth-child(4) { transition-delay: 300ms; }

/* Inline link in the price-note */
.price-note a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.price-note a:hover { color: var(--accent-warm); }

/* Respect users who don't want motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1 !important; transition: none !important; }
  [data-parallax-y] { transform: none !important; }
}
.price-card .divider { height: 1px; background: rgba(20,17,14,0.12); margin: 20px 0 14px; }
.price-card.best .divider { background: rgba(255,255,255,0.25); }
.price-card ul { list-style: none; padding: 0; margin: 0; font-size: 14px; line-height: 1.6; }
.price-card li { display: flex; gap: 8px; padding: 5px 0; }
.price-card li .arrow { color: var(--accent-warm); font-weight: 700; }
.price-card.best li .arrow { color: #FFA585; }
.price-card .cta-row { margin-top: 18px; }

/* Footnote under a price grid (e.g. minimum booking notice) */
.price-note {
  max-width: 1100px;
  margin: -24px auto 0;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

/* ── SCHEDULE GRID ───────────────────────────────────────── */
.schedule-heading { text-align: center; margin-bottom: 20px; }
.schedule-heading .label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.schedule {
  max-width: 880px;
  margin: 0 auto;
  padding: 22px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 6px 0 var(--border);
}
.schedule .row { display: grid; grid-template-columns: 60px repeat(7, 1fr); gap: 6px; margin-bottom: 6px; }
.schedule .day-label { text-align: center; font-family: var(--font-heading); font-weight: 700; font-size: 13px; }
.schedule .day-label .num { font-size: 11px; color: var(--fg-soft); font-weight: 500; }
.schedule .time-label {
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-soft);
}
.schedule button.slot {
  border: 2px solid transparent;
  background: var(--sauropod-blue-100);
  color: var(--accent);
  border-radius: 12px;
  padding: 10px 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 150ms;
}
.schedule button.slot.busy { background: #ECE5D8; color: #807870; cursor: not-allowed; }
.schedule button.slot.chosen {
  background: var(--accent);
  color: #fff;
  border-color: var(--border);
  box-shadow: 0 3px 0 var(--border);
}
.product.podcast .schedule button.slot { background: #FFE4D6; color: var(--accent-warm); }
.product.podcast .schedule button.slot.busy { background: #ECE5D8; color: #807870; }
.product.podcast .schedule button.slot.chosen { background: var(--accent-warm); color: #fff; }

.schedule .selected-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding: 14px 18px;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: 18px;
  gap: 16px;
  flex-wrap: wrap;
}
.schedule .selected-bar .selected-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.schedule .selected-bar .selected-val { font-family: var(--font-heading); font-weight: 700; font-size: 18px; }
.schedule .legend {
  display: flex; gap: 16px; justify-content: center; margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.schedule .legend span { display: inline-flex; align-items: center; gap: 6px; }
.schedule .legend .swatch { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.schedule .legend .open-sw { background: var(--sauropod-blue-100); }
.product.podcast .schedule .legend .open-sw { background: #FFE4D6; }
.schedule .legend .busy-sw { background: #ECE5D8; }

/* ── TIKTOK SHOWCASE ─────────────────────────────────────── */
.tiktoks {
  padding: 70px 48px;
  background: var(--sauropod-paper);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}
.tiktoks-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.tiktoks-header { text-align: center; margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }
.tiktoks-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--accent);
  margin: 4px 0 8px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.tiktoks-blurb {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-muted);
  margin: 0;
}
.tiktoks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}
@media (max-width: 1100px) and (min-width: 901px) {
  .tiktoks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .tiktoks { padding: 50px 20px; }
  .tiktoks-grid { grid-template-columns: 1fr; gap: 18px; }
}
/* TikTok's embed.js replaces each blockquote with its own iframe player.
   We give the loading state a placeholder height so the section doesn't
   collapse to 0 before the script runs. */
.tiktoks-grid .tiktok-embed {
  margin: 0;
  width: 100%;
  max-width: 605px;
  min-height: 720px;
}

/* ── PODCAST SAMPLES ─────────────────────────────────────── */
.samples { padding: 70px 48px; background: var(--bg); border-top: 2px solid var(--border); position: relative; }
.samples-inner { max-width: 1100px; margin: 0 auto; }
.samples-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.samples-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--accent);
  margin: 4px 0 6px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.samples-blurb { font-family: var(--font-body); font-size: 16px; color: var(--fg-muted); margin: 0; max-width: 520px; }
.samples-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.sample-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 4px 0 var(--border);
  transition: transform 200ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 200ms;
  overflow: hidden;
  cursor: pointer;
}
.sample-card.t-left { transform: rotate(-0.3deg); }
.sample-card.t-right { transform: rotate(0.3deg); }
.sample-card:hover { transform: translateY(-4px) rotate(0deg); box-shadow: 0 7px 0 var(--border); }
.sample-card.active { transform: translateY(-4px); box-shadow: 0 7px 0 var(--border); }
.sample-card .thumb { position: relative; aspect-ratio: 16/9; background: var(--sauropod-ink); }
.sample-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.sample-card .thumb iframe { border: 0; width: 100%; height: 100%; }
.sample-card .thumb-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(20,17,14,0.55) 100%); }
.sample-card .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--accent-warm);
  border: 2px solid var(--border);
  box-shadow: 0 4px 0 var(--border);
  display: flex; align-items: center; justify-content: center;
}
.sample-card .play-btn svg { color: #fff; margin-left: 3px; }
.sample-card .duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 3px 9px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}
.sample-card .meta { padding: 16px 20px 18px; }
.sample-card .meta .title { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--fg); line-height: 1.25; }
.sample-card .meta .host { font-family: var(--font-body); font-size: 13px; color: var(--fg-soft); margin-top: 4px; }

/* ── CONTACT (DARK) ──────────────────────────────────────── */
.contact { padding: 70px 48px; background: var(--sauropod-ink); color: #fff; position: relative; overflow: hidden; }
.contact-head { text-align: center; margin-bottom: 40px; position: relative; }
.contact-head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  color: #fff;
  margin: 4px 0 8px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.contact-head .eyebrow-label { color: var(--sauropod-orange-300); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; max-width: 1100px; margin: 0 auto; position: relative; }

.wa-card {
  background: #25D366;
  color: #fff;
  border: 2px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 6px 0 var(--border);
  position: relative;
}
.wa-card .head { font-family: var(--font-heading); font-weight: 700; font-size: 32px; line-height: 1; margin: 16px 0 6px; letter-spacing: -0.02em; }
.wa-card p { font-family: var(--font-body); font-size: 14px; line-height: 1.5; opacity: 0.95; margin: 8px 0 18px; max-width: 320px; }
.wa-card .number { font-family: var(--font-mono); font-size: 22px; font-weight: 700; letter-spacing: 0.04em; margin: 0 0 18px; }
.wa-card .socials { display: flex; gap: 12px; margin-top: 22px; font-family: var(--font-heading); font-size: 13px; font-weight: 600; }
.wa-card .socials a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }

.map-card {
  background: #fff;
  color: var(--fg);
  border: 2px solid var(--border);
  border-radius: 28px;
  padding: 0;
  box-shadow: 0 6px 0 var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.map-card .map-frame { position: relative; height: 240px; background: var(--sauropod-blue-100); }
.map-card .map-frame iframe { border: 0; width: 100%; height: 100%; }
.map-card .map-pin-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent-warm);
  color: #fff;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.map-card .body { padding: 22px; }
.map-card .body .title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; }
.map-card .body .addr { font-size: 14px; color: var(--fg-muted); margin-top: 4px; margin-bottom: 14px; }
.map-card .body .actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { padding: 70px 48px; position: relative; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 36px; }
.faq-head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  color: var(--accent);
  margin: 4px 0 0;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.faq-head h2.faq-script {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 400;
  color: var(--accent-warm);
  letter-spacing: 0;
  line-height: 1;
}
.faq-item {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 16px 22px;
  margin-bottom: 12px;
  cursor: pointer;
  box-shadow: 0 2px 0 var(--border);
  transition: all 180ms cubic-bezier(0.34,1.56,0.64,1);
}
.faq-item.open { box-shadow: 0 6px 0 var(--border); transform: translateY(-2px); }
.faq-item .row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item .q { font-family: var(--font-heading); font-weight: 700; font-size: 17px; flex: 1; min-width: 0; }
.faq-item .toggle {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--sauropod-blue-100);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 200ms;
}
.faq-item.open .toggle { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-item .a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-muted);
  margin: 12px 0 4px;
  line-height: 1.55;
  display: none;
}
.faq-item.open .a { display: block; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  padding: 32px 48px;
  background: var(--accent);
  color: #fff;
  border-top: 2px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer .wordmark { color: #fff; font-size: 32px; }
.footer .small { font-family: var(--font-heading); font-size: 13px; opacity: 0.85; }

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.float-wa {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  background: #25D366;
  color: #fff;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--border);
  transition: all 180ms cubic-bezier(0.34,1.56,0.64,1);
}
.float-wa .label { display: none; }
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 0 var(--border); }
.float-wa:hover .label { display: inline; }

/* ── MODAL ───────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,17,14,0.6);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  width: min(640px, 100%);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 8px 0 var(--border);
  padding: 36px;
  text-align: center;
}
.modal .title { font-family: var(--font-display); font-size: 48px; color: var(--accent); line-height: 1; }
.modal p { font-family: var(--font-body); font-size: 16px; color: var(--fg-muted); margin: 14px 0 22px; }
.modal .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.modal .close {
  margin-top: 20px;
  background: transparent;
  border: 0;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--fg-soft);
  cursor: pointer;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 24px 20px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 56px; }
  .collage { height: 380px; }
  .collage .frame.f1 { width: 200px; height: 240px; right: 0; }
  .collage .frame.f2 { width: 170px; height: 200px; }
  .collage .frame.f3 { width: 140px; height: 140px; right: 30px; }
  .product { padding: 50px 20px; }
  .product-header { grid-template-columns: 1fr; }
  .product-photo { width: 100%; max-width: 320px; }
  .product-title { font-size: 40px; }
  .price-grid.cols-3 { grid-template-columns: 1fr; }
  .price-grid.cols-4 { grid-template-columns: 1fr; }
  .product.space .price-card { padding: 28px 26px; }
  .product.space .price-card .name { font-size: 28px; }
  .product.space .price-card .price-row { font-size: 44px; }
  .price-card.best { transform: none; }
  .schedule { padding: 14px; }
  .schedule .row { gap: 4px; grid-template-columns: 40px repeat(7, 1fr); }
  .schedule button.slot { font-size: 9px; padding: 8px 2px; }
  .samples { padding: 50px 20px; }
  .samples-title { font-size: 36px; }
  .samples-grid { grid-template-columns: 1fr; }
  .contact { padding: 50px 20px; }
  .contact-head h2 { font-size: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq { padding: 50px 20px; }
  .faq-head h2 { font-size: 40px; }
  .footer { padding: 24px 20px; }
}
