/* ============================================================
   PadelClub Vallendar e.V. — Design System
   court blue #1a2b49 · fuzzy green #84bc26
   Display: Bricolage Grotesque · Body: Familjen Grotesk
   ============================================================ */

@import url("fonts.css");

:root {
  /* brand */
  --navy:        #1a2b49;
  --navy-deep:   #0f1c33;
  --navy-800:    #14233d;
  --navy-line:   #2a3d5f;
  --lime:        #84bc26;
  --lime-bright: #a0e236;
  --lime-soft:   #eaf5d6;

  /* neutrals */
  --cream:       #f6f5ef;
  --paper:       #ffffff;
  --ink:         #14202f;
  --ink-soft:    #46566b;
  --muted:       #8a97a8;
  --line:        #e4e2d8;

  /* type */
  --display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --body:    "Familjen Grotesk", "Segoe UI", system-ui, sans-serif;

  /* layout */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 2px 10px rgba(16,28,51,.06);
  --shadow-md: 0 18px 40px -18px rgba(16,28,51,.30);
  --shadow-lg: 0 40px 80px -28px rgba(16,28,51,.45);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 800; line-height: 1.02; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
ul { margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* offset anchor jumps for the sticky header */
:target, [id] { scroll-margin-top: 92px; }

/* section rhythm */
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lime);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--lime); display: inline-block;
}
.eyebrow--dark { color: #587a12; }
.eyebrow--dark::before { background: #7aab22; }

.section-title {
  font-size: clamp(2rem, 1.4rem + 3.2vw, 3.6rem);
  margin-top: .5rem;
  max-width: 16ch;
}
.lead { font-size: clamp(1.1rem, 1.02rem + .5vw, 1.35rem); color: var(--ink-soft); max-width: 60ch; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--lime); --fg: var(--navy);
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  letter-spacing: -.01em;
  padding: .95em 1.5em;
  background: var(--bg); color: var(--fg);
  border: 2px solid var(--bg);
  border-radius: 100px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(132,188,38,.7); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(-1px); }
.btn--ghost {
  --bg: transparent; --fg: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; box-shadow: none; }
.btn--dark { --bg: var(--navy); --fg: #fff; border-color: var(--navy); }
.btn--dark:hover { box-shadow: 0 14px 28px -12px rgba(26,43,73,.6); }
.btn--outline-dark { --bg: transparent; --fg: var(--navy); border-color: rgba(26,43,73,.25); }
.btn--outline-dark:hover { background: rgba(26,43,73,.05); border-color: var(--navy); box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* disabled "coming soon" button */
.btn--soon { background: #cbd0d8; color: #55606f; border-color: #cbd0d8; cursor: not-allowed; box-shadow: none; }
.btn--soon:hover { transform: none; box-shadow: none; background: #cbd0d8; }
.btn--soon svg { opacity: .7; }
.soon-hint { display: flex; align-items: flex-start; gap: .5em; font-size: .88rem; margin-top: 1rem; color: var(--muted); max-width: 46ch; }
.soon-hint svg { width: 1.1em; height: 1.1em; flex: none; margin-top: .12em; }

/* text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--display); font-weight: 700; color: var(--navy);
  border-bottom: 2px solid var(--lime);
  padding-bottom: 2px;
  transition: gap .2s var(--ease), color .2s;
}
.tlink svg { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.tlink:hover { gap: .75em; }
.tlink:hover svg { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(26,43,73,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; color: #fff; }
.brand-logo { height: 40px; width: auto; display: block; }
.footer-brand .brand-logo { height: 50px; }
@media (max-width: 900px) { .brand-logo { height: 34px; } }
.brand .mark { width: 40px; height: 40px; flex: none; }
.brand .mark .blade { stroke: #fff; }
.brand .mark .dot { fill: var(--lime); }
.brand .mark .edge { stroke: var(--lime); }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b { font-family: var(--display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.brand-txt span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); margin-top: .28em; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  color: rgba(255,255,255,.82); font-family: var(--display); font-weight: 600; font-size: .98rem;
  padding: .5rem .85rem; border-radius: 100px; transition: color .2s, background .2s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav a.active { color: var(--navy); background: var(--lime); }
.nav .btn { margin-left: .5rem; padding: .6em 1.1em; font-size: .95rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem; color: #fff;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: var(--navy-deep);
    padding: 1rem var(--gutter) 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-140%); transition: transform .4s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .8rem 1rem; font-size: 1.1rem; }
  .nav .btn { margin: .5rem 0 0; justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 80% -10%, #22375c 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: #fff;
  padding-block: clamp(4rem, 8vw, 7.5rem) clamp(4.5rem, 9vw, 8rem);
}
.hero__court {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .5;
}
.hero__glow {
  position: absolute; width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  right: -6vw; top: -10vw;
  background: radial-gradient(circle, rgba(132,188,38,.35), transparent 62%);
  filter: blur(10px); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero__eyebrow { color: var(--lime); margin-bottom: 1.4rem; }
.hero h1 {
  font-size: clamp(2.9rem, 1.7rem + 6.4vw, 6.6rem);
  line-height: .96; letter-spacing: -.03em;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--lime); }
.hero__sub { margin-top: 1.6rem; font-size: clamp(1.1rem, 1rem + .7vw, 1.45rem); color: rgba(255,255,255,.8); max-width: 52ch; }
.hero .btn-row { margin-top: 2.4rem; }

.hero__meta {
  margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 4rem);
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.14);
}
.hero__meta .stat b {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); color: var(--lime); line-height: 1;
}
.hero__meta .stat span { font-size: .9rem; color: rgba(255,255,255,.7); }

/* dotted racket texture bottom-right of hero */
.hero__dots { position: absolute; right: var(--gutter); bottom: -20px; width: 220px; opacity: .5; z-index: 1; }

/* ============================================================
   GENERIC BLOCKS
   ============================================================ */
.block-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* intro split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.mediacard {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.mediacard img { width: 100%; height: 100%; object-fit: contain; padding: 12%; }
.mediacard--fill img { object-fit: cover; padding: 0; }
.mediacard__tag {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--lime); color: var(--navy); font-family: var(--display); font-weight: 700;
  font-size: .8rem; padding: .4em .9em; border-radius: 100px;
}

/* feature/value cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--lime); }
.card__ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--lime-soft); color: var(--navy); margin-bottom: 1.2rem;
}
.card__ico svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* number chips for "how it works" */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.step { position: relative; padding-top: .5rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--lime);
  display: block; margin-bottom: .4rem; letter-spacing: -.03em;
}
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* dark band */
.band {
  position: relative; overflow: hidden;
  background: var(--navy); color: #fff;
  border-radius: clamp(20px, 3vw, 32px);
}
.band__inner { position: relative; z-index: 2; padding: clamp(2.5rem, 6vw, 4.5rem); display: grid; grid-template-columns: 1.3fr auto; gap: 2rem; align-items: center; }
@media (max-width: 760px) { .band__inner { grid-template-columns: 1fr; } }
.band h2 { font-size: clamp(1.8rem, 1.3rem + 2.5vw, 3rem); max-width: 18ch; }
.band p { color: rgba(255,255,255,.8); margin-top: .9rem; max-width: 48ch; }
.band__court { position: absolute; inset: 0; opacity: .35; }
.price-grid { display: grid; grid-template-columns: repeat(4, max-content); gap: 1.3rem 2.4rem; margin-top: 1.5rem; }
@media (max-width: 680px) { .price-grid { grid-template-columns: 1fr 1fr; gap: 1.3rem 1rem; } }

/* ============================================================
   PADEL EXPLAINER strip
   ============================================================ */
.padel-strip { background: var(--navy-deep); color: #fff; }
.padel-strip .split { align-items: center; }
.padel-strip .lead { color: rgba(255,255,255,.82); }
.court-diagram {
  width: 100%; border-radius: var(--radius); background: var(--navy);
  border: 1px solid var(--navy-line); box-shadow: var(--shadow-md);
}

/* ============================================================
   NEWS
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.post {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post__media { aspect-ratio: 16/10; background: var(--navy); position: relative; overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; }
.post__media--pattern { display: grid; place-items: center; }
.post__media--pattern svg { width: 60%; opacity: .9; }
.post__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post__cat {
  align-self: flex-start; font-family: var(--display); font-weight: 700; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy);
  background: var(--lime); padding: .35em .8em; border-radius: 100px; margin-bottom: 1rem;
}
.post__date { font-size: .85rem; color: var(--muted); font-family: var(--display); font-weight: 600; }
.post h3 { font-size: 1.32rem; margin: .35rem 0 .6rem; }
.post p { color: var(--ink-soft); font-size: .97rem; flex: 1; }
.post__foot { margin-top: 1.2rem; }

.post--feature { grid-column: 1 / -1; }
@media (min-width: 760px) {
  .post--feature { display: grid; grid-template-columns: 1.1fr 1fr; }
  .post--feature .post__media { aspect-ratio: auto; min-height: 320px; }
}

/* ============================================================
   MEMBERSHIP page
   ============================================================ */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.25rem; }
.tier {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.tier:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tier--featured { border-color: var(--lime); box-shadow: var(--shadow-md); }
.tier--featured::before {
  content: "beliebt"; position: absolute; top: -.75rem; right: 1.4rem;
  background: var(--lime); color: var(--navy); font-family: var(--display); font-weight: 700;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: .3em .85em; border-radius: 100px;
}
.tier h3 { font-size: 1.35rem; }
.tier .who { color: var(--muted); font-size: .92rem; margin-top: .2rem; }
.tier .price { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 2.1rem; line-height: 1; margin-top: 1rem; letter-spacing: -.02em; }
.tier .price small { font-family: var(--body); font-weight: 500; font-size: .9rem; color: var(--muted); letter-spacing: 0; }
.tier .price .free { color: var(--lime); }
.tier ul { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .6rem; }
.tier li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); font-size: .96rem; }
.tier li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: .7rem; height: .7rem;
  background: var(--lime); border-radius: 3px; transform: rotate(45deg);
}

.note {
  background: var(--lime-soft); border: 1px solid #d3e6ad; border-radius: var(--radius);
  padding: 1.4rem 1.6rem; color: #3f5410; font-size: .97rem;
}
.note b { color: #2f3f0c; }

/* form */
.formcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.col-2 { grid-column: 1 / -1; }
.field label { font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--navy); }
.field label .req { color: var(--lime); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: .8em .95em; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfbf8; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lime); box-shadow: 0 0 0 4px rgba(132,188,38,.18);
}
.form-section-title {
  font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--navy);
  grid-column: 1/-1; margin-top: .8rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  letter-spacing: -.01em;
}
.form-section-title:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.radio-row { display: flex; flex-wrap: wrap; gap: 1.2rem; grid-column: 1/-1; }
.radio-row label { display: inline-flex; align-items: center; gap: .5em; font-family: var(--body); font-weight: 400; color: var(--ink-soft); cursor: pointer; }
.checkbox-field { grid-column: 1/-1; display: flex; gap: .7rem; align-items: flex-start; }
.checkbox-field input { width: 1.15rem; height: 1.15rem; margin-top: .2rem; accent-color: var(--lime); flex: none; }
.checkbox-field label { font-family: var(--body); font-weight: 400; font-size: .95rem; color: var(--ink-soft); }
.form-actions { grid-column: 1/-1; display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; margin-top: .5rem; }
.form-hint { font-size: .88rem; color: var(--muted); }

/* ============================================================
   CONTACT / info rows
   ============================================================ */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; }
.info b { font-family: var(--display); display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); margin-bottom: .5rem; }
.info a:hover { color: var(--navy); text-decoration: underline; }

/* ============================================================
   LEGAL / prose pages
   ============================================================ */
.page-hero {
  background: var(--navy); color: #fff; position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 1.5rem + 3.5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,.78); margin-top: .8rem; max-width: 52ch; }
.page-hero__court { position: absolute; inset: 0; opacity: .35; }

.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; color: var(--navy); margin: 2.4rem 0 .8rem; }
.prose h3 { font-size: 1.15rem; color: var(--navy); margin: 1.6rem 0 .4rem; }
.prose p { color: var(--ink-soft); margin-bottom: 1rem; }
.prose a { color: #4f7a10; text-decoration: underline; text-underline-offset: 3px; }
.prose ul { padding-left: 1.2rem; color: var(--ink-soft); margin-bottom: 1rem; }
.prose li { margin-bottom: .4rem; }
.prose strong { color: var(--ink); }
.data-flag {
  background: #fff6e6; border: 1px solid #f2d79a; border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; color: #6b4e0e; font-size: .92rem; margin: 1rem 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; font-size: .95rem; }
.footer-col h4 { font-family: var(--display); color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.7); font-size: .96rem; margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: .87rem; color: rgba(255,255,255,.55);
}
.footer-bottom a:hover { color: var(--lime); }

/* ============================================================
   scroll reveal
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* skip link */
.skip { position: absolute; left: -999px; top: 0; background: var(--lime); color: var(--navy); padding: .7em 1.2em; border-radius: 0 0 10px 0; font-family: var(--display); font-weight: 700; z-index: 100; }
.skip:focus { left: 0; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 2rem; transform: translateX(-50%) translateY(140%);
  background: var(--navy); color: #fff; padding: 1em 1.4em; border-radius: 12px;
  box-shadow: var(--shadow-lg); font-family: var(--display); font-weight: 600; z-index: 200;
  transition: transform .45s var(--ease); max-width: 90vw; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   PRINT (Antrag print view)
   ============================================================ */
@media print {
  .site-header, .site-footer, .no-print, .nav-toggle { display: none !important; }
  body { background: #fff; }
}
