/* ============================================================
   verteclara.com - Warm linen gallery / calm editorial
   Handwritten CSS. Theme: cosmos (linen gallery wall).
   Palette: linen #f7f5f3 · ink #111 · sage #4a7c59 (single accent)
   Type: Cardo (display serif) + Golos Text (body/UI)
   ============================================================ */

:root {
  --linen: #f7f5f3;
  --paper: #ffffff;
  --ink: #111111;
  --stone: #57534f;
  --pebble: #8a8683;
  --line: rgba(17, 17, 17, 0.12);
  --line-soft: rgba(17, 17, 17, 0.07);
  --sage: #4a7c59;
  --sage-deep: #3c6549;
  --sage-wash: rgba(74, 124, 89, 0.10);

  --radius: 16px;
  --radius-tile: 12px;

  --serif: "Cardo", Georgia, "Times New Roman", serif;
  --sans: "Golos Text", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(20px, 5.5vw, 96px);
  --section-gap: clamp(64px, 9vw, 132px);

  --measure: 66ch;
}

/* ---------- 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(--linen);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(16px, 0.5vw + 15px, 17px);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
svg { display: block; }
a { color: var(--sage); text-decoration: none; }
a:hover { color: var(--sage-deep); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2.5px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 clamp(14px, 2vw, 22px);
}
.display {
  font-size: clamp(2.6rem, 7.4vw, 5.6rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.h2 { font-size: clamp(1.9rem, 4vw, 3.05rem); letter-spacing: -0.022em; }
.h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.015em; }
.lede {
  font-family: var(--sans);
  font-size: clamp(1.06rem, 1.1vw + 0.85rem, 1.32rem);
  line-height: 1.5;
  color: var(--stone);
  max-width: 54ch;
}
.prose { max-width: var(--measure); }
.prose p { margin: 0 0 1.15em; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- layout primitives ---------- */
.wrap { padding-inline: var(--gutter); }
.section { padding-block: var(--section-gap); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- skip link ---------- */
.skip {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: 10px; z-index: 200;
  font-weight: 600; transition: top 0.18s ease;
}
.skip:focus { top: 16px; color: var(--paper); }

/* ============================================================
   NAV - floating pill
   ============================================================ */
.nav-shell {
  position: sticky; top: 0; z-index: 100;
  padding: clamp(10px, 1.6vw, 18px) var(--gutter) 0;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 10px 9px 20px;
  max-width: 1180px; margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 600; }
.brand:hover { color: var(--ink); }
.brand-mark { width: 26px; height: 26px; flex: none; }
.brand-word { font-family: var(--serif); font-size: 1.32rem; letter-spacing: -0.01em; }
.brand-word b { font-weight: 400; color: var(--sage); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-weight: 500; font-size: 0.95rem;
  padding: 8px 14px; border-radius: 999px; display: inline-block;
}
.nav-links a:hover { background: var(--sage-wash); color: var(--sage-deep); }
.nav-links a[aria-current="page"] { color: var(--sage-deep); background: var(--sage-wash); }

.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--ink); color: var(--paper);
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
}
.nav-cta:hover { background: #000; color: var(--paper); }

.burger {
  display: none; width: 44px; height: 44px; border: 0; background: none;
  cursor: pointer; align-items: center; justify-content: center;
}
.burger span { position: relative; width: 20px; height: 2px; background: var(--ink); transition: transform 0.22s ease, opacity 0.2s ease; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: transform 0.22s ease; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.nav.open .burger span { background: transparent; }
.nav.open .burger span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links, .nav > .nav-cta { display: none; }
  .burger { display: inline-flex; }
  .nav.open { border-radius: 22px; flex-wrap: wrap; }
  .nav.open .nav-links {
    order: 3; flex-basis: 100%; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 8px 4px 10px; border-top: 1px solid var(--line-soft); margin-top: 8px;
  }
  .nav.open .nav-links a { padding: 12px 14px; font-size: 1.02rem; }
  .nav.open > .nav-cta { order: 4; flex-basis: 100%; justify-content: center; display: inline-flex; margin-top: 4px; }
}

/* ============================================================
   HERO - collage of tiles framing centered copy
   ============================================================ */
.hero { position: relative; padding-top: clamp(40px, 6vw, 76px); overflow: clip; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto; text-align: center;
  padding-block: clamp(24px, 5vw, 60px);
}
.hero h1 { margin-bottom: clamp(18px, 2.6vw, 30px); }
.hero .lede { margin: 0 auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: clamp(26px, 3.4vw, 40px); }
.hero-trust {
  margin-top: clamp(20px, 2.6vw, 30px);
  font-size: 0.88rem; color: var(--pebble);
  display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: center;
}
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); flex: none; }

/* collage tiles */
.collage { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.tile {
  position: absolute; border-radius: var(--radius-tile); overflow: hidden;
  border: 1px solid var(--line-soft); background: var(--paper);
}
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.t1 { width: 148px; height: 190px; left: 3%;  top: 8%;  transform: rotate(-5deg); }
.t2 { width: 128px; height: 128px; left: 11%; top: 60%; transform: rotate(4deg); }
.t3 { width: 120px; height: 158px; right: 4%; top: 12%; transform: rotate(5deg); }
.t4 { width: 150px; height: 116px; right: 8%; top: 62%; transform: rotate(-4deg); }
.t5 { width: 96px;  height: 96px;  left: 24%; top: 4%;  transform: rotate(3deg); }
.t6 { width: 92px;  height: 118px; right: 22%; top: 3%;  transform: rotate(-6deg); }
@media (max-width: 1080px) { .t5, .t6 { display: none; } }
@media (max-width: 880px) {
  .collage { position: relative; height: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 30px; }
  .tile { position: static; width: auto !important; height: auto !important; aspect-ratio: 3 / 4; transform: none !important; }
  .t4 { aspect-ratio: 4 / 3; }
}
@media (max-width: 520px) { .collage { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 14px 24px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; transition: transform 0.14s ease, background 0.18s ease, color 0.18s ease;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: #000; color: var(--paper); }
.btn-outline { background: var(--paper); color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* store buttons */
.stores { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 16px 11px 14px; border-radius: 13px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  font-weight: 600; font-size: 0.9rem; line-height: 1.15; transition: border-color 0.18s ease, transform 0.14s ease;
}
.store-btn:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.store-btn:active { transform: translateY(0); }
.store-btn svg { width: 22px; height: 22px; flex: none; }
.store-btn small { display: block; font-weight: 500; font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--pebble); }
.store-btn b { font-weight: 600; }

/* ============================================================
   METRICS - stat tiles (dataviz honest data)
   ============================================================ */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1px, 0.4vw, 6px); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--line); }
.metric { background: var(--paper); padding: clamp(22px, 3vw, 38px) clamp(18px, 2.2vw, 30px); display: flex; flex-direction: column; gap: 6px; }
.metric-num { font-family: var(--serif); font-size: clamp(2.6rem, 4.6vw, 3.7rem); line-height: 0.9; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.metric-num .u { font-size: 0.42em; color: var(--sage-deep); letter-spacing: 0; vertical-align: 0.35em; margin-left: 2px; }
.metric-label { font-weight: 600; font-size: 0.95rem; }
.metric-sub { font-size: 0.84rem; color: var(--pebble); }
.metric .bar { height: 5px; border-radius: 3px; background: var(--sage-wash); margin-top: 8px; overflow: hidden; }
.metric .bar > i { display: block; height: 100%; background: var(--sage); border-radius: 3px; }
@media (max-width: 760px) { .metrics { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   ICON GRID - 5 preview anchors
   ============================================================ */
.icongrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1.4vw, 18px); }
.iconcell {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  padding: clamp(16px, 2vw, 24px) 12px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); color: var(--ink); transition: border-color 0.18s ease, transform 0.16s ease;
}
.iconcell:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-3px); }
.iconcell .ic { width: 100%; aspect-ratio: 1; border-radius: var(--radius-tile); overflow: hidden; }
.iconcell .ic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iconcell b { font-weight: 600; font-size: 0.98rem; }
.iconcell span { font-size: 0.8rem; color: var(--pebble); }
@media (max-width: 820px) { .icongrid { grid-template-columns: repeat(3, 1fr); } .iconcell:nth-child(4), .iconcell:nth-child(5) { grid-column: span 1; } }
@media (max-width: 520px) { .icongrid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SPLIT / editorial two-column
   ============================================================ */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 76px); align-items: start; }
.split.narrow { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .split, .split.narrow { grid-template-columns: 1fr; gap: 32px; } }

/* curator legend card */
.curator { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); padding: clamp(22px, 3vw, 34px); }
.curator-top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.curator-ava { width: 58px; height: 58px; border-radius: 50%; flex: none; overflow: hidden; border: 1px solid var(--line); }
.curator-ava svg { width: 100%; height: 100%; }
.curator-name { font-family: var(--serif); font-size: 1.32rem; line-height: 1.1; }
.curator-role { font-size: 0.85rem; color: var(--pebble); }
.curator p { margin: 0 0 0.9em; color: var(--stone); font-size: 0.97rem; }
.curator .sign { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-top: 4px; }
.caveat { border-left: 2px solid var(--sage); padding-left: 16px; color: var(--stone); font-size: 0.94rem; }
.caveat b { color: var(--ink); font-weight: 600; }

/* pillars list */
.pillars { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.pillars li { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.pillars li:last-child { border-bottom: 1px solid var(--line); }
.pillars .n { font-family: var(--serif); font-size: 1.5rem; color: var(--sage); line-height: 1; font-variant-numeric: tabular-nums; }
.pillars h3 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; letter-spacing: 0; margin-bottom: 5px; }
.pillars p { margin: 0; color: var(--stone); font-size: 0.95rem; }

/* ============================================================
   CATALOGUE - game cards
   ============================================================ */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(30px, 4vw, 54px); }
.section-head .lede { margin: 14px 0 0; }

/* filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--sans); font-weight: 500; font-size: 0.88rem;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); color: var(--stone); cursor: pointer; transition: all 0.16s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.catalogue { display: grid; gap: clamp(20px, 2.6vw, 34px); margin-top: clamp(26px, 3vw, 38px); }
.game {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden;
  display: grid; grid-template-columns: 0.92fr 1.08fr;
}
.game.flip { grid-template-columns: 1.08fr 0.92fr; }
.game.flip .game-shot { order: 2; }
.game-shot { position: relative; min-height: 260px; background: var(--linen); border-right: 1px solid var(--line); }
.game.flip .game-shot { border-right: 0; border-left: 1px solid var(--line); }
/* screenshot sits like a framed print on a linen mat */
.game-shot .shot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: clamp(18px, 2.4vw, 32px) clamp(14px, 2vw, 26px);
}
.game-shot .attr { position: absolute; left: 12px; bottom: 10px; font-size: 0.68rem; color: var(--pebble); background: rgba(255,255,255,0.8); padding: 3px 8px; border-radius: 7px; }
.game-genre { position: absolute; left: 14px; top: 14px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; background: var(--ink); color: var(--paper); padding: 6px 12px; border-radius: 999px; }

.game-body { padding: clamp(22px, 2.8vw, 36px); display: flex; flex-direction: column; }
.game-body h3 { font-size: clamp(1.6rem, 2.4vw, 2.05rem); }
.game-hook { color: var(--sage-deep); font-weight: 500; font-size: 0.98rem; margin: 8px 0 0; }

.meta { display: flex; flex-wrap: wrap; gap: 6px 8px; margin: 18px 0; padding: 14px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.meta span { font-size: 0.8rem; color: var(--stone); background: var(--linen); padding: 4px 10px; border-radius: 8px; font-variant-numeric: tabular-nums; }
.meta span b { color: var(--ink); font-weight: 600; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.03em; padding: 3px 10px; border-radius: 999px; border: 1px solid var(--sage); color: var(--sage-deep); }

.game-body .review { color: var(--stone); font-size: 0.98rem; margin: 0 0 14px; }
.game-body .review b { color: var(--ink); font-weight: 600; }
.why { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; }
.why li { position: relative; padding-left: 24px; font-size: 0.93rem; color: var(--ink); }
.why li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border: 1.5px solid var(--sage); border-radius: 2px; transform: rotate(45deg); }
.hist { font-size: 0.92rem; color: var(--stone); border-top: 1px solid var(--line-soft); padding-top: 14px; margin: 4px 0 0; }
.hist b { color: var(--ink); font-weight: 600; }
.game-foot { margin-top: auto; }

@media (max-width: 820px) {
  .game, .game.flip { grid-template-columns: 1fr; }
  .game.flip .game-shot { order: 0; border-left: 0; }
  .game-shot { border-right: 0; border-bottom: 1px solid var(--line); min-height: 210px; }
  .game.flip .game-shot { border-bottom: 1px solid var(--line); }
}

/* ============================================================
   STEPS - como começar
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); counter-reset: step; }
.step { border-top: 2px solid var(--ink); padding-top: 20px; }
.step .k { font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: var(--sage); font-variant-numeric: tabular-nums; }
.step h3 { font-family: var(--sans); font-weight: 600; font-size: 1.08rem; letter-spacing: 0; margin: 12px 0 8px; }
.step p { margin: 0; color: var(--stone); font-size: 0.95rem; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 6px; } .step { padding-block: 20px; } }

/* ============================================================
   TRANSPARENCY - honest model
   ============================================================ */
.honest { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--line); }
.honest > div { background: var(--paper); padding: clamp(20px, 2.6vw, 32px); }
.honest h3 { font-family: var(--sans); font-weight: 600; font-size: 1.02rem; letter-spacing: 0; margin-bottom: 12px; display: flex; align-items: center; gap: 9px; }
.honest .yes h3 { color: var(--sage-deep); }
.honest ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.honest li { padding-left: 22px; position: relative; font-size: 0.94rem; color: var(--stone); }
.honest .yes li::before { content: "+"; position: absolute; left: 2px; top: -1px; color: var(--sage); font-weight: 700; }
.honest .no li::before { content: "\2013"; position: absolute; left: 2px; color: var(--pebble); font-weight: 700; }
@media (max-width: 680px) { .honest { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURED - destaque da semana
   ============================================================ */
.featured { border: 1px solid var(--ink); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 1.1fr 0.9fr; background: var(--ink); color: var(--linen); }
.featured .f-text { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.featured .eyebrow { color: #a7c9b1; }
.featured h3 { color: var(--linen); font-size: clamp(2rem, 3.4vw, 3rem); }
.featured p { color: rgba(247, 245, 243, 0.74); font-size: 1.02rem; max-width: 46ch; }
.featured .f-shot { position: relative; min-height: 300px; background: #0c0c0c; }
.featured .f-shot .shot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: clamp(20px, 2.6vw, 40px);
}
.featured .f-shot .attr {
  position: absolute; left: 16px; bottom: 12px; font-size: 0.68rem;
  color: rgba(247,245,243,0.62); background: rgba(0,0,0,0.35); padding: 3px 8px; border-radius: 7px;
}
.featured .btn-outline { background: transparent; color: var(--linen); border-color: rgba(247,245,243,0.4); }
.featured .btn-outline:hover { border-color: var(--linen); color: var(--linen); }
.featured .btn-light { background: var(--linen); color: var(--ink); }
.featured .btn-light:hover { background: #fff; color: var(--ink); }
@media (max-width: 820px) { .featured { grid-template-columns: 1fr; } .featured .f-shot { order: -1; min-height: 220px; } }

/* ============================================================
   FAQ - accordion
   ============================================================ */
.faq { max-width: 820px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.5rem); letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px;
  background:
    linear-gradient(var(--ink), var(--ink)) center/14px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center/2px 14px no-repeat;
  transform: translateY(-50%); transition: transform 0.22s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .ans { padding: 0 8% 26px 0; color: var(--stone); font-size: 0.98rem; }
.faq .ans p { margin: 0 0 0.8em; }
.faq .ans p:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { background: var(--paper); border-top: 1px solid var(--line); }
.foot-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 64px); padding-block: clamp(48px, 6vw, 80px); }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { color: var(--stone); font-size: 0.94rem; max-width: 34ch; margin: 0 0 16px; }
.foot-sign { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.foot-sign span { color: var(--pebble); font-family: var(--sans); font-size: 0.8rem; display: block; margin-top: 2px; }
.foot-col h4 { font-family: var(--sans); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pebble); margin-bottom: 16px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-col a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.foot-col a:hover { color: var(--sage-deep); }
.foot-mail a { color: var(--sage-deep); font-weight: 600; }
@media (max-width: 760px) { .foot-main { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .foot-main { grid-template-columns: 1fr; } }

.disclaimer { border-top: 1px solid var(--line-soft); padding-block: 22px; }
.disclaimer p { margin: 0; font-size: 0.78rem; line-height: 1.6; color: var(--pebble); max-width: 90ch; }
.foot-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; padding-block: 18px; border-top: 1px solid var(--line-soft); }
.foot-legal p { margin: 0; font-size: 0.82rem; color: var(--pebble); }
.foot-legal nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.foot-legal a { color: var(--stone); font-size: 0.82rem; }
.foot-legal a:hover { color: var(--sage-deep); }

/* ============================================================
   INNER PAGES - article / legal / contact
   ============================================================ */
.page-hero { padding-top: clamp(48px, 7vw, 96px); }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); letter-spacing: -0.03em; }
.page-hero .lede { margin-top: 22px; }

.article { max-width: var(--measure); }
.article h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: clamp(36px, 5vw, 56px) 0 16px; }
.article h3 { font-family: var(--sans); font-weight: 600; font-size: 1.12rem; letter-spacing: 0; margin: 30px 0 10px; }
.article p { margin: 0 0 1.15em; color: var(--stone); }
.article p strong, .article li strong { color: var(--ink); font-weight: 600; }
.article ul { margin: 0 0 1.2em; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.article ul li { position: relative; padding-left: 24px; color: var(--stone); }
.article ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 7px; height: 7px; background: var(--sage); border-radius: 2px; transform: rotate(45deg); }
.article a { text-decoration: underline; text-underline-offset: 3px; }
.article .updated { font-size: 0.85rem; color: var(--pebble); margin-top: 8px; }

/* legal two-col with sticky index */
.legal-grid { display: grid; grid-template-columns: 220px 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.legal-index { position: sticky; top: 96px; }
.legal-index h4 { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pebble); margin: 0 0 14px; font-weight: 600; }
.legal-index ol { list-style: none; margin: 0; padding: 0; counter-reset: li; display: grid; gap: 8px; }
.legal-index a { color: var(--stone); font-size: 0.88rem; }
.legal-index a:hover { color: var(--sage-deep); }
@media (max-width: 800px) { .legal-grid { grid-template-columns: 1fr; } .legal-index { position: static; padding-bottom: 8px; border-bottom: 1px solid var(--line); } .legal-index ol { grid-template-columns: 1fr 1fr; } }

/* contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } }
.form { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); padding: clamp(24px, 3vw, 38px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--linen); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 15px; transition: border-color 0.16s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--sage); background: var(--paper); }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 0.82rem; color: var(--pebble); margin-top: 6px; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--sage); }
.consent label { font-size: 0.9rem; color: var(--stone); }
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.contact-aside .k { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 4px; }
.contact-aside dl { margin: 0; display: grid; gap: 20px; }
.contact-aside dt { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pebble); font-weight: 600; margin-bottom: 5px; }
.contact-aside dd { margin: 0; color: var(--ink); }
.contact-aside dd a { font-weight: 600; }

/* thank you / 404 centered */
.center-note { min-height: 62vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.center-note .big { font-family: var(--serif); font-size: clamp(3.4rem, 12vw, 8rem); line-height: 0.9; letter-spacing: -0.04em; color: var(--sage); }
.center-note h1 { margin: 18px 0 14px; font-size: clamp(2rem, 4.4vw, 3.2rem); }
.center-note p { color: var(--stone); max-width: 46ch; margin: 0 auto 28px; }

/* small note badge */
.note-strip { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px 8px 12px; font-size: 0.85rem; color: var(--stone); background: var(--paper); }
.note-strip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* utilities */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.lead-links { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 20px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; }
.tabular { font-variant-numeric: tabular-nums; }
