/* ============================================================
   celestifex.com - black-velvet celestial gallery
   Guia editorial de jogos gratuitos (pt-PT)
   Handwritten CSS. No frameworks.
   ============================================================ */

:root {
  /* Achromatic scale (flora) */
  --obsidian: #000000;
  --pitch:    #050505;
  --carbon:   #191919;
  --graphite: #303030;
  --slate:    #606060;
  --ash:      #7b7b7b;
  --fog:      #b4b4b4;
  --mist:     #bfbfbf;
  --bone:     #eeeeee;

  /* The one restrained cosmic accent */
  --violet:      #7c6cff;
  --violet-dim:  #5b4fd6;
  --violet-haze: rgba(124, 108, 255, 0.14);

  --hairline: rgba(180, 180, 180, 0.34);
  --hairline-soft: rgba(180, 180, 180, 0.16);

  --font-display: "Cinzel", "Playfair Display", Georgia, serif;
  --font-body: "Instrument Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-card: 24px;
  --radius-btn: 10px;
  --radius-tag: 10px;
  --radius-pill: 9999px;

  --edge: clamp(18px, 5.2vw, 92px);
  --stack: clamp(72px, 11vh, 148px);

  --tap: 44px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--obsidian);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: clamp(16px, 0.6vw + 14.6px, 17.5px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--violet); color: #fff; }

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

/* subtle starfield wash on the pure-black canvas */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1px 1px at 12% 18%, rgba(238,238,238,0.5), transparent),
    radial-gradient(1px 1px at 74% 12%, rgba(238,238,238,0.35), transparent),
    radial-gradient(1px 1px at 33% 62%, rgba(124,108,255,0.5), transparent),
    radial-gradient(1.4px 1.4px at 88% 47%, rgba(238,238,238,0.28), transparent),
    radial-gradient(1px 1px at 56% 83%, rgba(238,238,238,0.3), transparent),
    radial-gradient(1px 1px at 20% 92%, rgba(124,108,255,0.4), transparent);
  opacity: 0.7;
}
main, header, footer { position: relative; z-index: 1; }

/* ---------- layout helpers ---------- */
.bleed { padding-inline: var(--edge); }
.measure { max-width: 68ch; }
.wide { max-width: 1280px; margin-inline: auto; }

.section {
  padding-block: var(--stack);
}
.section--tight { padding-block: clamp(48px, 7vh, 92px); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--violet);
  display: inline-block;
}

.serif {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--bone);
}
.serif em { font-style: italic; font-weight: 400; color: var(--violet); }

h1.serif { font-size: clamp(2.6rem, 7.4vw, 5.5rem); }
h2.serif { font-size: clamp(1.9rem, 4.4vw, 3.2rem); }
h3.serif { font-size: clamp(1.4rem, 2.6vw, 2rem); }

.lead {
  color: var(--fog);
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.32rem);
  line-height: 1.5;
  letter-spacing: -0.015em;
}
.muted { color: var(--ash); }
.section-head { display: grid; gap: 18px; margin-bottom: clamp(36px, 5vw, 64px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding-block: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bone);
}
.brand svg { width: 26px; height: 26px; flex: none; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ash);
  font-weight: 600;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fog);
  padding: 9px 13px;
  border-radius: var(--radius-btn);
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--bone); background: var(--carbon); }
.nav-links a[aria-current="page"] { color: var(--bone); }
.nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 1.5px;
  margin-top: 3px;
  background: var(--violet);
  border-radius: 2px;
}

.nav-cta {
  margin-left: 6px;
}

.burger {
  display: none;
  width: var(--tap); height: var(--tap);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-btn);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  display: block;
  width: 18px; height: 1.6px;
  background: var(--bone);
  transition: transform .24s ease, opacity .2s ease;
}
.burger span { position: relative; }
.burger span::before { position: absolute; top: -6px; }
.burger span::after  { position: absolute; top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
  .burger { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--obsidian);
    border-bottom: 1px solid var(--hairline);
    padding: 14px var(--edge) 26px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 14px 12px; font-size: 16px; border-bottom: 1px solid var(--hairline-soft); border-radius: 0; }
  .nav-links a:hover { background: transparent; }
  .nav-links .nav-cta { margin: 12px 0 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: var(--tap);
  padding: 11px 20px;
  border-radius: var(--radius-btn);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .16s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary { background: var(--bone); color: var(--pitch); }
.btn-primary:hover { transform: translateY(-2px); background: #fff; }
.btn-ghost { border-color: var(--hairline); color: var(--bone); background: transparent; }
.btn-ghost:hover { background: var(--carbon); border-color: var(--fog); transform: translateY(-2px); }
.btn-violet { background: var(--violet); color: #fff; }
.btn-violet:hover { background: var(--violet-dim); transform: translateY(-2px); }
.btn-sm { min-height: 40px; padding: 8px 15px; font-size: 13.5px; }

@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn-primary:hover, .btn-ghost:hover, .btn-violet:hover { transform: none; }
}

/* store buttons */
.store-row { display: flex; flex-wrap: wrap; gap: 10px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 16px 10px 14px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--hairline);
  background: var(--pitch);
  min-height: var(--tap);
  transition: border-color .18s ease, background .18s ease, transform .16s ease;
}
.store-btn:hover { border-color: var(--fog); background: #0d0d0d; transform: translateY(-2px); }
.store-btn svg { width: 22px; height: 22px; flex: none; }
.store-btn .store-txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn .store-txt small { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); font-weight: 600; }
.store-btn .store-txt b { font-size: 14.5px; font-weight: 600; color: var(--bone); }
.store-note {
  font-size: 12.5px;
  color: var(--ash);
  padding: 6px 11px;
  border: 1px dashed var(--hairline);
  border-radius: var(--radius-tag);
  align-self: center;
}
.store-note strong { color: var(--violet); font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .store-btn:hover { transform: none; } }

/* ============================================================
   TAGS / PILLS
   ============================================================ */
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--fog);
  background: var(--carbon);
  border: 1px solid var(--hairline-soft);
  padding: 4px 11px;
  border-radius: var(--radius-tag);
}
.tag--offline { color: var(--bone); border-color: var(--hairline); }
.tag--free { color: var(--violet); border-color: rgba(124,108,255,0.35); background: var(--violet-haze); }
.tag--two { color: var(--bone); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-block: clamp(56px, 9vh, 128px) clamp(48px, 7vh, 96px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
}
.hero-copy { display: grid; gap: 26px; max-width: 640px; }
.hero h1 { margin-top: 4px; }
.hero h1 .line { display: block; }
.hero .lead { max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ash);
  letter-spacing: -0.005em;
}
.trust-line svg { width: 15px; height: 15px; color: var(--violet); flex: none; }

/* matted-image collage */
.collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
  aspect-ratio: 1 / 1.02;
}
.matte {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--carbon);
  position: relative;
}
.matte img { width: 100%; height: 100%; object-fit: cover; }
.matte::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.5);
  pointer-events: none;
}
.matte.m1 { grid-column: 1 / 4; grid-row: 1 / 3; }
.matte.m2 { grid-column: 4 / 7; grid-row: 1 / 2; }
.matte.m3 { grid-column: 4 / 7; grid-row: 2 / 4; }
.matte.m4 { grid-column: 1 / 3; grid-row: 3 / 4; }
.matte.m5 { grid-column: 3 / 4; grid-row: 3 / 4; }
@media (max-width: 560px) {
  .collage { gap: 9px; aspect-ratio: 1 / 0.86; }
}

/* ============================================================
   METRICS (dataviz tiles)
   ============================================================ */
.metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
.metric {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--carbon);
  padding: 22px 22px 20px;
  display: grid;
  gap: 6px;
  align-content: start;
}
.metric .num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1;
  color: var(--bone);
}
.metric .num sup { font-size: 0.5em; color: var(--ash); font-weight: 500; }
.metric .lbl { font-size: 13px; color: var(--ash); letter-spacing: 0.01em; }
.metric.metric--accent .num { color: var(--violet); }

/* rating bars viz */
.ratings {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--carbon);
  padding: clamp(22px, 3vw, 34px);
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
}
.ratings h3 { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--fog); letter-spacing: 0.02em; }
.rbar { display: grid; grid-template-columns: minmax(120px, 26%) 1fr auto; align-items: center; gap: 14px; }
.rbar .rname { font-size: 14px; color: var(--bone); font-weight: 500; }
.rbar .track { height: 8px; border-radius: var(--radius-pill); background: var(--graphite); overflow: hidden; }
.rbar .fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--violet-dim), var(--violet)); transform-origin: left; transform: scaleX(var(--v, 0.9)); transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.rbar .rval { font-size: 13.5px; color: var(--fog); font-variant-numeric: tabular-nums; min-width: 62px; text-align: right; }
@media (prefers-reduced-motion: reduce) { .rbar .fill { transition: none; } }
@media (max-width: 560px) {
  .rbar { grid-template-columns: 1fr auto; grid-template-areas: "n v" "t t"; row-gap: 8px; }
  .rbar .rname { grid-area: n; } .rbar .rval { grid-area: v; } .rbar .track { grid-area: t; }
}

/* ============================================================
   ICON GRID (5 previews)
   ============================================================ */
.icongrid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .icongrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 940px) { .icongrid { grid-template-columns: repeat(5, 1fr); } }
.icontile {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-card);
  background: var(--carbon);
  transition: border-color .2s ease, transform .2s ease;
  text-align: left;
}
.icontile:hover { border-color: var(--fog); transform: translateY(-3px); }
.icontile .ico { width: 100%; aspect-ratio: 1; border-radius: 14px; overflow: hidden; border: 1px solid var(--hairline-soft); }
.icontile .ico svg, .icontile .ico img { width: 100%; height: 100%; object-fit: cover; }
.icontile b { font-size: 14px; font-weight: 600; color: var(--bone); }
.icontile span { font-size: 12px; color: var(--ash); }
@media (prefers-reduced-motion: reduce) { .icontile:hover { transform: none; } }

/* ============================================================
   METHODOLOGY / CURATOR
   ============================================================ */
.method-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}
@media (min-width: 900px) { .method-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }
.method-list { display: grid; gap: 2px; margin-top: 12px; }
.method-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--hairline-soft);
}
.method-item .idx { font-family: var(--font-display); font-size: 1.1rem; color: var(--violet); font-weight: 600; }
.method-item h3 { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--bone); margin-bottom: 5px; }
.method-item p { font-size: 14.5px; color: var(--ash); max-width: 52ch; }

.curator {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--carbon);
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 16px;
  align-content: start;
}
.curator .sig {
  display: flex; align-items: center; gap: 14px;
}
.curator .sig .av {
  width: 52px; height: 52px; border-radius: var(--radius-pill);
  border: 1px solid var(--hairline);
  background: radial-gradient(circle at 34% 30%, #2b2740, #0c0c14);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--violet); font-weight: 600;
}
.curator .sig b { font-size: 15px; color: var(--bone); display: block; }
.curator .sig span { font-size: 12.5px; color: var(--ash); }
.curator p { font-size: 14.5px; color: var(--fog); }
.curator .caveat { font-size: 13.5px; color: var(--ash); border-left: 2px solid var(--violet); padding-left: 14px; }

/* ============================================================
   CATALOG - game cards
   ============================================================ */
.filterbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(28px, 4vw, 44px); }
.chip {
  font-size: 13px;
  font-weight: 500;
  color: var(--fog);
  background: transparent;
  border: 1px solid var(--hairline);
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  min-height: 38px;
  transition: all .18s ease;
}
.chip:hover { border-color: var(--fog); color: var(--bone); }
.chip[aria-pressed="true"] { background: var(--bone); color: var(--pitch); border-color: var(--bone); }

.catalog { display: grid; gap: clamp(20px, 3vw, 30px); }
.gamecard {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--carbon);
  overflow: hidden;
  display: grid;
}
@media (min-width: 780px) {
  .gamecard { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }
  .gamecard--flip { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
  .gamecard--flip .gc-media { order: 2; }
}
.gc-media { position: relative; background: var(--pitch); border-right: 1px solid var(--hairline-soft); min-height: 260px; }
.gamecard--flip .gc-media { border-right: none; border-left: 1px solid var(--hairline-soft); }
.gc-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 11; }
.gc-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bone); background: rgba(0,0,0,0.7);
  border: 1px solid var(--hairline);
  padding: 5px 11px; border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
/* Sits over real store screenshots, so it carries its own scrim. */
.gc-attr {
  position: absolute; bottom: 10px; right: 12px;
  font-size: 10.5px; color: var(--fog);
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  backdrop-filter: blur(3px);
}
.gc-body { padding: clamp(22px, 2.6vw, 34px); display: grid; gap: 16px; align-content: start; }
.gc-head { display: grid; gap: 8px; }
.gc-genre { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet); }
.gc-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 600; color: var(--bone); line-height: 1.05; }
.gc-hook { font-size: 14.5px; color: var(--fog); }
.gc-meta {
  display: flex; flex-wrap: wrap; gap: 6px 16px;
  font-size: 12.5px; color: var(--ash);
  padding-block: 12px;
  border-block: 1px solid var(--hairline-soft);
}
.gc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.gc-meta b { color: var(--fog); font-weight: 600; }
.gc-review { font-size: 14.5px; color: var(--fog); line-height: 1.56; }
.gc-review .flag { color: var(--bone); }
.gc-why { display: grid; gap: 7px; }
.gc-why li { display: grid; grid-template-columns: auto 1fr; gap: 10px; font-size: 13.5px; color: var(--ash); }
.gc-why li::before { content: ""; width: 5px; height: 5px; margin-top: 8px; border-radius: 50%; background: var(--violet); }
.callout {
  font-size: 13px; color: var(--fog);
  background: var(--violet-haze);
  border: 1px solid rgba(124,108,255,0.3);
  border-radius: var(--radius-tag);
  padding: 11px 14px;
}
.callout b { color: var(--bone); }

/* ============================================================
   STEPS (como começar)
   ============================================================ */
.steps { display: grid; gap: 16px; counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-card);
  background: var(--carbon);
  padding: clamp(24px, 3vw, 32px);
  display: grid;
  gap: 12px;
  align-content: start;
  position: relative;
}
.step .snum {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 600; line-height: 1;
  color: var(--graphite);
  -webkit-text-stroke: 1px var(--slate);
}
.step h3 { font-family: var(--font-body); font-size: 16.5px; font-weight: 600; color: var(--bone); }
.step p { font-size: 14px; color: var(--ash); }

/* ============================================================
   TRANSPARENCY
   ============================================================ */
.transp-grid { display: grid; gap: 14px; }
@media (min-width: 760px) { .transp-grid { grid-template-columns: repeat(3, 1fr); } }
.transp {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-card);
  padding: 24px;
  background: linear-gradient(180deg, rgba(25,25,25,0.9), rgba(10,10,10,0.9));
  display: grid; gap: 10px; align-content: start;
}
.transp h3 { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--bone); display: flex; align-items: center; gap: 9px; }
.transp h3 svg { width: 17px; height: 17px; color: var(--violet); }
.transp p { font-size: 14px; color: var(--ash); }

/* ============================================================
   FEATURED (destaque da semana)
   ============================================================ */
.featured {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--carbon);
  display: grid;
}
@media (min-width: 900px) { .featured { grid-template-columns: 1.15fr 0.85fr; } }
.featured-media { position: relative; min-height: 300px; background: var(--pitch); }
.featured-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: clamp(28px, 3.4vw, 48px); display: grid; gap: 18px; align-content: center; }
.featured-body .eyebrow::before { background: var(--bone); }
.featured-body h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--bone); }
.featured-body p { color: var(--fog); font-size: 15px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--hairline-soft); }
.faq details {
  border-bottom: 1px solid var(--hairline-soft);
  padding: 4px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 500;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: 6px; top: 50%;
  width: 12px; height: 12px;
  margin-top: -6px;
  background:
    linear-gradient(var(--fog),var(--fog)) center/12px 1.6px no-repeat,
    linear-gradient(var(--fog),var(--fog)) center/1.6px 12px no-repeat;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 44px 24px 0; color: var(--ash); font-size: 15px; max-width: 74ch; }
@media (prefers-reduced-motion: reduce) { .faq summary::after { transition: none; } }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: clamp(32px, 4.5vw, 60px);
  background:
    radial-gradient(120% 140% at 90% 10%, rgba(124,108,255,0.16), transparent 60%),
    var(--carbon);
  display: grid;
  gap: 20px;
  justify-items: start;
}
.cta-strip h2 { max-width: 20ch; }
.cta-strip .lead { max-width: 54ch; }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}
@media (min-width: 860px) { .form-wrap { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.contact-form {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--carbon);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--fog); letter-spacing: 0.01em; }
.field input, .field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--bone);
  background: var(--graphite);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-card);
  padding: 13px 16px;
  width: 100%;
  transition: border-color .18s ease;
}
.field textarea { min-height: 130px; resize: vertical; border-radius: 18px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--violet); }
.field input::placeholder, .field textarea::placeholder { color: var(--slate); }
.consent { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--violet); flex: none; }
.consent label { font-size: 13px; color: var(--ash); font-weight: 400; }
.consent a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.form-err { font-size: 13px; color: var(--violet); min-height: 1em; }

.contact-aside { display: grid; gap: 22px; align-content: start; }
.contact-aside .card {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-card);
  background: var(--carbon);
  padding: 24px;
  display: grid; gap: 8px;
}
.contact-aside .card b { color: var(--bone); font-size: 14px; }
.contact-aside .card a { color: var(--violet); }
.contact-aside .card span { font-size: 14px; color: var(--ash); }

/* ============================================================
   ARTICLE (review + policy + about)
   ============================================================ */
.prose { max-width: 72ch; display: grid; gap: 20px; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; color: var(--bone); margin-top: 22px; }
.prose h3 { font-family: var(--font-body); font-size: 1.15rem; font-weight: 600; color: var(--bone); margin-top: 10px; }
.prose p { color: var(--fog); font-size: 16px; line-height: 1.62; }
.prose ul { display: grid; gap: 9px; }
.prose ul li { display: grid; grid-template-columns: auto 1fr; gap: 11px; color: var(--fog); font-size: 15.5px; }
.prose ul li::before { content: ""; width: 6px; height: 6px; margin-top: 9px; border-radius: 50%; background: var(--violet); }
.prose a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--bone); }
.prose .note { font-size: 13px; color: var(--ash); }

.review-hero { display: grid; gap: 26px; }
@media (min-width: 900px) { .review-hero { grid-template-columns: 1fr 1fr; align-items: center; } }
.review-hero .rh-media {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--pitch);
}
.review-hero .rh-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/11; }

.factsheet {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--carbon);
  padding: 26px;
  display: grid;
  gap: 2px;
  align-self: start;
}
.factsheet .row { display: grid; grid-template-columns: 40% 1fr; gap: 12px; padding: 11px 0; border-top: 1px solid var(--hairline-soft); font-size: 14px; }
.factsheet .row:first-child { border-top: none; }
.factsheet .row dt { color: var(--ash); }
.factsheet .row dd { color: var(--bone); }

.backlink { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ash); }
.backlink:hover { color: var(--bone); }
.backlink svg { width: 15px; height: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--hairline);
  margin-top: var(--stack);
  padding-block: clamp(48px, 6vw, 80px) 32px;
}
.footer-grid {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { display: grid; gap: 14px; align-content: start; max-width: 42ch; }
.footer-brand .brand { font-size: 1.4rem; }
.footer-brand p { font-size: 13.5px; color: var(--ash); }
.footer-col h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); margin-bottom: 14px; font-weight: 600; }
.footer-col a { display: block; font-size: 14px; color: var(--fog); padding: 6px 0; }
.footer-col a:hover { color: var(--bone); }
.footer-col .mail { color: var(--violet); }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 26px;
  border-top: 1px solid var(--hairline-soft);
  display: grid;
  gap: 16px;
}
.disclaimer { font-size: 11.5px; line-height: 1.6; color: var(--slate); max-width: 96ch; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: 12.5px; color: var(--ash); }
.footer-legal .links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-legal a:hover { color: var(--bone); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   EDITORIAL PHOTOGRAPHY (CC0 stock, desaturated to sit in the dark palette)
   ============================================================ */
.photo {
  position: relative;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--pitch);
}
.photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.06) brightness(0.82);
}
/* Violet wash ties the photography to the one accent colour. */
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5,5,5,0.72), transparent 58%),
    radial-gradient(120% 130% at 85% 12%, rgba(124,108,255,0.20), transparent 62%);
  pointer-events: none;
}
.photo figcaption {
  position: absolute; left: 14px; bottom: 12px; right: 14px;
  font-size: 11px; line-height: 1.45; color: var(--ash);
  z-index: 1;
}

.curator .photo { aspect-ratio: 16 / 9; margin-bottom: 2px; }

.photo--band { aspect-ratio: 21 / 7; margin-bottom: clamp(22px, 3vw, 34px); }
@media (max-width: 640px) { .photo--band { aspect-ratio: 3 / 2; } }

.cta-strip--media { justify-items: stretch; align-items: center; }
@media (min-width: 880px) { .cta-strip--media { grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 52px); } }
.cta-copy { display: grid; gap: 20px; justify-items: start; }
.cta-strip--media .photo { aspect-ratio: 4 / 3; }
@media (max-width: 879px) { .cta-strip--media .photo { aspect-ratio: 16 / 9; } }

/* small page hero for interior pages */
.page-hero { padding-block: clamp(56px, 8vh, 108px) clamp(28px, 4vw, 52px); }
.page-hero .lead { max-width: 60ch; margin-top: 20px; }
.page-hero .eyebrow { margin-bottom: 20px; }

.notfound { min-height: 62vh; display: grid; place-content: center; text-align: center; gap: 24px; }
.notfound .code { font-family: var(--font-display); font-size: clamp(4rem, 16vw, 9rem); font-weight: 600; color: var(--bone); line-height: 1; }
.notfound .code span { color: var(--violet); }
