/* ------------------------------------------------------------------
   Tandjes — Maureen de Brie Mondhygiënist
   Design tokens + theme
   ------------------------------------------------------------------ */
:root {
  /* palette */
  --cream:        #FFFBF5;
  --cream-2:      #FAF3E7;
  --paper:        #FFFFFF;
  --mint-50:      #EFF8F4;
  --mint-100:     #DCEFE6;
  --mint-200:     #B7DECF;
  --teal-500:     #1E938A;
  --teal-600:     #0F7A71;
  --teal-700:     #0A5F58;
  --coral-300:    #FFB3A3;
  --coral-500:    #F58575;
  --coral-600:    #E25E48;
  --ink:          #142226;
  --ink-soft:     #4F6770;
  --ink-faint:    #8499A0;
  --line:         #E8E1D5;
  --line-soft:    #F1ECE2;

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;

  --shadow-sm:    0 1px 2px rgba(20, 34, 38, 0.04), 0 1px 3px rgba(20, 34, 38, 0.05);
  --shadow:       0 6px 24px -8px rgba(20, 34, 38, 0.12), 0 2px 6px rgba(20, 34, 38, 0.06);
  --shadow-lg:    0 20px 50px -16px rgba(20, 34, 38, 0.22), 0 6px 18px rgba(20, 34, 38, 0.08);

  --container:    1100px;
  --container-narrow: 820px;

  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;

  --ease:         cubic-bezier(.22, 1, .36, 1);
}

/* ------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(184, 224, 209, 0.45), transparent 60%),
    radial-gradient(900px 500px at -10% 5%, rgba(255, 200, 184, 0.28), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color 140ms var(--ease);
}
a:hover, a:focus-visible { color: var(--teal-700); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }

:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 1.4em 0 .5em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 3.8vw + 1rem, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 1.6vw + 1rem, 2.2rem); }
h3 { font-size: clamp(1.25rem, 0.6vw + 1rem, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; }
strong { font-weight: 600; }

ul, ol { padding-left: 1.25em; margin: 0 0 1em; }
li { margin-bottom: 0.4em; }

::selection { background: var(--mint-200); color: var(--ink); }

/* ------------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

/* ------------------------------------------------------------------
   Skip link (a11y)
   ------------------------------------------------------------------ */
.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--ink);
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  z-index: 100;
}
.skip-link:focus { top: 1rem; color: white; }

/* ------------------------------------------------------------------
   Site header / nav
   ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 245, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.brand:hover { color: var(--ink); text-decoration: none; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-100), var(--coral-300));
  color: var(--teal-700);
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 18px; height: 18px; }

/* main nav */
.nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  margin: 0 0 0 auto;
  padding: 0;
}
.nav > li { position: relative; margin: 0; }
.nav > li > a {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.97rem;
  border-radius: 999px;
  transition: color 140ms var(--ease), background 140ms var(--ease);
}
.nav > li > a:hover,
.nav > li > a:focus-visible { color: var(--ink); text-decoration: none; background: var(--mint-50); }
.nav > li.active > a {
  color: var(--teal-700);
  background: var(--mint-100);
}
.caret { font-size: 0.7em; opacity: 0.6; margin-left: 0.15em; }

/* dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease), visibility 160ms;
  z-index: 1100;
}
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--ink-soft);
  border-radius: 8px;
  font-size: 0.95rem;
}
.dropdown-menu a:hover { background: var(--mint-50); color: var(--ink); text-decoration: none; }
.dropdown-menu li.active a { background: var(--mint-100); color: var(--teal-700); }

/* mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  margin-left: auto;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
}
.nav-toggle:hover { background: var(--mint-50); }
.nav-toggle .bars {
  display: inline-grid;
  gap: 3px;
}
.nav-toggle .bars span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

#nav-state {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0.75rem 1rem;
    margin: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }
  .nav > li { width: 100%; }
  .nav > li > a { width: 100%; padding: 0.7rem 0.85rem; border-radius: 10px; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding-left: 1rem;
    margin: 0;
    opacity: 1; visibility: visible; transform: none;
    background: transparent;
  }
  #nav-state:checked ~ #menu .nav {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
}

/* ------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(800px 420px at 85% 20%, rgba(184, 224, 209, 0.55), transparent 65%),
    radial-gradient(700px 360px at 8% 80%, rgba(255, 179, 163, 0.40), transparent 65%),
    linear-gradient(180deg, var(--cream) 0%, var(--mint-50) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,20 C960,40 1200,60 1440,30 L1440,60 L0,60 Z' fill='%23FFFBF5'/></svg>") center/100% 100% no-repeat;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}

.hero--home {
  display: grid;
  align-items: center;
}
.hero--home .container {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 820px) {
  .hero--home .container { grid-template-columns: 1fr; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal-700);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(30, 147, 138, 0.18);
}

.hero h1 {
  margin: 0 0 1rem;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.hero h1 .accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--teal-600), var(--coral-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.8vw + 0.9rem, 1.3rem);
  color: var(--ink-soft);
  border-left: 3px solid var(--coral-500);
  padding-left: 1rem;
  margin: 1.5rem 0 1.75rem;
  max-width: 36ch;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-portrait {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-portrait img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, var(--mint-200), var(--coral-300), var(--mint-100), var(--mint-200));
  filter: blur(20px);
  opacity: 0.6;
  z-index: -1;
}

/* compact hero (inner pages) */
.hero--compact {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
.hero--compact h1 {
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem);
  margin: 0.25rem 0 1rem;
}
.hero--compact .hero-quote {
  margin: 0 auto;
  border-left: 0;
  padding-left: 0;
  text-align: center;
  max-width: 38ch;
  position: relative;
}
.hero--compact .hero-quote::before,
.hero--compact .hero-quote::after {
  content: "“";
  font-size: 2rem;
  line-height: 0;
  color: var(--coral-500);
  vertical-align: -0.45em;
  margin-right: 0.2em;
}
.hero--compact .hero-quote::after { content: "”"; margin: 0 0 0 0.2em; }

/* ------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------ */
.btn {
  --bg: var(--teal-600);
  --fg: white;
  --bd: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bd);
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 18px -10px rgba(15, 122, 113, 0.6);
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 140ms var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -12px rgba(15, 122, 113, 0.7);
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: white;
  text-decoration: none;
}
.btn .arrow { transition: transform 160ms var(--ease); display: inline-flex; }
.btn .arrow svg { width: 18px; height: 18px; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  --bd: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--paper); border-color: var(--ink-faint); color: var(--ink); }

/* ------------------------------------------------------------------
   Main content area + cards
   ------------------------------------------------------------------ */
.page-main {
  padding-bottom: 3rem;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.layout--single { grid-template-columns: 1fr; }
@media (max-width: 880px) {
  .layout { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2vw, 1.85rem);
  box-shadow: var(--shadow-sm);
}
.card > :first-child { margin-top: 0; }
.card > :last-child  { margin-bottom: 0; }

.card--accent {
  background: linear-gradient(180deg, var(--mint-50), var(--paper));
  border-color: var(--mint-100);
}

.card-stack > * + * { margin-top: clamp(1rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.4rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--teal-500); border-radius: 1px;
}

/* ------------------------------------------------------------------
   Polaroid sidebar
   ------------------------------------------------------------------ */
.polaroids {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.polaroids li { margin: 0; }
.polaroids figure {
  margin: 0;
  background: var(--paper);
  padding: 8px 8px 12px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.polaroids figure img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  border-radius: 2px;
}
.polaroids figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  text-align: center;
  padding-top: 0.4rem;
  color: var(--ink-soft);
}
.polaroids li:nth-child(odd)  figure { transform: rotate(-2deg); }
.polaroids li:nth-child(even) figure { transform: rotate(2deg); }
.polaroids li:hover figure {
  transform: rotate(0) translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  text-align: center;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

/* ------------------------------------------------------------------
   Treatments grid
   ------------------------------------------------------------------ */
.treatments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.treatments li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}
.treatments li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--mint-200);
}
.treatments .icon {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--mint-50);
  color: var(--teal-600);
}
.treatments .icon svg { width: 20px; height: 20px; }
.treatments .label { font-weight: 600; color: var(--ink); }
.treatments .sub { display: block; font-weight: 400; font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.1rem; }

/* ------------------------------------------------------------------
   Contact details
   ------------------------------------------------------------------ */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.info-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 0.85rem;
  margin: 0;
  padding: 0.6rem 0;
}
.info-list .icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--mint-50);
  color: var(--teal-600);
}
.info-list .icon svg { width: 18px; height: 18px; }
.info-list .info-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.15rem;
}
.info-list .info-body { color: var(--ink); }
.info-list small { color: var(--ink-soft); display: block; margin-top: 0.15rem; }

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
  margin: 0;
}
.hours li:last-child { border-bottom: 0; }
.hours .day { font-weight: 600; color: var(--ink); }
.hours .time { color: var(--ink-soft); }
.hours .time small { display: block; color: var(--ink-faint); font-size: 0.85em; margin-top: 0.1rem; }

/* ------------------------------------------------------------------
   Tariffs table
   ------------------------------------------------------------------ */
.tariffs {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.55rem;
}
.tariffs li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin: 0;
}
.tariffs .label { color: var(--ink); }
.tariffs .price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--teal-700);
  white-space: nowrap;
}
.tariffs .note { display: block; font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.3rem; }

/* ------------------------------------------------------------------
   Links
   ------------------------------------------------------------------ */
.link-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.85rem;
}
.link-grid li { margin: 0; }
.link-grid a {
  display: block;
  padding: 1rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}
.link-grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--mint-200);
  text-decoration: none;
}
.link-grid .host {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: 0.25rem;
}
.link-grid .host svg { width: 14px; height: 14px; flex-shrink: 0; }
.link-grid .desc { font-size: 0.93rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------
   Map
   ------------------------------------------------------------------ */
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin: 0 0 1.25rem;
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.address-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 2vw, 1.85rem);
}
.address-row > div { min-width: 0; }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  background: var(--teal-700);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 1px;
  height: 50px;
  transform: translateY(-100%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'><path d='M0,20 C240,50 480,0 720,20 C960,40 1200,50 1440,20 L1440,50 L0,50 Z' fill='%230A5F58'/></svg>") center/100% 100% no-repeat;
  pointer-events: none;
}
.site-footer a { color: white; }
.site-footer a:hover { color: var(--mint-200); }
.site-footer h4 {
  color: white;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  font-variation-settings: "opsz" 24;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer-grid p { margin: 0 0 0.5em; }
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li { margin: 0.3rem 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ------------------------------------------------------------------
   Animation: reveal on load
   ------------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(12px); animation: reveal 0.7s var(--ease) forwards; }
  .reveal[data-delay="1"] { animation-delay: 0.08s; }
  .reveal[data-delay="2"] { animation-delay: 0.16s; }
  .reveal[data-delay="3"] { animation-delay: 0.24s; }
  .reveal[data-delay="4"] { animation-delay: 0.32s; }
  @keyframes reveal { to { opacity: 1; transform: none; } }
}
