/* ============================================================
   NordKøl Klima — skabelon-eksempel bygget af JNGTech I/S
   Palette: hvid/off-white + kølig babyblå atmosfære + marineblå tekst.
   Type: Outfit (display) / Manrope (body, UI).
   Kontrastkrav: al brødtekst ≥ 4.5:1 — verificeret mod #FFFFFF og #F7FAFC.
   --color-accent (#138FC4) og --color-muted (#728490) er KUN til store
   overskrifter, ikoner, dekoration — ikke til brødtekst/knap-tekst i
   normal størrelse. Brug --color-accent-deep (#076A99) til alt
   interaktivt tekstindhold der skal bestå AA.
   ============================================================ */

:root {
  /* ---- semantiske farve-tokens ---- */
  --color-white: #ffffff;
  --color-background: #f7fafc;
  --color-surface: #ffffff;
  --color-surface-blue: #edf7fc;
  --color-baby-blue: #c9eaf8;
  --color-accent: #138fc4;         /* store overskrifter, ikoner, dekoration */
  --color-accent-deep: #076a99;    /* knapper, links, interaktiv tekst */
  --color-accent-deep-hover: #055578;
  --color-heading: #102638;
  --color-body: #526574;
  --color-muted: #728490;          /* dekorativt/store tekststørrelser kun */
  --color-border: #dceaf1;         /* diskrete dekorative streger */
  --color-border-strong: #6e8896;  /* input/knap-rammer (≥3:1 non-text) */
  --color-success: #177a5e;
  --color-danger: #b3261e;

  /* ---- typografi ---- */
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  /* ---- layout ---- */
  --content-max: 1200px;
  --content-narrow: 640px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 20px;
  --space-section: 6.5rem;
  --space-section-mobile: 3.75rem;

  /* ---- bevægelse ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-med: 550ms;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg, canvas, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

.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;
}

.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--color-heading); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: var(--radius-s);
  z-index: 999; transition: top var(--dur-fast) var(--ease-out);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 1.75rem; }

/* ---------- demo banner (skabelon-eksempel) ---------- */
.demo-banner {
  background: var(--color-heading);
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.55rem 1rem;
}
.demo-banner a { color: var(--color-baby-blue); text-decoration: underline; text-underline-offset: 2px; }
.demo-banner a:hover { color: #fff; }

/* ---------- shared type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  margin-bottom: 0.9rem;
}
.eyebrow::before { content: ""; width: 1.3rem; height: 1px; background: var(--color-accent); }

.section__head { max-width: var(--content-narrow); margin-bottom: 2.75rem; }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.18;
  color: var(--color-heading);
  letter-spacing: -0.01em;
}
.section__lede {
  margin-top: 0.85rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-body);
  max-width: 52ch;
}

.section { padding: var(--space-section) 0; }
.section--bordered { border-top: 1px solid var(--color-border); }
.section--surface-blue { background: var(--color-surface-blue); border-top: 1px solid var(--color-border); }

/* ---------- reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-s);
  font-size: 0.96rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  min-height: 44px;
}
.btn--primary { background: var(--color-accent-deep); color: #fff; }
.btn--primary:hover { background: var(--color-accent-deep-hover); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(7, 106, 153, 0.22); }
.btn--ghost { background: transparent; border-color: var(--color-border-strong); color: var(--color-heading); }
.btn--ghost:hover { border-color: var(--color-accent-deep); color: var(--color-accent-deep); transform: translateY(-1px); }
.btn--block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.6; cursor: progress; transform: none !important; box-shadow: none !important; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), padding var(--dur-fast) var(--ease-out), backdrop-filter var(--dur-fast) var(--ease-out);
}
.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-heading);
}
.nav__logo-mark { flex-shrink: 0; color: var(--color-accent-deep); }

/* The section links + CTA live inside the menu at every breakpoint — no
   persistent inline nav bar. Keeps the top bar to logo + toggle only. */
.nav__links { display: none; }
.nav__right { display: flex; align-items: center; gap: 0.9rem; }

.lang-toggle {
  min-width: 44px; min-height: 44px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-s);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-heading);
  background: rgba(255,255,255,0.6);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.lang-toggle:hover { border-color: var(--color-accent-deep); color: var(--color-accent-deep); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: var(--radius-s);
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--color-heading);
  transition: transform var(--dur-fast) var(--ease-in-out), opacity var(--dur-fast) var(--ease-in-out);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav.is-scrolled, .nav--solid {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
  padding: 0.8rem 0;
}

/* Menu dropdown — a compact anchored card on any breakpoint above ~420px;
   widens to a full-bleed sheet only on very narrow phones. */
.nav.is-open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 1.75rem;
  min-width: 240px;
  max-width: calc(100vw - 3.5rem);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-m);
  box-shadow: 0 16px 40px rgba(16, 38, 56, 0.14);
  padding: 0.6rem;
  gap: 0.1rem;
  font-size: 1rem;
  max-height: calc(100svh - 100% - 1.2rem);
  overflow-y: auto;
}
.nav.is-open .nav__links a:not(.nav__cta) {
  padding: 0.75rem 0.8rem;
  border-radius: var(--radius-s);
  color: var(--color-heading);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.nav.is-open .nav__links a:not(.nav__cta):hover { background: var(--color-surface-blue); color: var(--color-accent-deep); }
.nav.is-open .nav__cta { display: inline-flex; margin: 0.5rem 0.3rem 0.2rem; justify-content: center; }

@media (max-width: 420px) {
  .nav.is-open .nav__links { left: 1.25rem; right: 1.25rem; min-width: 0; max-width: none; }
}

/* ============================================================
   HERO — scroll-scrubbed video
   ============================================================ */
.hero { position: relative; background: var(--color-background); }
.hero__pin {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-background); /* shows briefly only if poster is slow to paint — never black */
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 95% 78% at 50% 55%, rgba(247, 250, 252, 0.94) 0%, rgba(247, 250, 252, 0.55) 55%, rgba(247, 250, 252, 0) 78%);
  opacity: var(--scrim, 0);
  transition: opacity 60ms linear;
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.75rem 2rem;
}
.hero__eyebrow, .hero__title, .hero__lede, .hero__actions {
  /* Default = hidden. GSAP tweens FROM this state as scroll reaches the
     reveal window; these are also the values captured as each tween's
     start point (see js/hero-video.js). Never remove without updating
     the matching .to() calls there. */
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
}
.hero__eyebrow { color: var(--color-accent-deep); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-heading);
  max-width: 16ch;
}
.hero__lede {
  margin-top: 1.2rem;
  max-width: 42ch;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--color-body);
}
.hero__actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero__scrollcue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  color: var(--color-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.hero__scrollcue span { width: 1px; height: 30px; background: linear-gradient(var(--color-accent-deep), transparent); }
.hero__scrollcue.is-hidden { opacity: 0; pointer-events: none; }

/* Fallback states — reduced motion, failed video load, Save-Data, or no-JS.
   No pin ever runs in these cases, so the section simply keeps its natural
   ~100svh height (no leftover dead scroll space). Content fades in once,
   short and calm, per the brief. */
.no-js .hero__eyebrow, .no-js .hero__title, .no-js .hero__lede, .no-js .hero__actions,
.reduced-motion .hero__eyebrow, .reduced-motion .hero__title, .reduced-motion .hero__lede, .reduced-motion .hero__actions,
.hero--static-revealed .hero__eyebrow, .hero--static-revealed .hero__title,
.hero--static-revealed .hero__lede, .hero--static-revealed .hero__actions {
  opacity: 1;
  transform: none;
  filter: none;
}
.hero--static .hero__eyebrow, .hero--static .hero__title, .hero--static .hero__lede, .hero--static .hero__actions {
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.reduced-motion .hero__scrollcue, .no-js .hero__scrollcue { display: none; }
.no-js .hero__scrim, .reduced-motion .hero__scrim, .hero--static .hero__scrim { opacity: 0.85; }

@media (max-width: 900px) { .hero__video { object-position: 44% 24%; } }
@media (max-width: 640px) {
  .hero__content { padding-top: 4.5rem; }
  .hero__title { max-width: 13ch; }
  .hero__video { object-position: 32% 28%; }
}

/* ============================================================
   VALUE LINE — compact strip
   ============================================================ */
.value-line { background: var(--color-white); border-top: 1px solid var(--color-border); }
.value-line__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.value-line__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-heading);
  padding: 0 1.5rem;
  position: relative;
}
.value-line__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: 50%; transform: translateY(-50%);
  width: 1px; height: 2rem;
  background: var(--color-border);
}
.value-line__icon { width: 1.6rem; height: 1.6rem; color: var(--color-accent); flex-shrink: 0; }

@media (max-width: 700px) {
  .value-line__inner { flex-direction: column; gap: 1.5rem; min-height: 0; }
  .value-line__item:not(:last-child)::after { display: none; }
}

/* ============================================================
   SOLUTIONS — asymmetric editorial (section 3)
   ============================================================ */
.solutions {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
}
.solutions__item--lead {
  grid-row: span 2;
  padding-right: 2rem;
  border-right: 1px solid var(--color-border);
}
.solutions__item--lead h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.solutions__item--lead p { font-size: 1.05rem; max-width: 38ch; }
.solutions__item {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-border);
}
.solutions__item:last-child { border-bottom: none; padding-bottom: 0; }
.solutions__item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}
.solutions__item p { color: var(--color-body); font-size: 0.98rem; max-width: 34ch; }
.solutions__item a {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--color-accent-deep);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.process-strip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.process-strip__arrow { color: var(--color-accent); }

@media (max-width: 800px) {
  .solutions { grid-template-columns: 1fr; }
  .solutions__item--lead { grid-row: auto; padding-right: 0; border-right: none; border-bottom: 1px solid var(--color-border); padding-bottom: 1.75rem; }
  .process-strip { flex-wrap: wrap; }
}

/* ============================================================
   TEKNOLOGI — light studio (section 4)
   ============================================================ */
.exploded__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}
.exploded__text { max-width: 38ch; }
.exploded__stage {
  position: relative;
  aspect-ratio: 4 / 3.4;
  width: 100%;
  border-radius: var(--radius-l);
  background:
    linear-gradient(rgba(16, 38, 56, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 38, 56, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, #ffffff 0%, var(--color-surface-blue) 78%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.exploded__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.exploded__label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-heading);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}
.exploded__label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent-deep); }
.exploded__label.is-visible { opacity: 1; transform: translateY(0); }
.exploded__label--cabinet { top: 8%; left: 6%; }
.exploded__label--filter { top: 30%; right: 4%; }
.exploded__label--fan { bottom: 8%; left: 4%; }

@media (max-width: 960px) {
  .exploded__layout { grid-template-columns: 1fr; }
  .exploded__text { max-width: none; }
}

/* ============================================================
   KONTAKT (section 5)
   ============================================================ */
.contact { background: var(--color-white); }
.contact__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact__info { max-width: 32ch; }
.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-heading);
}
.contact__phone svg { width: 1.2rem; height: 1.2rem; color: var(--color-accent-deep); }

.contact-form {
  background: var(--color-surface-blue);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: 2rem;
  color: var(--color-body);
}
.contact-form__row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form label { font-size: 0.85rem; font-weight: 600; color: var(--color-heading); }
.contact-form input, .contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-s);
  background: var(--color-white);
  font-size: 0.98rem;
  min-height: 44px;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.contact-form textarea { min-height: 90px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--color-accent-deep);
  box-shadow: 0 0 0 3px rgba(7, 106, 153, 0.12);
}
.contact-form input[aria-invalid="true"], .contact-form textarea[aria-invalid="true"] { border-color: var(--color-danger); }
.contact-form__error { font-size: 0.8rem; color: var(--color-danger); min-height: 1.1em; }
.contact-form__error:empty { display: none; }
.contact-form__note { margin-top: 0.85rem; font-size: 0.8rem; color: var(--color-muted); }
.contact-form__status { margin-top: 1rem; padding: 0.85rem 1rem; border-radius: var(--radius-s); font-size: 0.9rem; display: flex; align-items: center; gap: 0.6rem; border: 1px solid transparent; }
.contact-form__status[hidden] { display: none; }
.contact-form__status--success { background: rgba(23, 122, 94, 0.1); color: var(--color-success); border-color: rgba(23, 122, 94, 0.25); }
.contact-form__status--error { background: rgba(179, 38, 30, 0.08); color: var(--color-danger); border-color: rgba(179, 38, 30, 0.22); }
.contact-form__submit { position: relative; }
.contact-form__spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5); border-top-color: #fff;
  animation: spin 0.7s linear infinite; display: none;
}
.is-loading .contact-form__spinner { display: inline-block; }
.is-loading .contact-form__submit-label { opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 800px) {
  .contact__layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.5rem; }
}

/* ============================================================
   FOOTER — compact
   ============================================================ */
.footer-compact { background: var(--color-background); border-top: 1px solid var(--color-border); padding: 2rem 0 1.25rem; }
.footer-compact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
}
.footer-compact__logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--color-heading);
}
.footer-compact__logo svg { color: var(--color-accent-deep); }
.footer-compact__meta {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--color-body);
}
.footer-compact__meta a:hover { color: var(--color-accent-deep); }
.footer-compact__links { display: flex; gap: 1.5rem; font-size: 0.85rem; color: var(--color-body); }
.footer-compact__links a:hover { color: var(--color-accent-deep); }
.footer-compact__bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.1rem; border-top: 1px solid var(--color-border);
  font-size: 0.78rem; color: var(--color-muted);
}
.footer-compact__bottom a:hover { color: var(--color-accent-deep); }

@media (max-width: 700px) {
  .footer-compact__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ============================================================
   SECTION SPACING (mobile)
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: var(--space-section-mobile) 0; }
  .section__head { margin-bottom: 2rem; }
}
