/*
 * fliscore.css – gemeinsames Stylesheet
 * fliscore.de · Livescoring für Golfturniere
 * Gestaltung: Jan-Hendrik von Kuick
 *
 * SCHRIFTARTEN – DSGVO-konform lokal eingebunden
 * ────────────────────────────────────────────────
 * Alle Dateien liegen unter /fonts/ auf dem Server:
 *
 *   bricolage-grotesque-v9-latin-700.woff2
 *   bricolage-grotesque-v9-latin-800.woff2
 *   bricolage-grotesque-v9-latin-regular.woff2
 *   hanken-grotesk-v12-latin-500.woff2
 *   hanken-grotesk-v12-latin-600.woff2
 *   hanken-grotesk-v12-latin-700.woff2
 *   hanken-grotesk-v12-latin-regular.woff2
 *   jetbrains-mono-v24-latin-500.woff2
 *   jetbrains-mono-v24-latin-700.woff2
 *   jetbrains-mono-v24-latin-regular.woff2
 */

/* ── LOKALE SCHRIFTARTEN ─────────────────────────────────────────────── */

/* Bricolage Grotesque – Überschriften */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-v9-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-v9-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-v9-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Hanken Grotesk – Fließtext */
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk-v12-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk-v12-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk-v12-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk-v12-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* JetBrains Mono – Scores & Zahlen */
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono-v24-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono-v24-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono-v24-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── DESIGN-TOKENS ────────────────────────────────────────────────────── */
:root {
  --bg:        #fefce9;
  --bg-2:      #f7f4d6;
  --surface:   #fffffe;
  --surface-2: #f9f7e8;
  --green:     #064b24;
  --green-mid: #0a6e35;
  --green-lt:  #d4eadb;
  --line:      rgba(6, 75, 36, .12);
  --line-soft: rgba(6, 75, 36, .07);
  --sand:      #b08a3e;
  --over:      #b83c2e;
  --txt:       #064b24;
  --muted:     #4a7a5e;
  --muted-2:   #8aaa97;
  --footer:    #333333;
  --radius:    18px;
  --maxw:      1180px;
  --display:   "Bricolage Grotesque", Georgia, serif;
  --body:      "Hanken Grotesk", system-ui, sans-serif;
  --mono:      "JetBrains Mono", ui-monospace, monospace;
}

/* ── RESET & BASIS ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--body);
  background:  var(--bg);
  color:       var(--txt);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x:  hidden;
}

/* Atmosphärischer Hintergrund */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(100% 60% at 85% -5%,  rgba(6,75,36,.06), transparent 55%),
    radial-gradient(80%  60% at 0%  105%, rgba(6,75,36,.04), transparent 50%),
    var(--bg);
}
/* Dezentes Grain */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1;
  pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a    { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── NAVIGATION ───────────────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(254,252,233,.90);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center;
  justify-content: space-between; height: 84px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 52px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px; color: var(--muted); font-weight: 500;
  position: relative; transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: #ffffff; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 2px; width: 0; background: var(--green); transition: width .25s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Aktive Seite im Menü hervorheben */
.nav-links a[aria-current="page"] {
  color: var(--green); font-weight: 600;
}
.nav-links a[aria-current="page"]::after { width: 100%; }

/* ── BUTTONS ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; padding: 11px 20px;
  border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: .2s; white-space: nowrap;
  font-family: var(--body);
}
.btn-primary { background: var(--green); color: #ffffff; }
.btn-primary:hover {
  background: var(--green-mid); transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(6,75,36,.35);
}
.btn-ghost { border-color: var(--line); color: var(--green); background: transparent; }
.btn-ghost:hover { background: var(--green-lt); border-color: var(--green); }
.btn-invert { background: #fefce9; color: var(--green); }
.btn-invert:hover {
  background: #fffde0; transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.btn-outline-inv {
  border-color: rgba(254,252,233,.3); color: #fefce9; background: transparent;
}
.btn-outline-inv:hover {
  background: rgba(254,252,233,.08); border-color: rgba(254,252,233,.6);
}

/* ── LIVE-DOT ─────────────────────────────────────────────────────────── */
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--over); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(184,60,46,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(184,60,46,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(184,60,46,0);   }
  100% { box-shadow: 0 0 0 0   rgba(184,60,46,0);   }
}

/* ── BURGER-MENÜ ──────────────────────────────────────────────────────── */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.burger span { width: 24px; height: 2px; background: var(--green); transition: .3s; }

/* ── GEMEINSAME ABSCHNITT-TYPO ────────────────────────────────────────── */
section { position: relative; }
.sec-head { max-width: 620px; margin-bottom: 48px; }
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-mid); margin-bottom: 14px;
}
h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02; letter-spacing: -.025em;
  margin-bottom: 16px; color: var(--green);
}
.sec-head p { color: var(--muted); font-size: 17px; }

/* ── SCROLL-REVEAL ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1),
              transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════════════
   STARTSEITE – HERO
   ════════════════════════════════════════════════════════════════════════ */
.hero { position: relative; padding: 84px 0 96px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green);
  border: 1px solid var(--line); background: var(--green-lt);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 26px;
}

h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98; letter-spacing: -.03em;
  margin-bottom: 22px; color: var(--green);
}
h1 em { font-style: normal; color: var(--green-mid); position: relative; }
h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em;
  height: .12em; background: rgba(6,75,36,.15); z-index: -1;
}

.lede { font-size: 19px; color: var(--muted); max-width: 480px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stats .s  { display: flex; flex-direction: column; }
.hero-stats .num {
  font-family: var(--mono); font-weight: 700; font-size: 26px; color: var(--green);
}
.hero-stats .lbl { font-size: 13px; color: var(--muted-2); margin-top: 2px; }

/* ── SCREENSHOT-PLATZHALTER ───────────────────────────────────────────── */
.screenshot-card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(6,75,36,.18), 0 4px 16px -4px rgba(6,75,36,.08);
  min-height: 360px; display: flex; flex-direction: column;
}
.screenshot-card::before {
  content: ""; display: block; height: 4px; flex-shrink: 0;
  background: linear-gradient(90deg, var(--green), var(--green-mid), var(--sand));
}
.screenshot-card img { display: block; width: 100%; height: 100%; object-fit: cover; flex: 1; }
.screenshot-placeholder {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; padding: 32px; color: var(--muted-2); text-align: center;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 12px,
    rgba(6,75,36,.03) 12px, rgba(6,75,36,.03) 13px
  );
}
.screenshot-placeholder svg { opacity: .35; }
.screenshot-placeholder p   { font-size: 14px; line-height: 1.5; max-width: 220px; }
.screenshot-placeholder strong {
  display: block; font-size: 15px; color: var(--muted); margin-bottom: 4px;
}

/* ── BAUSTEINE (PILLARS) ──────────────────────────────────────────────── */
.pillars { padding: 40px 0 30px; }
.pgrid   { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.pcard   {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px;
  transition: .25s; position: relative; overflow: hidden;
}
.pcard::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0);
  transform-origin: left; transition: .3s;
}
.pcard:hover {
  border-color: var(--green); transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(6,75,36,.18);
}
.pcard:hover::after { transform: scaleX(1); }
.pcard .ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid;
  place-items: center; background: var(--green-lt); margin-bottom: 18px; font-size: 22px;
}
.pcard h3 {
  font-family: var(--display); font-size: 19px; font-weight: 700;
  margin-bottom: 8px; color: var(--green);
}
.pcard p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── VORTEILE (BENEFITS) ──────────────────────────────────────────────── */
.benefits { padding: 96px 0; }
.bgrid    {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.bcell    { background: var(--bg); padding: 34px 30px; transition: .25s; }
.bcell:hover { background: var(--surface); }
.bcell .e { font-size: 24px; margin-bottom: 16px; display: block; }
.bcell h4 {
  font-family: var(--display); font-size: 18px; font-weight: 700;
  margin-bottom: 9px; color: var(--green);
}
.bcell p  { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ── BRANDING-SPLIT ───────────────────────────────────────────────────── */
.brand-sec { padding: 30px 0 96px; }
.split     {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 24px;
  overflow: hidden; background: var(--surface);
}
.split .copy { padding: 54px 50px; }
.split .copy p { color: var(--muted); font-size: 16px; margin-bottom: 26px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip  {
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 100px;
  border: 1px solid var(--line); color: var(--green); background: var(--bg-2);
}
.split .visual {
  background:
    radial-gradient(130% 100% at 100% 0, rgba(6,75,36,.10), transparent 60%),
    linear-gradient(160deg, var(--green-lt), var(--bg-2));
  position: relative; display: grid; place-items: center;
  min-height: 340px; border-left: 1px solid var(--line);
}
.mock { width: 78%; background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px; box-shadow: 0 20px 50px -20px rgba(6,75,36,.2); }
.mock .mh {
  display: flex; align-items: center; gap: 9px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); margin-bottom: 14px;
}
.mock .logo-pill {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--green); display: grid; place-items: center;
}
.mock .mh .mt { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--green); }
.mock .mh .mt span { display: block; font-size: 11px; color: var(--muted-2); font-weight: 400; }
.mbar { height: 9px; border-radius: 5px; background: var(--line-soft); margin: 9px 0; }
.mbar.a { width: 90%; background: rgba(6,75,36,.35); }
.mbar.b { width: 70%; }
.mbar.c { width: 80%; }

/* ── CTA-BOX ──────────────────────────────────────────────────────────── */
.cta { padding: 0 0 100px; }
.cta-box {
  position: relative; border-radius: 28px; overflow: hidden;
  padding: 72px 40px; text-align: center;
  background: var(--green); color: #fefce9;
}
.cta-box::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% -20%, rgba(255,255,255,.08), transparent 60%);
}
.cta-box > * { position: relative; }
.cta-box .kicker { color: rgba(254,252,233,.6); }
.cta-box h2 { color: #fefce9; font-size: clamp(30px, 4.5vw, 52px); margin-bottom: 16px; }
.cta-box p  { color: rgba(254,252,233,.75); font-size: 18px; max-width: 520px; margin: 0 auto 32px; }
.cta-row    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════════════════
   INHALTSSEITEN – Datenschutz, Nutzung, Impressum
   ════════════════════════════════════════════════════════════════════════ */

/* Schmaler seitlicher Hero für Unterseiten */
.page-hero {
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 64px;
}
.page-hero .kicker { margin-bottom: 10px; }
.page-hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.0; letter-spacing: -.03em;
  color: var(--green); margin-bottom: 14px;
}
.page-hero .sub {
  font-size: 16px; color: var(--muted); max-width: 500px;
}

/* Fließtext-Layout für Rechtstexte */
.prose-wrap { padding-bottom: 96px; }
.prose {
  max-width: 720px;
  /* kein margin:auto – linksbündig unter dem Hero, konsistenter Einzug */
}

.prose .notice {
  background: var(--green-lt); border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0; padding: 18px 22px;
  font-size: 15px; color: var(--green); margin-bottom: 44px; line-height: 1.55;
}
.prose .notice strong { font-weight: 700; }

.prose section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-soft);
}
.prose section:last-child { border-bottom: none; margin-bottom: 0; }

.prose h2 {
  font-family: var(--display); font-size: 22px; font-weight: 700;
  color: var(--green); letter-spacing: -.01em;
  margin-bottom: 14px;
  /* Sektionsnummer via counter */
  display: flex; gap: 14px; align-items: baseline;
}
.prose h2 .num {
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  color: var(--muted-2); flex-shrink: 0; padding-top: 4px;
}

.prose p { font-size: 16px; color: #2d4e3a; line-height: 1.75; margin-bottom: 14px; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--green-mid); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--green); }

.prose ul, .prose ol {
  padding-left: 22px; margin-bottom: 14px;
  display: flex; flex-direction: column; gap: 7px;
}
.prose li { font-size: 16px; color: #2d4e3a; line-height: 1.65; }
.prose ul li::marker { color: var(--green-mid); }
.prose ol li::marker { color: var(--muted-2); font-family: var(--mono); font-size: 13px; }

/* Kontaktkarte */
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 32px;
  display: inline-block; margin-bottom: 20px;
}
.contact-card strong { font-weight: 700; font-size: 16px; color: var(--green); }
.contact-card p {
  font-size: 15px; color: var(--muted); margin: 6px 0 0;
  line-height: 1.7;
}
.contact-card a { color: var(--green-mid); text-decoration: underline; text-underline-offset: 3px; }

/* ════════════════════════════════════════════════════════════════════════
   LIVE-SEITE – Turniere & Leer-Zustand
   ════════════════════════════════════════════════════════════════════════ */
.live-wrap { padding-bottom: 96px; }

/* Turnier-Karte */
.tournament-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 30px;
  margin-bottom: 18px; transition: .25s;
}
.tournament-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 36px -12px rgba(6,75,36,.15);
  transform: translateY(-2px);
}
.tc-head {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px; margin-bottom: 16px;
}
.tc-title {
  font-family: var(--display); font-weight: 700; font-size: 20px;
  color: var(--green); margin-bottom: 5px;
}
.tc-meta { font-size: 14px; color: var(--muted-2); }
.tc-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 6px 12px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.tc-status.live  {
  color: var(--over); background: rgba(184,60,46,.08);
  border: 1px solid rgba(184,60,46,.2);
}
.tc-status.done  {
  color: var(--muted-2); background: var(--bg-2);
  border: 1px solid var(--line);
}
.tc-info {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted); margin-bottom: 20px;
}
.tc-btn { align-self: flex-start; }

/* Leer-Zustand */
.empty-state {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 80px 24px;
  border: 1px dashed var(--line); border-radius: var(--radius);
  color: var(--muted-2); gap: 18px;
}
.empty-state svg { opacity: .4; }
.empty-state h2 {
  font-family: var(--display); font-size: 26px; font-weight: 700;
  color: var(--green); letter-spacing: -.01em;
}
.empty-state p {
  font-size: 16px; color: var(--muted); max-width: 380px; line-height: 1.65;
}

/* ── FOOTER ───────────────────────────────────────────────────────────── */
footer { background: var(--footer); color: #e0e0e0; padding: 46px 0 0; }
.foot  {
  display: flex; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  align-items: flex-start; padding-bottom: 40px;
}
.foot .fbrand img {
  height: 34px; width: auto; display: block; margin-bottom: 14px;
  filter: brightness(0) invert(1); /* SVG auf weiß; entfernen wenn helle Logo-Variante */
}
.foot p { font-size: 14px; color: #999; max-width: 280px; }
.foot-links { display: flex; gap: 46px; flex-wrap: wrap; }
.foot-col h5 {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: #777; margin-bottom: 14px;
}
.foot-col a { display: block; font-size: 15px; color: #bbb; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: #fefce9; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 22px; font-size: 13px; color: #666;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .pgrid     { grid-template-columns: repeat(2, 1fr); }
  .bgrid     { grid-template-columns: 1fr 1fr; }
  .split     { grid-template-columns: 1fr; }
  .split .visual { border-left: 0; border-top: 1px solid var(--line); min-height: 280px; }

  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column;
    background: rgba(254,252,233,.97); backdrop-filter: blur(12px);
    padding: 24px; gap: 20px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: .35s; align-items: flex-start;
  }
  .nav-links.open  { transform: translateY(0); }
  .nav-links .btn  { width: 100%; justify-content: center; }
  .burger          { display: flex; }
}
@media (max-width: 560px) {
  .pgrid, .bgrid { grid-template-columns: 1fr; }
  .hero-stats    { gap: 26px; }
  .split .copy   { padding: 38px 28px; }
  .cta-box       { padding: 52px 24px; }
  .prose h2      { font-size: 19px; }
}
