/*
Theme Name: Airkraft
Theme URI: https://www.airkraft-helicopter.de
Author: Kraft IT-Services
Description: Eigenes Theme für Airkraft Helicopter – Hubschrauberrundflüge ab Pfinztal.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.1
License: GPL-2.0-or-later
Text Domain: airkraft
*/

/* ---------------------------------------------------------------------------
   1. Design-Tokens
   --------------------------------------------------------------------------- */
:root {
  /* Farben */
  --c-navy: #0B1B33;
  --c-navy-2: #12264A;
  --c-blue: #14307A;
  --c-blue-hover: #0F2560;
  --c-yellow: #F4C400;
  --c-yellow-hover: #E0B400;
  --c-yellow-deep: #8A6E00;
  --c-white: #FFFFFF;
  --c-n50: #F6F7F9;
  --c-n100: #EDEFF3;
  --c-n200: #DCE0E7;
  --c-n300: #C4CAD4;
  --c-n400: #9AA1AD;
  --c-n500: #6B7280;
  --c-n700: #3B4250;
  --c-n900: #0B1B33;
  --c-success: #1B7F4B;
  --c-error: #B42318;
  --c-on-navy: rgba(255, 255, 255, 0.78);
  --c-on-navy-muted: rgba(255, 255, 255, 0.58);
  --c-line-on-navy: rgba(255, 255, 255, 0.14);

  /* Typografie */
  --f-display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --f-body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-md: 1.0625rem;
  --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-h2: clamp(1.875rem, 1.4rem + 1.8vw, 2.75rem);
  --fs-h1: clamp(2.5rem, 1.6rem + 3.6vw, 4.25rem);
  --fs-h1-sub: clamp(2.125rem, 1.4rem + 2.8vw, 3.5rem);
  --lh-tight: 1.05;
  --lh-body: 1.6;
  --measure: 62ch;

  /* Spacing (4px-Raster) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --section: clamp(3.5rem, 2.5rem + 5vw, 6rem);
  --gutter: clamp(1.25rem, 0.5rem + 3vw, 2.5rem);
  --container: 75rem;

  /* Radien, Linien, Schatten */
  --r-sm: 8px;
  --r-md: 14px;
  --r-pill: 999px;
  --line: 1px solid var(--c-n200);
  --shadow-1: 0 12px 32px rgba(11, 27, 51, 0.10);
  --shadow-2: 0 20px 48px rgba(11, 27, 51, 0.16);

  /* Motion */
  --t-fast: 150ms;
  --t-base: 220ms;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

/* ---------------------------------------------------------------------------
   2. Schriften
   --------------------------------------------------------------------------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/fonts/bricolage-grotesque.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('assets/fonts/instrument-sans.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------------------
   3. Basis
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--c-n900);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0; text-wrap: pretty; }
a { color: var(--c-blue); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--c-blue-hover); }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--c-yellow); outline-offset: 3px; border-radius: 4px; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 100;
  background: var(--c-yellow); color: var(--c-navy); padding: var(--s-3) var(--s-4);
  border-radius: var(--r-sm); font-weight: 600;
}
.skip-link:focus { top: var(--s-4); }

@media (prefers-reduced-motion: reduce) {
  :root { --t-fast: 0ms; --t-base: 0ms; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------------------
   4. Layout-Bausteine
   --------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tint { background: var(--c-n50); }
.section--navy { background: var(--c-navy); color: var(--c-white); }
.stack { display: flex; flex-direction: column; gap: var(--s-6); }
.stack--tight { gap: var(--s-4); }
.stack--loose { gap: var(--s-12); }
.grid { display: grid; gap: var(--s-6); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-6); }
.grid--split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-16); align-items: center; }
.grid--form { grid-template-columns: 1fr 1.1fr; gap: var(--s-16); align-items: start; }
.grid--faq { grid-template-columns: 1fr 1.4fr; gap: var(--s-16); align-items: start; }
.measure { max-width: var(--measure); }
.section-head { display: flex; flex-direction: column; gap: var(--s-4); max-width: var(--measure); }
.section-head--row { flex-direction: row; justify-content: space-between; align-items: flex-end; max-width: none; gap: var(--s-8); }

@media (max-width: 64rem) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--split, .grid--form, .grid--faq { gap: var(--s-10); }
}
@media (max-width: 48rem) {
  .grid--2, .grid--3, .grid--split, .grid--form, .grid--faq { grid-template-columns: 1fr; }
  .grid--split { gap: var(--s-8); }
  .section-head--row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 30rem) {
  .grid--4 { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   5. Typografische Helfer
   --------------------------------------------------------------------------- */
.eyebrow {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-blue);
}
.eyebrow--yellow { color: var(--c-yellow); }
.lead { font-size: var(--fs-lg); line-height: 1.55; color: var(--c-n700); max-width: var(--measure); }
.section--navy .lead, .hero .lead { color: var(--c-on-navy); }
.muted { color: var(--c-n500); font-size: var(--fs-sm); }
.link-arrow { display: inline-flex; align-items: center; gap: var(--s-2); font-weight: 600; font-size: var(--fs-sm); }
.link-arrow svg { transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------------------------------------------------------------------------
   6. Komponenten: Button
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 3.25rem; padding: 0 var(--s-6); border-radius: var(--r-pill);
  font-weight: 600; font-size: 1rem; line-height: 1; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }
.btn--primary { background: var(--c-yellow); color: var(--c-navy); }
.btn--primary:hover { background: var(--c-yellow-hover); color: var(--c-navy); box-shadow: 0 6px 16px rgba(244, 196, 0, 0.35); }
.btn--ghost { background: transparent; color: var(--c-white); border-color: rgba(255, 255, 255, 0.4); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); color: var(--c-white); border-color: rgba(255, 255, 255, 0.7); }
.btn--outline { background: transparent; color: var(--c-navy); border-color: var(--c-n200); }
.btn--outline:hover { border-color: var(--c-navy); color: var(--c-navy); }
.btn--sm { min-height: 2.75rem; padding: 0 var(--s-5); font-size: var(--fs-sm); }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------------------
   7. Komponenten: Card, Icon, Fakt
   --------------------------------------------------------------------------- */
.card {
  background: var(--c-white); border: var(--line); border-radius: var(--r-md);
  padding: var(--s-8); display: flex; flex-direction: column; gap: var(--s-4);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.card--link:hover { border-color: var(--c-n300); box-shadow: var(--shadow-1); transform: translateY(-2px); }
.card--raised { box-shadow: var(--shadow-1); }
.card__title { font-size: var(--fs-h3); }
.card__text { color: var(--c-n700); font-size: var(--fs-sm); }
.card .link-arrow { margin-top: auto; }
.icon-box {
  width: 2.5rem; height: 2.5rem; border-radius: 10px; background: var(--c-n100);
  color: var(--c-blue); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fact { display: flex; flex-direction: column; gap: var(--s-1); }
.fact__value { font-family: var(--f-display); font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.fact__label { font-size: var(--fs-xs); color: var(--c-n500); }
.section--navy .fact__label, .hero .fact__label { color: var(--c-on-navy-muted); }
.fact-row { display: flex; gap: var(--s-10); flex-wrap: wrap; padding-top: var(--s-4); border-top: 1px solid var(--c-line-on-navy); }
.fact-card { flex-direction: row; align-items: center; gap: var(--s-4); padding: var(--s-6); }

/* Piktogramm-Listen */
.pin-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-3) var(--s-6); list-style: none; font-weight: 500; }
.pin-list li { display: flex; gap: var(--s-3); align-items: center; }
.pin-list svg { color: var(--c-yellow-deep); flex-shrink: 0; }
.feature-list { display: flex; flex-direction: column; gap: var(--s-4); list-style: none; }
.feature-list li { display: flex; gap: var(--s-4); align-items: flex-start; }
.feature-list svg { color: var(--c-yellow-deep); flex-shrink: 0; margin-top: 3px; }
.feature-list b { display: block; }
.feature-list p { color: var(--c-n700); font-size: var(--fs-sm); }
.feature-pair { display: flex; gap: var(--s-8); flex-wrap: wrap; }
.feature-pair > div { display: flex; gap: var(--s-3); align-items: flex-start; flex: 1 1 14rem; }
.feature-pair b { font-size: var(--fs-sm); display: block; }
.feature-pair p { font-size: var(--fs-xs); color: var(--c-n500); }
@media (max-width: 30rem) { .pin-list { grid-template-columns: 1fr; } }

/* Schritte */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-8); list-style: none; counter-reset: step; }
.steps li { display: flex; flex-direction: column; gap: var(--s-3); }
.steps li::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--f-display); font-size: var(--fs-sm); font-weight: 600; color: var(--c-yellow-deep);
}
.steps h3 { font-size: var(--fs-h3); }
.steps p { color: var(--c-n700); font-size: var(--fs-sm); }
@media (max-width: 48rem) { .steps { grid-template-columns: 1fr; } }

/* Bilder */
.figure { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--c-n100); }
.figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.figure--tall img { aspect-ratio: 5 / 4; }
.figure--wide img { aspect-ratio: 16 / 10; }
.figure--placeholder {
  aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
  color: var(--c-n500); font-size: var(--fs-sm); border: 1px dashed var(--c-n300); text-align: center; padding: var(--s-6);
}

/* ---------------------------------------------------------------------------
   8. Header und Navigation
   --------------------------------------------------------------------------- */
.site-header { background: var(--c-navy); color: var(--c-white); position: sticky; top: 0; z-index: 50; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-8); min-height: 5rem; }
.brand { display: inline-flex; align-items: center; background: var(--c-white); border-radius: var(--r-sm); padding: var(--s-1) var(--s-3); flex-shrink: 0; }
.brand img { height: 2.75rem; width: auto; }
.nav { display: flex; align-items: center; gap: var(--s-8); list-style: none; }
.nav a {
  color: var(--c-white); opacity: 0.85; font-size: var(--fs-sm); font-weight: 500;
  padding: var(--s-2) 0; border-bottom: 2px solid transparent; transition: opacity var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.nav a:hover, .nav a:focus-visible { opacity: 1; color: var(--c-white); }
.nav .current-menu-item > a, .nav .current-menu-ancestor > a, .nav .current_page_parent > a { opacity: 1; border-bottom-color: var(--c-yellow); }
.header-actions { display: flex; align-items: center; gap: var(--s-5); }
.header-phone { color: var(--c-white); opacity: 0.85; font-size: var(--fs-sm); display: inline-flex; align-items: center; gap: var(--s-2); }
.header-phone:hover { opacity: 1; color: var(--c-white); }
.nav-toggle {
  display: none; width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center;
  background: transparent; border: 0; color: var(--c-white); border-radius: var(--r-sm); cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 64rem) {
  .header-phone { display: none; }
  .nav { gap: var(--s-6); }
}
@media (max-width: 52rem) {
  .site-header__inner { min-height: 4.25rem; }
  .brand img { height: 2rem; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn { min-height: 2.5rem; padding: 0 var(--s-4); font-size: var(--fs-xs); }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%; background: var(--c-navy);
    border-top: 1px solid var(--c-line-on-navy); padding: var(--s-4) var(--gutter) var(--s-6);
    display: none; box-shadow: var(--shadow-2);
  }
  .site-nav[data-open="true"] { display: block; }
  .nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { display: block; padding: var(--s-4) 0; font-size: var(--fs-md); border-bottom: 1px solid var(--c-line-on-navy); }
  .nav .current-menu-item > a { border-bottom-color: var(--c-line-on-navy); color: var(--c-yellow); }
  .nav li:last-child a { border-bottom: 0; }
}

/* ---------------------------------------------------------------------------
   9. Hero
   --------------------------------------------------------------------------- */
.hero { background: var(--c-navy); color: var(--c-white); }
.hero__inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-12); align-items: center; padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.hero__copy { display: flex; flex-direction: column; gap: var(--s-6); }
.hero__actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.hero .figure img { aspect-ratio: 5 / 4; }
.hero--page .hero__inner { grid-template-columns: 1fr; padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); }
.hero--page h1 { font-size: var(--fs-h1-sub); max-width: 22ch; }
.breadcrumb { font-size: var(--fs-xs); color: var(--c-on-navy-muted); display: flex; gap: var(--s-2); list-style: none; flex-wrap: wrap; }
.breadcrumb a { color: var(--c-on-navy-muted); }
.breadcrumb a:hover { color: var(--c-white); }
.fact-strip { transform: translateY(calc(-1 * var(--s-8))); margin-bottom: calc(-1 * var(--s-8)); }
@media (max-width: 52rem) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero .figure img { aspect-ratio: 16 / 10; }
  .hero__actions .btn { flex: 1 1 100%; }
  .fact-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-4); }
}

/* ---------------------------------------------------------------------------
   10. Formular
   --------------------------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: var(--s-4); }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-4); }
.field { display: flex; flex-direction: column; gap: var(--s-1); }
.field label { font-size: var(--fs-xs); font-weight: 600; color: var(--c-n700); }
.field input, .field textarea, .field select {
  width: 100%; min-height: 3rem; border: 1px solid var(--c-n200); border-radius: var(--r-sm);
  padding: var(--s-3) var(--s-4); font: inherit; font-size: var(--fs-sm); color: var(--c-n900); background: var(--c-white);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field input:hover, .field textarea:hover { border-color: var(--c-n300); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(20, 48, 122, 0.15); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--c-error); }
.field textarea { min-height: 7.5rem; resize: vertical; }
.field--hp { position: absolute; left: -9999px; }
.field__check { display: flex; gap: var(--s-2); align-items: flex-start; font-weight: 400; font-size: var(--fs-xs); color: var(--c-n700); cursor: pointer; }
.field__check input { margin: 3px 0 0; width: 1rem; height: 1rem; accent-color: var(--c-blue); flex-shrink: 0; }
.field__check a { text-decoration: underline; }
.form__note { font-size: var(--fs-xs); color: var(--c-n500); }
.form__note a { text-decoration: underline; }
.notice { border-radius: var(--r-sm); padding: var(--s-4) var(--s-5); font-size: var(--fs-sm); border: 1px solid; }
.notice--ok { background: #EAF6EF; border-color: #BFE3CD; color: var(--c-success); }
.notice--error { background: #FDF0EE; border-color: #F3C7C1; color: var(--c-error); }
.contact-lines { display: flex; flex-direction: column; gap: var(--s-3); list-style: none; }
.contact-lines li, .contact-lines a { display: flex; gap: var(--s-3); align-items: center; color: var(--c-n900); }
.contact-lines a:hover { color: var(--c-blue); }
@media (max-width: 30rem) { .form__row { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------------
   11. FAQ
   --------------------------------------------------------------------------- */
.faq { border-top: var(--line); }
.faq details { border-bottom: var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  padding: var(--s-5) 0; font-weight: 600; font-size: var(--fs-md);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { color: var(--c-n500); flex-shrink: 0; transition: transform var(--t-base) var(--ease); }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq details > div { padding: 0 0 var(--s-5); color: var(--c-n700); font-size: var(--fs-sm); max-width: 65ch; }

/* ---------------------------------------------------------------------------
   12. CTA-Band
   --------------------------------------------------------------------------- */
.cta-band { background: var(--c-navy); color: var(--c-white); }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: var(--s-8); flex-wrap: wrap; padding-block: var(--s-16); }
.cta-band h2 { max-width: 20ch; }
.cta-band p { color: var(--c-on-navy); }

/* ---------------------------------------------------------------------------
   13. Inhaltseiten (Editor-Inhalt)
   --------------------------------------------------------------------------- */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: var(--s-4); }
.prose h2 { margin-top: var(--s-10); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.prose h3 { margin-top: var(--s-8); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: var(--s-2); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose address { font-style: normal; }
.prose figure { margin: var(--s-8) 0; }
.prose figcaption { font-size: var(--fs-xs); color: var(--c-n500); margin-top: var(--s-2); }
.page-head { padding-block: var(--s-16) var(--s-8); }

/* ---------------------------------------------------------------------------
   14. Footer
   --------------------------------------------------------------------------- */
.site-footer { background: var(--c-navy); color: var(--c-white); padding-block: var(--s-16) var(--s-8); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-10); }
.site-footer__brand { display: flex; flex-direction: column; gap: var(--s-4); max-width: 36ch; }
.site-footer__brand .brand { align-self: flex-start; }
.site-footer__brand p { font-size: var(--fs-sm); color: var(--c-n400); }
.site-footer__col { display: flex; flex-direction: column; gap: var(--s-3); list-style: none; }
.site-footer__col b { font-size: var(--fs-sm); }
.site-footer__col a, .site-footer__col span { color: var(--c-n400); font-size: var(--fs-sm); }
.site-footer__col a:hover { color: var(--c-white); }
.site-footer__bottom {
  margin-top: var(--s-10); padding-top: var(--s-6); border-top: 1px solid var(--c-line-on-navy);
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; font-size: var(--fs-xs); color: var(--c-n400);
}
@media (max-width: 64rem) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 40rem) { .site-footer__grid { grid-template-columns: 1fr; gap: var(--s-8); } }

/* ---------------------------------------------------------------------------
   15. 404
   --------------------------------------------------------------------------- */
.error-page { padding-block: var(--s-24); text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--s-6); }
