/* ============================================================
   Play This Next — site styles
   Two design modes share one brand:
     html[data-mode="faithful"]  → minimal, close to current site
     html[data-mode="polished"]  → elevated layout, motion, accent
   Accent + hero layout are driven by data-* attrs set by Tweaks.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --bg: #FAF8F4;
  --surface: #FFFFFF;
  --ink: #15171B;
  --ink-soft: #4C515B;
  --ink-faint: #8A8F9A;
  --line: rgba(21,23,27,0.12);
  --line-strong: rgba(21,23,27,0.9);
  --dark: #0A0D14;
  --dark-soft: #11151F;
  --on-dark: #EBE9E4;
  --on-dark-faint: rgba(235,233,228,0.55);

  /* accent (overridden by [data-accent]) */
  --accent: #F1B434;          /* cassette gold */
  --accent-deep: #D99A1F;
  --accent-ink: #15171B;      /* text that sits on the accent fill */
  --star: #F2A93B;

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 72px);

  --font-head: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease: cubic-bezier(0.4, 0.7, 0.3, 1);
}

/* accent variants */
html[data-accent="gold"]   { --accent: #F1B434; --accent-deep: #D99A1F; --accent-ink: #15171B; }
html[data-accent="sunset"] { --accent: #F0852A; --accent-deep: #D26C18; --accent-ink: #FFFFFF; }
html[data-accent="ink"]    { --accent: #15171B; --accent-deep: #000000; --accent-ink: #FFFFFF; }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; letter-spacing: -0.02em; line-height: 1.05; }
p { margin: 0; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.6;
}
html[data-mode="faithful"] .eyebrow::before { display: none; }
html[data-mode="faithful"] .eyebrow { letter-spacing: 0.14em; }

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  max-width: 16ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(10,13,20,0.22); }
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 45%, transparent); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn .azn { width: 17px; height: 17px; }
.btn--sm { padding: 11px 20px; font-size: 14px; }

/* polished mode prefers accent primary CTAs */
html[data-mode="polished"] .btn--cta { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
html[data-mode="polished"] .btn--cta:hover { box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 45%, transparent); }
html[data-mode="faithful"] .btn--cta { background: var(--ink); color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, padding 0.25s, background 0.25s;
}
.site-header[data-stuck="1"] { border-color: var(--line); }
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding 0.25s var(--ease);
}
.site-header[data-stuck="1"] .header-inner { padding-block: 13px; }
.wordmark {
  font-family: var(--font-head); font-weight: 800; font-size: 20px; letter-spacing: -0.03em;
  display: inline-flex; align-items: baseline; gap: 1px; color: var(--ink); white-space: nowrap;
}
.wordmark .dot { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px; border-radius: 999px; font-weight: 500; font-size: 15px; color: var(--ink-soft);
  transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: rgba(21,23,27,0.05); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: none; }

.menu-btn {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 999px;
  background: transparent; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.menu-btn span { width: 17px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
body[data-menu="1"] .menu-btn span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
body[data-menu="1"] .menu-btn span:nth-child(2) { opacity: 0; }
body[data-menu="1"] .menu-btn span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

@media (max-width: 880px) {
  .menu-btn { display: flex; }
  .nav {
    position: fixed; inset: 0 0 auto 0; top: 0; padding: 86px 24px 28px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--line);
    transform: translateY(-104%); transition: transform 0.34s var(--ease); z-index: -1;
  }
  body[data-menu="1"] .nav { transform: translateY(0); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.3); }
  .nav a { padding: 14px 16px; font-size: 18px; border-radius: var(--radius-sm); }
  .header-cta .btn span.long { display: none; }
}

/* ---------- hero ---------- */
.hero { padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero-grid {
  display: grid; gap: clamp(24px, 4vw, 56px); align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}
html[data-hero="text-left"] .hero-media { order: 2; }
html[data-hero="text-left"] .hero-copy  { order: 1; }

.hero-media { position: relative; }
.hero-deck {
  width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -30px rgba(10,13,20,0.4);
}
html[data-mode="polished"] .hero-media::after {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--radius); pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 0.98;
}
.hero-copy h1 .hl { color: var(--accent); }
html[data-accent="ink"] .hero-copy h1 .hl { color: var(--ink); -webkit-text-decoration: underline 6px var(--accent); text-decoration: underline 6px var(--accent); text-underline-offset: 8px; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); max-width: 42ch; margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 26px; color: var(--ink-soft); font-size: 15px; }
.hero-trust .stars { color: var(--star); letter-spacing: 2px; font-size: 16px; }
.hero-meta { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-meta .m { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .m b { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; }
.hero-meta .m span { font-size: 13px; color: var(--ink-faint); font-family: var(--font-mono); letter-spacing: 0.04em; }

/* faithful hero = bordered split box, like the current site */
html[data-mode="faithful"] .hero-frame {
  border: 1px solid var(--line-strong); border-radius: 2px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
html[data-mode="faithful"] .hero-grid { display: none; }
html[data-mode="polished"] .hero-frame { display: none; }
.hero-frame__media { background: #e9e4da; overflow: hidden; }
.hero-frame__media img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame__copy { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: clamp(28px, 5vw, 64px); gap: 30px; }
.hero-frame__copy .hf-title { font-size: clamp(2.4rem, 4.6vw, 4rem); font-weight: 800; letter-spacing: -0.03em; font-family: var(--font-head); line-height: 1.05; margin: 0; }
@media (max-width: 860px) {
  html[data-mode="faithful"] .hero-frame { grid-template-columns: 1fr; min-height: 0; }
  html[data-mode="faithful"] .hero-frame__media { aspect-ratio: 4/3; }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  html[data-hero="text-left"] .hero-media,
  .hero-media { order: 2; }
  html[data-hero="text-left"] .hero-copy,
  .hero-copy { order: 1; }
}

/* ---------- product / shop ---------- */
.product { background: var(--surface); border-block: 1px solid var(--line); }
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start;
}
.gallery { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 14px; }
.gallery__main { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius); background: #ece7dd; overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery__thumbs button { padding: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: #ece7dd; aspect-ratio: 1/1; transition: border-color 0.18s, transform 0.18s; }
.gallery__thumbs button:hover { transform: translateY(-2px); }
.gallery__thumbs button[aria-current="true"] { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.gallery__thumbs button img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 880px) { .gallery { position: static; } }

.product-info .from { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; color: var(--ink-faint); text-transform: uppercase; }
.product-info h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 800; margin-top: 12px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.rating-row .stars { color: var(--star); letter-spacing: 2px; font-size: 18px; }
.rating-row a { font-size: 15px; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 18px; }
.price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; }
.price-note { font-size: 14px; color: var(--ink-faint); }
.buy-block { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; max-width: 420px; }
.buy-block .btn { width: 100%; padding-block: 18px; font-size: 17px; }
.buy-sub { text-align: center; font-size: 13px; color: var(--ink-faint); }
.buy-sub a { text-decoration: underline; }

.product-desc { margin-top: 30px; color: var(--ink-soft); font-size: 16px; display: flex; flex-direction: column; gap: 16px; max-width: 52ch; }
.product-desc .lead { color: var(--ink); font-size: 17px; }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.feature-list .f { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .f .k { font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: 0.02em; min-width: max-content; color: var(--ink); }
html[data-mode="polished"] .feature-list .f { padding: 16px 18px; background: var(--bg); border-radius: var(--radius-sm); border: 1px solid var(--line); flex-direction: column; gap: 6px; }
.specs { margin-top: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; max-width: 460px; }
.specs .s { background: var(--surface); padding: 14px 16px; }
.specs .s span { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.specs .s b { font-family: var(--font-head); font-size: 15px; font-weight: 700; }

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

/* ---------- how to play ---------- */
.how { background: var(--dark); color: var(--on-dark); }
.how .eyebrow { color: var(--accent); }
.how .section-title { color: #fff; }
.how-intro { color: var(--on-dark-faint); max-width: 56ch; font-size: 1.1rem; margin-top: 20px; }
.steps { margin-top: clamp(40px, 6vw, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); counter-reset: step; }
.step { position: relative; padding-top: 28px; border-top: 1px solid rgba(235,233,228,0.18); }
.step .n { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: 0.08em; }
.step h3 { font-size: 1.18rem; font-weight: 700; margin-top: 12px; color: #fff; }
.step p { margin-top: 10px; color: var(--on-dark-faint); font-size: 0.98rem; }
.how-rules { margin-top: clamp(40px, 5vw, 60px); display: flex; flex-wrap: wrap; gap: 16px; }
.rule { display: flex; gap: 12px; align-items: baseline; padding: 18px 22px; border: 1px solid rgba(235,233,228,0.18); border-radius: var(--radius-sm); flex: 1 1 280px; }
.rule b { font-family: var(--font-head); color: var(--accent); font-weight: 800; }
.rule span { color: var(--on-dark-faint); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- reviews ---------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; }
.score { display: flex; align-items: center; gap: 18px; }
.score .big { font-family: var(--font-head); font-size: clamp(3rem, 7vw, 4.6rem); font-weight: 800; line-height: 1; }
.score .meta .stars { color: var(--star); letter-spacing: 3px; font-size: 22px; }
.score .meta div:last-child { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }
.reviews-grid { margin-top: clamp(36px, 5vw, 56px); columns: 3; column-gap: 24px; }
@media (max-width: 980px) { .reviews-grid { columns: 2; } }
@media (max-width: 640px) { .reviews-grid { columns: 1; } }
.review {
  break-inside: avoid; margin-bottom: 24px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px;
}
html[data-mode="polished"] .review { box-shadow: 0 16px 40px -28px rgba(10,13,20,0.35); }
.review .stars { color: var(--star); letter-spacing: 2px; font-size: 15px; }
.review h4 { font-size: 1.12rem; font-weight: 800; margin-top: 14px; }
.review p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; line-height: 1.62; }
.review .by { margin-top: 18px; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.review .by .who { font-weight: 700; }
.review .by .badge { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-deep); border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent); padding: 2px 7px; border-radius: 999px; }
.review .by .date { margin-left: auto; color: var(--ink-faint); font-size: 12px; font-family: var(--font-mono); }
.reviews-cta { text-align: center; margin-top: clamp(36px, 5vw, 52px); }

/* ---------- lifestyle band / CTA ---------- */
.band { position: relative; }
.band-slot { width: 100%; height: clamp(280px, 38vw, 520px); object-fit: cover; object-position: 50% 72%; display: block; }
.band-cta { background: var(--accent); color: var(--accent-ink); }
.band-cta .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.band-cta h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; max-width: 18ch; }
html[data-accent="ink"] .band-cta { color: #fff; }
html[data-accent="ink"] .band-cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
html[data-accent="ink"] .band-cta .btn--ghost:hover { background: #fff; color: var(--ink); }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink);
}
.faq-q .ic { flex: 0 0 auto; width: 24px; height: 24px; position: relative; transition: transform 0.3s var(--ease); }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; inset: 0; margin: auto; }
.faq-q .ic::before { width: 16px; height: 2px; }
.faq-q .ic::after { width: 2px; height: 16px; transition: transform 0.3s var(--ease); }
.faq-item[data-open="1"] .faq-q .ic::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-a__inner { padding-bottom: 26px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; display: flex; flex-direction: column; gap: 14px; max-width: 60ch; }
.faq-a a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- about ---------- */
.about { background: var(--surface); border-block: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(28px, 5vw, 64px); }
.about-body { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.5; color: var(--ink); font-weight: 400; max-width: 28ch; }
.about-body--lead { font-size: clamp(1.35rem, 2.6vw, 2rem); font-weight: 500; letter-spacing: -0.01em; max-width: 22ch; }
.about-col { display: flex; flex-direction: column; gap: 36px; }
.about-sub h3 { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 400; margin-bottom: 14px; }
.about-sub p { color: var(--ink-soft); font-size: 16px; max-width: 60ch; }
.about em, .about-body em { font-style: italic; }
.about a.name { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 800; max-width: 14ch; }
.contact-copy p { margin-top: 20px; color: var(--ink-soft); max-width: 42ch; }
.contact-copy .direct { margin-top: 28px; font-size: 15px; color: var(--ink-soft); }
.contact-copy .direct a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.field input, .field textarea {
  font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 14px 16px; transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 28%, transparent); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { align-self: flex-start; margin-top: 4px; }
.form-status { font-size: 14px; min-height: 20px; }
.form-status[data-ok="1"] { color: var(--accent-deep); font-weight: 600; }
.form-status[data-ok="0"] { color: #c0392b; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } .field.row { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark); }
.footer-top { padding-block: clamp(48px, 7vw, 80px); display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; align-items: flex-start; }
.footer-brand .wordmark { color: #fff; }
.footer-brand p { margin-top: 14px; color: var(--on-dark-faint); max-width: 34ch; font-size: 15px; }
.footer-nav { display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap; }
.footer-nav .col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 400; margin-bottom: 14px; }
.footer-nav .col a { display: block; color: var(--on-dark); padding: 6px 0; font-size: 15px; opacity: 0.85; transition: opacity 0.15s; }
.footer-nav .col a:hover { opacity: 1; color: var(--accent); }
.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(235,233,228,0.22); display: grid; place-items: center; transition: background 0.18s, color 0.18s, border-color 0.18s; }
.socials a:hover { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(235,233,228,0.14); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; color: var(--on-dark-faint); font-size: 13px; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- scroll reveal ----------
   Fail-safe: content is visible by default. The hidden→animate state only
   applies once JS adds .reveal-js to <html>, so if JS/IO never runs (or a
   headless capture freezes a transition) the content still shows. */
[data-reveal] { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.reveal-js [data-reveal]:not(.is-in) { opacity: 0; transform: translateY(22px); }
html.reveal-js[data-mode="faithful"] [data-reveal]:not(.is-in) { transform: translateY(12px); }
[data-reveal][data-d="1"] { transition-delay: 0.08s; }
[data-reveal][data-d="2"] { transition-delay: 0.16s; }
[data-reveal][data-d="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html.reveal-js [data-reveal]:not(.is-in) { opacity: 1; transform: none; }
}

/* ---------- partial star rating (rendered by JS into .js-stars) ---------- */
.js-stars { display: inline-block; line-height: 0; vertical-align: middle; }
.js-stars svg { display: block; height: 1em; width: auto; }


