/* Typsnitten ligger på egen server. Hämtades de från Googles CDN
   skulle varje besökares IP-adress skickas dit, och sidan fick vänta
   på ytterligare två anslutningar innan texten kunde ritas ut.
   Filerna är nedskalade till de tecken sajten använder: 221 kB -> 122 kB.
   Behöver du fler tecken, kör om subsettningen (se CLAUDE.md). */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-800.woff2') format('woff2');
}

/* ==========================================================================
   Rejting.se – all CSS för sajten.
   Ordning: 1 variabler · 2 grund · 3 layout · 4 komponenter · 5 sektioner
            6 sidhuvud · 7 sidfot · 8 responsivt
   Ändrar du något här: höj ?v=N i alla sidors <link rel="stylesheet">.
   ========================================================================== */

/* 1 ── Variabler ───────────────────────────────────────────────────────── */
:root {
  /* Färg – hämtad ur logotypen: indigo #1800ad och guld #ffc30f */
  --ink:        #0e0b2e;
  --ink-2:      #1a1445;
  --text:       #2e2b4d;
  --muted:      #5f5c83;
  --line:       #e3e1f2;
  --line-soft:  #f0eefa;
  --surface:    #ffffff;
  --tint:       #f7f6fd;
  --brand:      #1800ad;
  --brand-dark: #12008a;
  --brand-2:    #3b1fd6;
  --brand-soft: #edebfd;
  --star:       #ffc30f;
  --cta:        #1800ad;
  --cta-dark:   #12008a;
  --ok:         #1e8e3e;

  /* Typografi */
  --font-head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Form */
  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 1px 2px rgba(14, 11, 46, .06), 0 8px 24px -12px rgba(14, 11, 46, .20);
  --shadow-lg: 0 2px 4px rgba(14, 11, 46, .05), 0 24px 48px -20px rgba(14, 11, 46, .30);

  /* Rytm */
  --gutter:  clamp(1.25rem, 4vw, 2rem);
  --section: clamp(4rem, 8vw, 6.5rem);
  --wrap:    1120px;
}

/* 2 ── Grund ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--brand-dark); }

img, svg { max-width: 100%; height: auto; display: block; }

ul { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .45em; }

strong { color: var(--ink); font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: .8rem 1.2rem; z-index: 60;
  border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* 3 ── Layout ──────────────────────────────────────────────────────────── */
.wrap {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin-inline: auto;
}

.section { padding-block: var(--section); }
.section--tint { background: var(--tint); }
.section--line { border-top: 1px solid var(--line-soft); }

.section--dark {
  background: var(--ink);
  color: #c9c5e6;
}
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark a { color: #b9aefc; }

.head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.head--center { margin-inline: auto; text-align: center; }
.head p { color: var(--muted); font-size: 1.125rem; margin-bottom: 0; }
.section--dark .head p { color: #aca7d3; }

.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .7rem;
}
.section--dark .eyebrow { color: var(--star); }

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* 4 ── Komponenter ─────────────────────────────────────────────────────── */

/* Knappar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn svg { flex: none; }

.btn--primary { background: var(--cta); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--cta-dark); color: #fff; }

.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-dark); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--tint); color: var(--ink); border-color: var(--muted); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--brand-soft); color: var(--ink); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }

/* Mörka sektioner färgar alla länkar – knapparna ska behålla sin egen färg */
.section--dark .btn--light,
.section--dark .btn--light:hover { color: var(--ink); }
.section--dark .btn--outline-light,
.section--dark .btn--outline-light:hover { color: #fff; }

.btn--sm { padding: .6rem 1.1rem; font-size: .9375rem; min-height: 42px; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

/* Etikett / pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
}
.pill--warm { background: #fdeee6; color: var(--cta-dark); }
.pill--dark { background: rgba(255,255,255,.1); color: #ded9f7; }

/* Kort */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 1rem; }

.card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.card--link:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  color: inherit;
}
.card--link .card-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: .35rem;
  margin-top: auto;
  padding-top: .9rem;
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--brand);
}
.card--link:hover .card-more { color: var(--brand-dark); }

/* Ikonpuck */
.puck {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.puck svg { width: 22px; height: 22px; }
.puck--warm { background: #fdeee6; color: var(--cta-dark); }
.section--dark .puck { background: rgba(255,255,255,.09); color: var(--star); }

/* Stjärnor */
.stars { display: inline-flex; gap: 3px; color: var(--star); }
.stars svg { width: 18px; height: 18px; }

/* Steg */
.steps { counter-reset: steg; list-style: none; padding: 0; margin: 0; }
.steps > li {
  counter-increment: steg;
  position: relative;
  padding-left: 3.6rem;
  margin-bottom: 2rem;
}
.steps > li:last-child { margin-bottom: 0; }
.steps > li::before {
  content: counter(steg);
  position: absolute;
  left: 0; top: -.15rem;
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
}
.steps h3 { margin-bottom: .3rem; }
.steps p { color: var(--muted); margin-bottom: 0; }
.section--dark .steps p { color: #aca7d3; }

/* Punktlista med bock */
.checks { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.checks li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .7rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  background: var(--ok) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12 10 18 20 6'/%3E%3C/svg%3E") center / .7rem no-repeat;
}

/* Faktarutor */
.facts {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--tint);
}
.fact strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}
.fact span { font-size: .9375rem; color: var(--muted); }

/* Pris */
.prices {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 42rem;
  margin-inline: auto;
}
.price {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.price--featured {
  border-color: var(--brand);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}
.price-tag {
  position: absolute;
  top: -.85rem; left: 1.9rem;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-size: .8125rem;
  font-weight: 700;
}
.price h3 { font-size: 1.05rem; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.price .amount {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .35rem;
}
.price .amount span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price .note { font-size: .9375rem; color: var(--muted); margin-bottom: 1.4rem; }
.price .btn { width: 100%; margin-top: auto; }

/* Frågor och svar */
.faq { max-width: 46rem; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  display: flex;
  padding: 1.1rem 0;
  min-height: 48px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 1.2rem; height: 1.2rem;
  margin-top: .2rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231800ad' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 0 1.25rem; color: var(--muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* Brödsmulor */
.crumbs {
  padding-block: .8rem;
  font-size: .9375rem;
  color: var(--muted);
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
  margin: 0; padding: 0;
}
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: .45rem; color: var(--line); }
.crumbs a { display: inline-block; padding: .3rem 0; color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--brand); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); }

/* Länkmoln */
.tags { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 0; list-style: none; }
.tags li { margin: 0; }
.tags a {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease;
}
.tags a:hover { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-dark); }

/* 5 ── Sektioner ───────────────────────────────────────────────────────── */

/* Hero */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: var(--section);
  background:
    radial-gradient(60rem 30rem at 85% -10%, var(--brand-soft), transparent 60%),
    linear-gradient(180deg, #fbfdff, var(--surface));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: .5em; }
.hero .lead {
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.8rem;
}
.hero .pill { margin-bottom: 1.4rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.6rem;
  font-size: .9375rem;
  color: var(--muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-meta svg { width: 17px; height: 17px; color: var(--ok); flex: none; }

.hero-art { position: relative; }
.hero-art--scen img {
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.split-art .foto {
  max-width: 24rem;
  margin-inline: auto;
}

.spots-rubrik {
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 1.1rem;
  font-size: 1.05rem;
}

.hero-art .card-shot {
  width: min(100%, 26rem);
  margin-inline: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Sidobild-block (bild + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--flip .split-art { order: -1; }
.split-art img, .split-art svg {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* Placeringsruta på branschsidor */
.spots {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  padding: 0; margin: 0;
  list-style: none;
}
.spots li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin: 0;
  font-size: 1rem;
}
.spots svg { flex: none; width: 20px; height: 20px; color: var(--brand); margin-top: .2rem; }

/* Avslutande uppmaning */
.cta-band { text-align: center; }
.cta-band .head { margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }
.cta-band .fineprint { margin-top: 1.2rem; font-size: .9375rem; color: #9a95c4; }

/* Liten centrerad notis under en sektion */
.note-center {
  margin-top: 1.6rem;
  text-align: center;
  font-size: .9375rem;
  color: var(--muted);
}

/* 6 ── Sidhuvud ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  padding: .55rem 0;
  gap: .6rem;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}
.logo:hover { color: var(--ink); }
.logo img { width: 52px; height: 32px; }
.logo .dot { color: var(--brand); }
.site-footer .logo .dot { color: #b9aefc; }

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle-label {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle-label svg { width: 22px; height: 22px; }
.nav-toggle:focus-visible + .nav-toggle-label { outline: 3px solid var(--brand); outline-offset: 2px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
}
.site-nav a {
  font-size: .9688rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--brand); }
.site-nav .btn { color: #fff; }
.site-nav .btn:hover { color: #fff; }

/* Löptext i guiderna. Radlängden hålls kring 65–70 tecken, som är
   ungefär så långt ögat orkar innan det tappar raden. */
.prose {
  max-width: 40rem;
  margin-inline: auto;
}
.prose h1 { margin-bottom: .5em; }
.prose h2 {
  margin-top: 2.4em;
  margin-bottom: .55em;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
}
.prose h2:first-of-type { margin-top: 1.8em; }
.prose p { margin-bottom: 1.15em; }
.prose .ingress {
  font-size: clamp(1.1rem, 2vw, 1.26rem);
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 1.6em;
}
.prose > .eyebrow { margin-bottom: .9rem; }

.section--artikel { padding-bottom: clamp(2.5rem, 5vw, 4rem); }


/* 7 ── Sidfot ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: #a9a4cd;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .9688rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.site-footer h2 {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .15rem; }
.site-footer li a { display: inline-block; padding: .35rem 0; }
.site-footer a { color: #a9a4cd; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .logo { color: #fff; margin-bottom: 1rem; font-size: 1.12rem; }
.site-footer .logo img { width: 40px; height: 25px; }
.site-footer .blurb { max-width: 22rem; color: #948ebd; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #8781b1;
  font-size: .9063rem;
}

/* 8 ── Responsivt ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  /* Surfplatta stående: tre spalter blir för smala, texten radbryts sönder */
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 20rem; margin-inline: auto; }
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip .split-art { order: 0; }
}

@media (max-width: 860px) {
  .site-header .wrap { flex-wrap: wrap; min-height: 64px; }
  .nav-toggle-label { display: flex; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding-bottom: 1rem;
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .site-nav a {
    padding: .85rem .25rem;
    border-top: 1px solid var(--line-soft);
    font-size: 1.0625rem;
  }
  .site-nav .btn {
    margin-top: .9rem;
    border-top: 0;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; text-align: left; }
  .prices { grid-template-columns: 1fr; }
  .spots { grid-template-columns: 1fr; }
  .steps > li { padding-left: 3.1rem; }
  .steps > li::before { width: 2.2rem; height: 2.2rem; font-size: .95rem; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .hero-meta { gap: .6rem; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .site-footer, .cta-band { display: none; }
  body { font-size: 11pt; color: #000; }
}
