/* ============================================================
   GlowPutt — skabelon-eksempel bygget af JNGTech I/S
   Palette: dyb næsten-sort baggrund + neon hot pink / elektrisk lilla /
   syrlig limegrøn. Ægte til brandet — det er et glow-in-the-dark
   minigolf-hus, så mørk baggrund + neon-accenter er autentisk, ikke pynt.
   Type: Fredoka (rund, legende display) / Nunito (venlig brødtekst).
   Bevidst LAV kompleksitet: ingen scroll-reveal, ingen JS-animation —
   al bevægelse er ren CSS (@keyframes puls/bounce + hover). Det er
   pointen med dette eksempel: sjovt og gennemført, men billigt at bygge.
   Kontrast: brødtekst kører på lys/hvid-agtig tekst mod mørk baggrund
   (≥ 4.5:1). Neon-farverne bruges fuldt mættet kun til store
   overskrifter, ikoner, kanter og knapper — aldrig som småtekst-farve
   direkte på den mørkeste baggrund.
   ============================================================ */

:root {
  /* ---- semantiske farve-tokens ---- */
  --color-bg: #0b0713;
  --color-bg-alt: #150c26;
  --color-surface: #1c1130;
  --color-surface-raised: #241638;
  --color-pink: #ff2e93;
  --color-pink-soft: #ff8cc6;
  --color-purple: #9b5bff;
  --color-purple-deep: #6d2fd6;
  --color-lime: #c6ff3d;
  --color-lime-deep: #9fd621;
  --color-text: #f7f3ff;
  --color-text-dim: #c9bfe0;
  --color-text-mute: #9689b8;
  --color-border: rgba(247, 243, 255, 0.14);
  --color-border-strong: rgba(247, 243, 255, 0.28);
  --color-success: #6bffb0;
  --color-danger: #ff6b6b;

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

  /* ---- layout ---- */
  --content-max: 1180px;
  --content-narrow: 640px;
  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 32px;
  --radius-pill: 999px;
  --space-section: 6rem;
  --space-section-mobile: 3.5rem;

  /* ---- bevægelse ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 160ms;
  --dur-med: 420ms;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-dim);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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: 3px solid var(--color-lime); outline-offset: 3px; border-radius: 4px; }

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

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

/* ---------- demo banner ---------- */
.demo-banner {
  background: #050208;
  color: rgba(247, 243, 255, 0.78);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--color-border);
}
.demo-banner a { color: var(--color-lime); text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }
.demo-banner a:hover { color: var(--color-pink-soft); }

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

/* ---------- shared type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-lime);
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.9rem;
  border: 2px solid var(--color-lime);
  border-radius: var(--radius-pill);
}

.section__head { max-width: var(--content-narrow); margin: 0 auto 3rem; text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.12;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.section__lede {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-dim);
}
.section__head .section__lede { max-width: 46ch; margin-left: auto; margin-right: auto; }

.section { padding: var(--space-section) 0; position: relative; }
.section--alt { background: var(--color-bg-alt); }

/* decorative blobs — cheap radial-gradient glow, no JS */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.blob--pink { background: var(--color-pink); }
.blob--purple { background: var(--color-purple); }
.blob--lime { background: var(--color-lime); opacity: 0.35; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  min-height: 48px;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(120deg, var(--color-pink), var(--color-purple));
  color: #fff;
  box-shadow: 0 0 0 rgba(255, 46, 147, 0), 0 8px 24px rgba(255, 46, 147, 0.28);
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 24px rgba(255, 46, 147, 0.55), 0 10px 28px rgba(155, 91, 255, 0.35);
}
.btn--ghost {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-text);
}
.btn--ghost:hover { border-color: var(--color-lime); color: var(--color-lime); transform: translateY(-2px); }
.btn--lime {
  background: var(--color-lime);
  color: #0b0713;
  box-shadow: 0 8px 24px rgba(198, 255, 61, 0.25);
}
.btn--lime:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 24px rgba(198, 255, 61, 0.55); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 0.75rem 1.4rem; font-size: 0.9rem; min-height: 40px; }

/* subtle CSS-only bounce for the hero CTA — pure keyframe, no JS */
@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.btn--bounce { animation: gentle-bounce 2.6s ease-in-out infinite; }
.btn--bounce:hover { animation-play-state: paused; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.9rem 0;
  background: rgba(11, 7, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-text);
}
.nav__logo-mark { flex-shrink: 0; color: var(--color-lime); }
.nav__logo-glow { color: var(--color-pink); }

.nav__links { display: none; }
.nav__right { display: flex; align-items: center; gap: 0.7rem; }

.lang-toggle {
  min-width: 44px; min-height: 44px;
  border: 2px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  background: rgba(247, 243, 255, 0.04);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.lang-toggle:hover { border-color: var(--color-lime); color: var(--color-lime); }

.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: 3px; border-radius: 2px;
  background: var(--color-text);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--color-pink); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--color-pink); }

.nav.is-open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 1.5rem;
  min-width: 240px;
  max-width: calc(100vw - 3rem);
  background: var(--color-surface-raised);
  border: 2px solid var(--color-border-strong);
  border-radius: var(--radius-m);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 0.6rem;
  gap: 0.1rem;
  font-size: 1rem;
}
.nav.is-open .nav__links a:not(.nav__cta) {
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-s);
  color: var(--color-text);
  font-weight: 600;
  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: rgba(255, 46, 147, 0.14); color: var(--color-pink-soft); }
.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: 1rem; right: 1rem; min-width: 0; max-width: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background: radial-gradient(ellipse 120% 70% at 50% 0%, var(--color-bg-alt) 0%, var(--color-bg) 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero__eyebrow { color: var(--color-lime); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.hero__title .glow-pink { color: var(--color-pink); text-shadow: 0 0 24px rgba(255, 46, 147, 0.55); }
.hero__title .glow-lime { color: var(--color-lime); text-shadow: 0 0 24px rgba(198, 255, 61, 0.5); }
.hero__lede {
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text-dim);
}
.hero__actions { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero__note { margin-top: 1.2rem; font-size: 0.9rem; color: var(--color-text-mute); display: flex; align-items: center; gap: 0.5rem; }
.hero__note svg { width: 1.1rem; height: 1.1rem; color: var(--color-lime); flex-shrink: 0; }

.hero__art { position: relative; }
.hero__photo-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 3px solid var(--color-border-strong);
  box-shadow: 0 0 0 6px rgba(155, 91, 255, 0.12), 0 30px 60px rgba(0,0,0,0.5);
  aspect-ratio: 4 / 5;
}
.hero__photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,7,19,0) 40%, rgba(11,7,19,0.75) 100%);
}
.hero__badge {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(11, 7, 19, 0.7);
  backdrop-filter: blur(6px);
  border: 2px solid var(--color-lime);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}
.hero__badge svg { width: 1.4rem; height: 1.4rem; color: var(--color-lime); flex-shrink: 0; }

.hero__star {
  position: absolute;
  color: var(--color-lime);
  width: 2rem; height: 2rem;
  animation: gentle-bounce 3.4s ease-in-out infinite;
}
.hero__star--1 { top: -0.5rem; right: 2rem; color: var(--color-pink); }
.hero__star--2 { bottom: 2rem; left: -1rem; color: var(--color-purple); animation-delay: 1.2s; width: 1.4rem; height: 1.4rem; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__note { justify-content: center; }
  .hero__art { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   WHY / HOW IT WORKS — punchy cards
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.why-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.why-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: var(--color-pink);
  box-shadow: 0 16px 40px rgba(255, 46, 147, 0.18);
}
.why-card:nth-child(2):hover, .why-card:nth-child(4):hover { transform: translateY(-6px) rotate(1deg); border-color: var(--color-purple); box-shadow: 0 16px 40px rgba(155, 91, 255, 0.2); }
.why-card__icon {
  width: 3.4rem; height: 3.4rem;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(198, 255, 61, 0.12);
  color: var(--color-lime);
}
.why-card:nth-child(2) .why-card__icon { background: rgba(255, 46, 147, 0.12); color: var(--color-pink); }
.why-card:nth-child(3) .why-card__icon { background: rgba(155, 91, 255, 0.16); color: var(--color-purple); }
.why-card:nth-child(4) .why-card__icon { background: rgba(198, 255, 61, 0.12); color: var(--color-lime); }
.why-card__icon svg { width: 1.8rem; height: 1.8rem; }
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.95rem; color: var(--color-text-dim); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- atmosphere photo strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.strip__item {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 3px solid var(--color-border);
}
.strip__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-med) var(--ease-out); }
.strip__item:hover img { transform: scale(1.06); }
.strip__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,7,19,0) 55%, rgba(11,7,19,0.85) 100%); }
.strip__caption {
  position: absolute; left: 1rem; right: 1rem; bottom: 0.9rem;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

@media (max-width: 800px) {
  .strip { grid-template-columns: 1fr; }
}

/* ============================================================
   PACKAGES / PRICING
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}
.package-card {
  position: relative;
  background: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-l);
  padding: 2.4rem 1.9rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.package-card:hover { transform: translateY(-8px); }
.package-card--featured {
  border-color: var(--color-pink);
  background: linear-gradient(160deg, rgba(255, 46, 147, 0.1), var(--color-surface) 45%);
}
.package-card__ribbon {
  position: absolute;
  top: -0.9rem; left: 50%;
  transform: translateX(-50%);
  background: var(--color-pink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(255, 46, 147, 0.4);
}
.package-card__icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(155, 91, 255, 0.16);
  color: var(--color-purple);
  margin-bottom: 1.2rem;
}
.package-card__icon svg { width: 1.6rem; height: 1.6rem; }
.package-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-text);
}
.package-card__price {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--color-lime);
}
.package-card__price span { font-size: 0.95rem; font-weight: 600; color: var(--color-text-mute); font-family: var(--font-body); }
.package-card__desc { margin-top: 0.6rem; font-size: 0.95rem; color: var(--color-text-dim); }
.package-card__list { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.package-card__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--color-text-dim); }
.package-card__list svg { width: 1.1rem; height: 1.1rem; color: var(--color-lime); flex-shrink: 0; margin-top: 0.15rem; }
.package-card .btn { margin-top: 1.6rem; }

@media (max-width: 960px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   CONTACT / BOOKING
   ============================================================ */
.contact { position: relative; }
.contact__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; position: relative; z-index: 1; }
.contact__info { max-width: 34ch; }
.contact__info .section__title { text-align: left; }
.contact__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.3rem; }
.contact__list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact__list svg { width: 1.4rem; height: 1.4rem; color: var(--color-lime); flex-shrink: 0; margin-top: 0.1rem; }
.contact__list strong { display: block; color: var(--color-text); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact__list span, .contact__list a { color: var(--color-text-dim); font-size: 0.95rem; }
.contact__list a:hover { color: var(--color-lime); }

.contact-form {
  background: var(--color-surface);
  border: 3px solid var(--color-border-strong);
  border-radius: var(--radius-l);
  padding: 2.2rem;
}
.contact-form__row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.contact-form label { font-size: 0.85rem; font-weight: 700; color: var(--color-text); font-family: var(--font-display); }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 0.85rem 1rem;
  border: 2px solid var(--color-border-strong);
  border-radius: var(--radius-s);
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-size: 0.98rem;
  min-height: 46px;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--color-lime);
  box-shadow: 0 0 0 3px rgba(198, 255, 61, 0.18);
  outline: none;
}
.contact-form__note { margin-top: 1rem; font-size: 0.82rem; color: var(--color-text-mute); }

@media (max-width: 900px) {
  .contact__layout { grid-template-columns: 1fr; gap: 2.2rem; }
  .contact__info { max-width: none; }
}
@media (max-width: 560px) {
  .contact-form__grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050208;
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}
.footer__logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--color-text);
}
.footer__logo svg { color: var(--color-lime); }
.footer__tagline { margin-top: 0.7rem; font-size: 0.92rem; color: var(--color-text-mute); max-width: 32ch; }
.footer__col h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--color-text); margin-bottom: 0.9rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a, .footer__col span { font-size: 0.9rem; color: var(--color-text-mute); }
.footer__col a:hover { color: var(--color-lime); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--color-border);
  font-size: 0.78rem; color: var(--color-text-mute);
}
.footer__bottom a { font-weight: 700; color: var(--color-lime); }
.footer__bottom a:hover { color: var(--color-pink-soft); }

@media (max-width: 700px) {
  .footer__top { flex-direction: column; gap: 1.75rem; }
}

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