/* ===========================================================
   International Kindergarten Frankfurt — design tokens & base
   =========================================================== */

@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("../fonts/karla-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("../fonts/karla-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors */
  --color-primary: #4B6B4E;
  --color-primary-dark: #34492F;
  --color-primary-darker: #29391F;
  --color-accent: #D98A4B;
  --color-accent-dark: #B96B2E;
  --color-cream: #FBF6EC;
  --color-sand: #EFE2CB;
  --color-text: #2E2A22;
  --color-text-muted: #6B6459;
  --color-white: #FFFFFF;
  --color-border: rgba(46, 42, 34, 0.12);

  /* Fonts */
  --font-fallback: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Karla", var(--font-fallback);
  --font-display: "Quicksand", var(--font-fallback);

  /* Spacing (8px scale) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  /* Radius / shadow */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(46, 42, 34, 0.08);
  --shadow-md: 0 8px 24px rgba(46, 42, 34, 0.12);
  --shadow-lg: 0 16px 40px rgba(46, 42, 34, 0.16);

  --container-max: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  font-size: 1.0625rem;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-darker);
  margin: 0 0 var(--space-2);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 var(--space-2); }
p:last-child { margin-bottom: 0; }

a { color: var(--color-primary-dark); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--color-accent-dark); }

img, svg { max-width: 100%; display: block; }

ul, ol { padding-left: 1.2em; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary-darker);
  color: var(--color-white);
  padding: var(--space-1) var(--space-2);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

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

/* Layout */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section {
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 150px;
}
.section--sand { background: var(--color-sand); }
.section--primary { background: var(--color-primary-darker); color: var(--color-cream); }
.section--primary h2, .section--primary h3 { color: var(--color-cream); }

.section-head {
  max-width: 760px;
  margin: 0 auto var(--space-5);
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-head .eyebrow { display: block; margin-bottom: var(--space-1); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

.lede {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--color-primary-dark); color: var(--color-white); box-shadow: var(--shadow-md); }
.btn--secondary {
  background: transparent;
  border-color: currentColor;
  color: var(--color-primary-darker);
}
.btn--secondary:hover { background: var(--color-primary-darker); color: var(--color-cream); }
.section--primary .btn--secondary { color: var(--color-cream); }
.section--primary .btn--secondary:hover { background: var(--color-cream); color: var(--color-primary-darker); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary-darker);
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  gap: 0.75em;
}
.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-mark img { height: 100px; width: auto; min-width: 119px; min-height: 100px; display: block; }
.logo-caption {
  display: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 119px;
  margin-top: 0.3em;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: inline-flex;
  background: none;
  border: 2px solid var(--color-primary-darker);
  border-radius: var(--radius-sm);
  padding: 0.4em 0.6em;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: var(--space-2) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.site-nav a {
  display: block;
  padding: 0.5em 0;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text);
}
.site-nav a.is-active, .site-nav a:hover { color: var(--color-accent-dark); }
.site-nav a.btn--primary,
.site-nav a.btn--primary:hover { color: var(--color-white); padding: 0.85em 1.6em; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .site-nav ul { flex-direction: row; align-items: center; padding: 0; gap: var(--space-4); }
  .site-nav a { padding: 0; }
}

/* Language switcher (EN / DE) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.site-nav .lang-switch__link {
  display: inline-block;
  padding: 0.2em 0.55em;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav .lang-switch__link:hover { color: var(--color-accent-dark); }
.site-nav .lang-switch__link.is-active {
  background: var(--color-primary);
  color: var(--color-white);
}
.lang-switch__sep {
  width: 1px;
  height: 0.9em;
  background: var(--color-border);
}

/* Hero */
.hero {
  padding: var(--space-7) 0 var(--space-6);
  position: relative;
  overflow: hidden;
  --hero-edge: max(var(--space-3), calc((100vw - var(--container-max)) / 2 + var(--space-3)));
}
@media (max-width: 899px) {
  .hero { padding-top: 1rem; }
}
.hero-photo { display: none; }
@media (min-width: 900px) {
  .hero .container {
    display: flex;
    align-items: center;
    min-height: 420px;
  }
  .hero-photo {
    display: block;
    position: absolute;
    top: var(--space-5);
    right: var(--space-3);
    bottom: var(--space-5);
    left: calc(var(--hero-edge) + 540px + 3rem);
    z-index: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-image: url('/assets/img/international-kindergarten-frankfurt-tims.webp');
    background-size: cover;
    background-position: 46% 62%;
    box-shadow: var(--shadow-md);
  }
  .hero-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-cream) 0, rgba(251, 246, 236, 0) 90px);
  }
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 540px; }
.hero-mobile-photo.photo-slot { margin-top: var(--space-4); }
@media (max-width: 899px) {
  .hero-mobile-photo.photo-slot { margin-top: var(--space-6); }
}
@media (min-width: 900px) {
  .hero-mobile-photo.photo-slot { display: none; }
}
.hero-trust {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.6em 1.5em;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.65em;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-darker);
}
.hero-trust-item svg { width: 22px; height: 22px; color: var(--color-primary); flex-shrink: 0; }

/* Cards */
.card-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card .icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.card .icon-illustrated {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: var(--space-2);
}
/* Centred icons — text stays left unless --centered is used as well */
.card-grid--centered .card .icon,
.card-grid--centered .card .icon-illustrated,
.card-grid--icon-centered .card .icon,
.card-grid--icon-centered .card .icon-illustrated { margin-left: auto; margin-right: auto; }

/* Centred icons + text (HR / corporate relocation cards) */
.card-grid--centered .card { text-align: center; }

/* Enlarged illustrated icons ("Why families choose TIMS"), 64px + 2 x 20% */
.card-grid--icon-centered .card .icon-illustrated { width: 92px; height: 92px; }

.card ul { margin: var(--space-2) 0 0; padding-left: 1.1em; }
.card ul li { margin-bottom: 0.35em; }

/* Location: intro + map + checklist */
.location-layout {
  display: grid;
  gap: var(--space-4);
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .location-layout { grid-template-columns: 1fr 1.25fr 0.85fr; gap: var(--space-5); }
}
.location-intro h2 { text-align: left; font-size: 1.6rem; }
.location-facts {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-3) 0 var(--space-4);
}
.location-fact {
  display: flex;
  align-items: center;
  gap: 0.65em;
  font-weight: 600;
  color: var(--color-primary-darker);
}
.location-fact svg { width: 24px; height: 24px; color: var(--color-accent-dark); flex-shrink: 0; }

.location-map {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-2);
}
.location-map__canvas {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  container-type: inline-size;
}
.location-map__canvas > svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}
.map-hill-back { fill: var(--color-primary); opacity: 0.12; }
.map-hill-front { fill: var(--color-primary); opacity: 0.18; }
.map-road { stroke: var(--color-border); stroke-width: 2; stroke-dasharray: 3 6; fill: none; }
.map-rail { stroke: var(--color-primary-dark); stroke-width: 4; stroke-linecap: round; fill: none; }
.map-rail-dash { stroke: var(--color-white); stroke-width: 2; stroke-dasharray: 7 9; stroke-linecap: butt; fill: none; }
.map-dot { fill: var(--color-primary-dark); }
.map-label { font-family: var(--font-body); font-size: 14px; font-weight: 600; fill: var(--color-text); }
.map-s5 { fill: var(--color-primary-dark); }
.map-s5-text { font-family: var(--font-display); font-size: 12px; font-weight: 700; fill: var(--color-white); }
.map-city rect { fill: var(--color-primary-darker); opacity: 0.55; }
.map-city-label { font-family: var(--font-display); font-size: 20px; font-weight: 700; fill: var(--color-primary-darker); opacity: 0.85; }
.map-compass-bg { fill: var(--color-white); opacity: 0.85; stroke: var(--color-border); stroke-width: 1; }
.map-compass-n { fill: var(--color-accent); }
.map-compass-text { font-family: var(--font-body); font-size: 10px; font-weight: 700; fill: var(--color-text-muted); text-anchor: middle; }
.map-pin-halo { fill: var(--color-accent); opacity: 0.18; }
.map-pin { fill: var(--color-accent); }
.map-pin-dot { fill: var(--color-white); }
.map-pin-label { font-family: var(--font-display); font-size: 15px; font-weight: 700; fill: var(--color-primary-darker); }

/* Location map: S5 route panel.
   Sits below the map on very narrow screens and becomes an overlay inside the
   map (bottom left, clear of the rail line and the Frankfurt skyline) as soon
   as the map itself is wide enough — see the @container rule further down. */
.map-route {
  margin: var(--space-2) auto 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-2);
}
.map-route__head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary-darker);
  margin-bottom: 0.7em;
}
.map-route__list { list-style: none; margin: 0; padding: 0; }
.map-route__stop {
  display: flex;
  align-items: center;
  gap: 0.65em;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}
.map-route__dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(75, 107, 78, 0.16);
}
.map-route__dot--end {
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(217, 138, 75, 0.22);
}
.map-route__leg {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-left: 4px;
  padding: 0.45em 0 0.45em 1.05em;
  border-left: 2px dashed var(--color-border);
}
.map-route__badge {
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1;
  border-radius: 4px;
  padding: 0.3em 0.45em;
}
.map-route__leg svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* Overlay inside the map once there is room for it. Sizes are in cqw so the
   panel keeps the same proportions at every map width. */
@container (min-width: 340px) {
  .map-route {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 53cqw;
    margin: 0;
    padding: 3.2cqw;
    border-radius: 3cqw;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
  }
  .map-route__head { font-size: 3.4cqw; margin-bottom: 2.2cqw; }
  .map-route__stop { font-size: 3.2cqw; gap: 2cqw; }
  .map-route__dot {
    width: 2.6cqw;
    height: 2.6cqw;
    box-shadow: 0 0 0 0.8cqw rgba(75, 107, 78, 0.16);
  }
  .map-route__dot--end { box-shadow: 0 0 0 0.8cqw rgba(217, 138, 75, 0.22); }
  .map-route__leg {
    font-size: 2.8cqw;
    gap: 1.6cqw;
    margin-left: 0.7cqw;
    padding: 1.4cqw 0 1.4cqw 3.4cqw;
  }
  .map-route__badge { font-size: 2.5cqw; padding: 0.8cqw 1.2cqw; border-radius: 1cqw; }
  .map-route__leg svg { width: 3.6cqw; height: 3.6cqw; }
}

.location-checklist-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary-darker);
  margin-bottom: var(--space-2);
}
.location-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5em;
}
.location-checklist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75em;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 0.55em 0.75em;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--color-primary-darker);
  font-size: 0.92rem;
}
.location-checklist li > span:first-child { display: flex; align-items: center; gap: 0.5em; }
.location-checklist .check { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }
.location-checklist .time { color: var(--color-text-muted); font-weight: 500; font-size: 0.82rem; white-space: nowrap; }

/* Stat strip */
.stats {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-accent);
  display: block;
}
.stat .label { color: var(--color-cream); opacity: 0.85; font-size: 0.95rem; }

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-white);
  background: var(--color-accent);
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
}

/* Glossary table */
.glossary {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-2);
}
.glossary-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .glossary-item { grid-template-columns: 220px 1fr; align-items: start; }
}
.glossary-term {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary-darker);
}
.glossary-term .de-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* FAQ */
.faq {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-2);
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary-darker);
  padding: 0.4em 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-answer { padding: 0.25em 0 0.6em; color: var(--color-text); }

/* Photo slots (placeholder visual system) */
.photo-slot {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-sand), var(--color-primary) 180%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  position: relative;
}
.photo-slot--wide { aspect-ratio: 16 / 10; }
.photo-slot svg { width: 55%; height: 55%; color: var(--color-cream); opacity: 0.9; }
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Decorative blobs */
.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.blob--top-right { top: -120px; right: -140px; color: var(--color-primary); }
.blob--bottom-left { bottom: -140px; left: -160px; color: var(--color-accent); }

.divider {
  display: block;
  width: 100%;
  height: 48px;
  color: var(--color-sand);
}
.divider--to-cream { color: var(--color-cream); }
.divider--to-primary { color: var(--color-primary-darker); }

/* Footer */
.site-footer {
  background: var(--color-primary-darker);
  color: var(--color-cream);
  padding: var(--space-6) 0 var(--space-3);
}
.site-footer a { color: var(--color-cream); }
.site-footer a:hover { color: var(--color-accent); }
.footer-grid {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-grid h3 { color: var(--color-cream); font-size: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5em; }
.footer-logo { height: 56px; width: auto; margin-bottom: var(--space-2); }
.footer-bottom {
  border-top: 1px solid rgba(251, 246, 236, 0.15);
  padding-top: var(--space-3);
  font-size: 0.9rem;
  color: rgba(251, 246, 236, 0.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1.5em;
  justify-content: space-between;
}
.footer-bottom ul { list-style: none; display: flex; gap: 1.2em; padding: 0; margin: 0; }
.footer-bottom-brand { display: flex; align-items: center; gap: 0.75em; }
.footer-logo-sm { height: 28px; width: auto; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.9rem; color: var(--color-text-muted); }
