/* ludovante.com · midnight card vault
   Handwritten CSS. Theme: atlas-card (dark) + single sapphire accent.
   Fonts: Geologica (display+body), Martian Mono (metadata). */

:root {
  --void: #000000;
  --obsidian: #141414;
  --panel: #1a1a1a;
  --graphite: #232323;
  --line: #2a2a2a;
  --ash: #8a8a8a;
  --frost: #cfcfcf;
  --paper: #f4f4f5;
  --sapphire: #1f6bff;
  --sapphire-deep: #1751c6;
  --sapphire-haze: rgba(31, 107, 255, 0.14);

  --sans: "Geologica", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Martian Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --pad: clamp(20px, 5.5vw, 96px);
  --band: clamp(64px, 11vw, 152px);
  --measure: 66ch;
}

* { box-sizing: border-box; }

html, body { overflow-x: hidden; max-width: 100%; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--void);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  overflow-wrap: break-word;
  font-size: clamp(16px, 1.05vw + 0.7rem, 18px);
  line-height: 1.66;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

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

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

/* ---------- Type ---------- */
h1, h2, h3 { font-weight: 500; line-height: 1.06; letter-spacing: -0.015em; margin: 0; overflow-wrap: break-word; }
h1 { font-size: clamp(2.15rem, 7.4vw, 5.4rem); }
h2 { font-size: clamp(1.75rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.7rem); font-weight: 500; }
p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--mono);
  font-size: clamp(0.62rem, 1.4vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 0 1.1rem;
}
.eyebrow .dot { color: var(--sapphire); }

.lede { font-size: clamp(1.08rem, 1.6vw, 1.4rem); color: var(--frost); font-weight: 300; }
.measure { max-width: var(--measure); }
.mono { font-family: var(--mono); }
.accent { color: var(--sapphire); }

/* ---------- Layout primitives ---------- */
section { padding-inline: var(--pad); }
.band { padding-block: var(--band); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.wrap { max-width: 1240px; margin-inline: auto; }
.narrow { max-width: 720px; margin-inline: auto; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--sapphire); color: #fff; padding: 10px 16px; border-radius: 100px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em;
}
.skip:focus { left: 12px; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad);
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--paper); }
.brand svg { width: 34px; height: 34px; display: block; }
.brand b { font-weight: 500; font-size: 1.12rem; letter-spacing: -0.01em; }
.brand span { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.24em; color: var(--ash); text-transform: uppercase; display: block; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav a { text-decoration: none; color: var(--frost); font-size: 0.95rem; transition: color .18s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--paper); }
.nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--sapphire); }

.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: var(--paper); margin: 5px 0; transition: transform .22s ease, opacity .22s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--obsidian); border-bottom: 1px solid var(--line);
    padding: 12px var(--pad) 26px;
    transform: translateY(-140%); transition: transform .28s ease; z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 1.15rem; padding: 12px 0; width: 100%; }
  .nav .nav-cta { margin-top: 8px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 400; font-size: 1rem; line-height: 1;
  padding: 15px 28px; border-radius: 100px; text-decoration: none;
  cursor: pointer; border: 1px solid transparent; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sapphire); color: #fff; }
.btn-primary:hover { background: var(--sapphire-deep); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ash); }
.btn svg { width: 18px; height: 18px; }
.btn-sm { padding: 11px 18px; font-size: 0.9rem; }

/* store buttons */
.stores { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.store {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 18px 11px 15px; border-radius: 14px; text-decoration: none;
  background: var(--panel); border: 1px solid var(--line); color: var(--paper);
  transition: border-color .18s ease, background .18s ease;
}
.store:hover { border-color: var(--sapphire); background: var(--graphite); }
.store svg { width: 22px; height: 22px; flex: none; }
.store small { display: block; font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); }
.store strong { font-weight: 400; font-size: 0.98rem; letter-spacing: -0.01em; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(56px, 12vw, 150px) clamp(52px, 9vw, 120px); }
.hero-haze {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 78% 18%, var(--sapphire-haze), transparent 55%),
    radial-gradient(90% 70% at 12% 92%, rgba(31,107,255,0.07), transparent 60%);
}
.hero-grid { position: relative; z-index: 2; display: grid; gap: clamp(30px, 5vw, 56px); grid-template-columns: 1fr; align-items: center; }
.hero-grid > *, .curator > *, .game > *, .feature > *, .form-grid > * { min-width: 0; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; } }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--sapphire); }
.hero .lede { max-width: 34ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust-line { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--ash); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; }
.trust-line .tick { width: 15px; height: 15px; color: var(--sapphire); flex: none; }

/* hero art card */
.hero-art { position: relative; justify-self: center; width: min(420px, 82vw); aspect-ratio: 4/5; }
.hero-art .card-face {
  position: absolute; inset: 0; border-radius: 22px;
  background: linear-gradient(158deg, #1c1c1e 0%, #0c0c0d 82%);
  border: 1px solid #2e2e30;
}
.hero-art .c1 { transform: rotate(-9deg) translate(-16px, 12px); opacity: 0.5; }
.hero-art .c2 { transform: rotate(6deg) translate(18px, -6px); opacity: 0.72; }
.hero-art .c3 { transform: rotate(0deg); box-shadow: none; }
.hero-art .glow { position: absolute; inset: -14%; background: radial-gradient(circle at 50% 42%, var(--sapphire-haze), transparent 62%); z-index: -1; }
.hero-art .pip { position: absolute; z-index: 3; left: 50%; top: 46%; transform: translate(-50%,-50%); width: 44%; color: var(--sapphire); }
.hero-art .corner { position: absolute; font-family: var(--mono); color: var(--sapphire); font-size: 0.8rem; letter-spacing: 0.05em; }
.hero-art .corner.tl { top: 16px; left: 18px; }
.hero-art .corner.br { bottom: 16px; right: 18px; transform: rotate(180deg); }

.scroll-cue { margin-top: clamp(38px, 6vw, 70px); position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; color: var(--ash); font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; }
.scroll-cue .bar { width: 46px; height: 1px; background: var(--frost); }

/* ---------- Curator ---------- */
.curator { display: grid; gap: clamp(28px, 5vw, 64px); grid-template-columns: 1fr; }
@media (min-width: 900px) { .curator { grid-template-columns: 1.3fr 0.7fr; align-items: start; } }
.curator-note p { color: var(--frost); }
.curator-note p strong { color: var(--paper); font-weight: 400; }
.curator-card { border: 1px solid var(--line); border-radius: 16px; padding: 26px; background: linear-gradient(180deg, var(--obsidian), var(--void)); }
.curator-card dl { margin: 0; display: grid; gap: 14px; }
.curator-card dt { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); margin-bottom: 3px; }
.curator-card dd { margin: 0; color: var(--paper); font-size: 0.98rem; }
.curator-card .sig { margin-top: 6px; font-size: 1.4rem; letter-spacing: -0.01em; }

/* ---------- Category chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 100px; background: transparent; color: var(--frost);
  border: 1px solid var(--line); cursor: pointer; transition: border-color .16s ease, color .16s ease, background .16s ease;
}
.chip:hover { border-color: var(--ash); color: var(--paper); }
.chip[aria-pressed="true"] { background: var(--sapphire); border-color: var(--sapphire); color: #fff; }
.chip .n { color: var(--ash); margin-left: 7px; }
.chip[aria-pressed="true"] .n { color: rgba(255,255,255,0.72); }

/* ---------- Index list ---------- */
.index-list { list-style: none; margin: 26px 0 0; padding: 0; border-top: 1px solid var(--line); }
.index-list li { border-bottom: 1px solid var(--line); }
.index-list a { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: baseline; padding: 16px 4px; text-decoration: none; color: var(--frost); transition: color .16s ease, padding .18s ease; }
.index-list a:hover { color: var(--paper); padding-left: 12px; }
.index-list .num { font-family: var(--mono); font-size: 0.72rem; color: var(--sapphire); letter-spacing: 0.08em; }
.index-list .ttl { font-size: 1.1rem; color: inherit; }
.index-list .tag { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); }

/* ---------- Game cards ---------- */
.catalog { display: grid; gap: clamp(46px, 7vw, 92px); margin-top: clamp(40px, 6vw, 72px); }
.game {
  display: grid; gap: clamp(22px, 3vw, 44px); grid-template-columns: 1fr;
  scroll-margin-top: 90px;
}
@media (min-width: 900px) {
  .game { grid-template-columns: 1fr 1fr; align-items: center; }
  .game.flip .game-media { order: 2; }
}
.game-media { position: relative; }
.game-media img { width: 100%; border-radius: 14px; border: 1px solid var(--line); aspect-ratio: 8/5; object-fit: cover; }
.game-media .badge {
  position: absolute; top: 12px; left: 12px; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--frost); background: rgba(0,0,0,0.6); border: 1px solid var(--line);
  padding: 6px 11px; border-radius: 100px; backdrop-filter: blur(6px);
}
.game-media .attribution { margin-top: 8px; font-family: var(--mono); font-size: 0.58rem; color: var(--ash); letter-spacing: 0.04em; line-height: 1.5; }

.game-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.game-num { font-family: var(--mono); font-size: 0.8rem; color: var(--sapphire); }
.game-genre { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); }
.game h3 { margin: 4px 0 2px; }
.game .hook { color: var(--frost); font-size: 1.02rem; margin-bottom: 16px; }

.meta { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.meta span { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.06em; color: var(--ash); text-transform: uppercase; }
.meta span b { color: var(--frost); font-weight: 500; }
.meta .rating b { color: var(--sapphire); }

.game p { color: var(--frost); }
.why { list-style: none; margin: 0 0 4px; padding: 0; display: grid; gap: 9px; }
.why li { position: relative; padding-left: 24px; color: var(--frost); font-size: 0.97rem; }
.why li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px;
  background: var(--sapphire); transform: rotate(45deg);
}

.flag {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 16px 0; padding: 14px 16px; border-radius: 12px;
  background: var(--sapphire-haze); border: 1px solid rgba(31,107,255,0.35);
}
.flag svg { width: 18px; height: 18px; color: var(--sapphire); flex: none; margin-top: 2px; }
.flag p { margin: 0; font-size: 0.9rem; color: var(--frost); }
.flag strong { color: var(--paper); font-weight: 500; }

.hist { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); }
.hist .eyebrow { margin-bottom: 8px; }
.hist p { font-size: 0.94rem; }

/* ---------- Stat tiles / by the numbers ---------- */
.stats { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); margin-top: clamp(30px, 4vw, 48px); }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: linear-gradient(180deg, var(--obsidian), var(--void)); }
.stat .fig { font-size: clamp(2.1rem, 4.6vw, 3.1rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.stat .fig .u { color: var(--sapphire); font-size: 0.5em; }
.stat .lbl { margin-top: 10px; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); line-height: 1.5; }

.range { margin-top: 26px; border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.range h3 { font-size: 1.05rem; margin-bottom: 20px; }
.rating-row { display: grid; grid-template-columns: 108px 1fr 42px; gap: 12px; align-items: center; margin-bottom: 12px; }
.rating-row .name { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ash); }
.rating-row .track { height: 8px; background: var(--graphite); border-radius: 100px; overflow: hidden; }
.rating-row .fill { height: 100%; background: var(--sapphire); border-radius: 100px; }
.rating-row .val { font-family: var(--mono); font-size: 0.72rem; color: var(--frost); text-align: right; }
.range .foot { margin-top: 12px; font-family: var(--mono); font-size: 0.58rem; color: var(--ash); letter-spacing: 0.04em; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: clamp(30px, 4vw, 48px); counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { border: 1px solid var(--line); border-radius: 14px; padding: 24px; position: relative; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--mono); font-size: 0.72rem; color: var(--sapphire); letter-spacing: 0.1em; }
.step h3 { font-size: 1.15rem; margin: 14px 0 8px; }
.step p { color: var(--ash); font-size: 0.94rem; margin: 0; }

/* ---------- Featured (scelta della settimana) ---------- */
.feature { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: linear-gradient(180deg, var(--obsidian), var(--void)); margin-top: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .feature { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.feature-media { position: relative; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .feature-media img { border-bottom: 0; border-right: 1px solid var(--line); } }
.feature-body { padding: clamp(26px, 4vw, 48px); }
.feature-body .eyebrow { color: var(--sapphire); }
.feature-body h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 12px; }
.feature-body p { color: var(--frost); }

/* ---------- FAQ ---------- */
.faq { margin-top: clamp(28px, 4vw, 44px); border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 4px; position: relative; font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 400; color: var(--paper); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-family: var(--mono); color: var(--sapphire); font-size: 1.4rem; transition: transform .2s ease; }
.faq details[open] summary::after { content: "\2212"; }
.faq .answer { padding: 0 4px 24px; color: var(--ash); max-width: var(--measure); }
.faq .answer p { color: var(--ash); margin: 0 0 0.7rem; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; gap: clamp(28px, 5vw, 64px); grid-template-columns: 1fr; margin-top: 30px; }
@media (min-width: 860px) { .form-grid { grid-template-columns: 1fr 1fr; } }
form.contact { display: grid; gap: 18px; }
.field label { display: block; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--obsidian); border: 1px solid var(--line); border-radius: 10px;
  color: var(--paper); font-family: var(--sans); font-size: 1rem; padding: 13px 14px; font-weight: 300;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sapphire); }
.field textarea { min-height: 120px; resize: vertical; }
#successMsg { padding: 14px 16px; border: 1px solid var(--sapphire); border-left-width: 3px; border-radius: 8px; background: var(--sapphire-haze); color: var(--paper); font-size: 0.9rem; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; color: var(--ash); }
.consent input { margin-top: 4px; accent-color: var(--sapphire); width: 18px; height: 18px; flex: none; }
.consent a { color: var(--frost); }
.contact-aside dl { display: grid; gap: 18px; margin: 0; }
.contact-aside dt { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash); margin-bottom: 4px; }
.contact-aside dd { margin: 0; color: var(--paper); }
.contact-aside a { color: var(--sapphire); text-decoration: none; }

/* ---------- Article / legal / prose ---------- */
.prose { max-width: var(--measure); }
.prose h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 44px 0 14px; }
.prose h3 { margin: 30px 0 10px; }
.prose p, .prose li { color: var(--frost); }
.prose ul { padding-left: 20px; display: grid; gap: 8px; }
.prose a { color: var(--sapphire); }
.prose .updated { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--ash); text-transform: uppercase; }

/* ---------- Footer ---------- */
.site-foot { border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 88px) var(--pad) 40px; background: var(--obsidian); }
.foot-top { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .foot-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { color: var(--ash); max-width: 40ch; font-size: 0.92rem; }
.foot-col h4 { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); margin: 0 0 16px; font-weight: 500; }
.foot-col a { display: block; text-decoration: none; color: var(--frost); font-size: 0.95rem; padding: 6px 0; transition: color .16s ease; }
.foot-col a:hover { color: var(--paper); }
.disclaimer { margin-top: clamp(38px, 5vw, 60px); padding-top: 26px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 0.62rem; line-height: 1.7; color: var(--ash); letter-spacing: 0.02em; max-width: 92ch; }
.copyright { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--ash); text-transform: uppercase; }

/* ---------- 404 ---------- */
.notfound { min-height: 66vh; display: grid; place-content: center; text-align: center; gap: 18px; }
.notfound .big { font-size: clamp(4rem, 16vw, 9rem); font-weight: 500; letter-spacing: -0.04em; }
.notfound .big span { color: var(--sapphire); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* utility */
.hide-cat { display: none !important; }
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.page-head { padding-block: clamp(48px, 8vw, 108px) clamp(20px, 3vw, 40px); position: relative; overflow: hidden; }
.page-head .hero-haze { opacity: 0.7; }
.page-head > * { position: relative; z-index: 2; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); text-decoration: none; }
.back-link:hover { color: var(--paper); }
