/* ==========================================================================
   VIP Boarding & Daycare — Stylesheet
   Palette: deep navy #001936 (primary) + sky-blue accent + white (clean & modern)
   Pure CSS, no frameworks. Built for WCAG 2.1 AA.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors — navy #001936 primary, sky-blue accent, white.
     Legacy green/gold token names are kept and remapped to navy/blue
     values here, so the whole cascade updates from this one block. */
  --green-dark: #001936;   /* primary darkest navy (brand swatch) */
  --green: #123a63;        /* deep navy */
  --green-mid: #1c4f80;    /* lighter navy for gradients / hovers */
  --green-soft: #e4eef8;   /* pale blue tint for badges, nav hover, pills */
  --gold: #1f6fb8;         /* sky-blue accent */
  --gold-text: #17629f;    /* AA blue for small text on light backgrounds */
  --gold-bright: #6bb4ea;  /* bright blue for text on dark navy */
  --gold-soft: #e6f1fb;    /* very light blue tint */
  --cream: #f5f9fd;        /* cool off-white */
  --cream-deep: #e9f1f9;   /* slightly deeper cool tint */
  --ink: #16202e;          /* dark slate text */
  --muted: #55617a;        /* muted slate */
  --line: #d8e4f0;         /* cool hairline */
  --white: #ffffff;
  --danger: #9a2c2c;

  /* Typography */
  --font-head: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --maxw: 1140px;
  --radius: 14px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(20, 52, 42, 0.06);
  --shadow: 0 10px 30px rgba(20, 52, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 52, 42, 0.16);
  --transition: 200ms ease;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--green-dark);
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

p { margin: 0 0 1.1rem; }
a { color: var(--green-mid); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--gold); }

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

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--white); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--cream { background: var(--cream); }
.section--deep { background: var(--cream-deep); }
.section--green { background: var(--green-dark); color: #eaf2fb; }
.section--green h2, .section--green h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-text);
  margin-bottom: 0.6rem;
}
.section--green .eyebrow { color: var(--gold-bright); }

.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); }
.section--green .lead { color: #cfe0f2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold); color: #ffffff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-text); color: #ffffff; }

.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-mid); color: var(--white); }

.btn--ghost { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn--ghost:hover { background: var(--green); color: var(--white); }

.btn--on-green { background: var(--white); color: var(--green-dark); }
.btn--on-green:hover { background: var(--gold-soft); color: var(--green-dark); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 249, 253, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--green-dark);
}
.brand:hover { color: var(--green-dark); }
.brand__logo { max-height: 75px; width: auto; display: block; }
@media (max-width: 600px) { .brand__logo { height: 52px; } }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
.brand__tag {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: var(--green);
  border: none;
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.98rem;
  transition: background var(--transition), color var(--transition);
}
.nav-menu a:hover { background: var(--green-soft); color: var(--green-dark); }
.nav-menu a[aria-current="page"] { background: var(--green); color: var(--white); }
.nav-cta { margin-left: 0.4rem; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem clamp(1.1rem, 4vw, 2rem) 1.25rem;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 0.8rem 0.9rem; font-size: 1.05rem; }
  .nav-cta { margin: 0.4rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(74,155,224,0.18), transparent 60%),
    linear-gradient(160deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
  color: #eaf2fb;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='38' r='7'/%3E%3Ccircle cx='18' cy='24' r='4'/%3E%3Ccircle cx='42' cy='24' r='4'/%3E%3Ccircle cx='12' cy='40' r='3.4'/%3E%3Ccircle cx='48' cy='40' r='3.4'/%3E%3Ccircle cx='90' cy='92' r='7'/%3E%3Ccircle cx='78' cy='78' r='4'/%3E%3Ccircle cx='102' cy='78' r='4'/%3E%3Ccircle cx='72' cy='94' r='3.4'/%3E%3Ccircle cx='108' cy='94' r='3.4'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero h1 { color: var(--white); }
.hero__lead { font-size: 1.25rem; color: #cfe0f2; max-width: 34ch; }
.hero .eyebrow { color: var(--gold-bright); }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.hero__meta div { min-width: 90px; }
.hero__meta strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--gold-bright);
  line-height: 1;
}
.hero__meta span { font-size: 0.9rem; color: #bcd2ea; }

.hero__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(4px);
}
.hero__card h2 { color: var(--white); font-size: 1.35rem; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.16);
  color: #e7f0fa;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list b { color: var(--white); font-weight: 600; }

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { order: 2; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.card--link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--muted); margin-bottom: 1rem; }
.card__price {
  font-family: var(--font-head);
  color: var(--green);
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: auto;
}
.card__more {
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--gold-text);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card--link:hover .card__more { gap: 0.6rem; }

.icon-badge {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.icon-badge svg { width: 32px; height: 32px; color: var(--green); }
.icon-badge--gold { background: var(--gold-soft); }
.icon-badge--gold svg { color: var(--gold); }

/* ---------- Feature list ---------- */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gold-soft);
  display: grid; place-items: center;
  color: var(--gold);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.feature p { color: var(--muted); margin: 0; }
.section--green .feature p { color: #cfe0f2; }
.section--green .feature__icon { background: rgba(255,255,255,0.1); color: var(--gold-bright); }

/* ---------- Split content ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.split--media-first .split__media { order: -1; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--media-first .split__media { order: 0; }
}

/* Decorative media block (placeholder for future photos) */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-mid) 100%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  color: rgba(255,255,255,0.85);
}
.media-frame::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='26' r='5'/%3E%3Ccircle cx='12' cy='16' r='3'/%3E%3Ccircle cx='28' cy='16' r='3'/%3E%3Ccircle cx='60' cy='62' r='5'/%3E%3Ccircle cx='52' cy='52' r='3'/%3E%3Ccircle cx='68' cy='52' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.media-frame__label {
  position: relative;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 1rem;
}
.media-frame__label svg { width: 54px; height: 54px; margin: 0 auto 0.5rem; opacity: 0.9; }

/* ---------- Photos ---------- */
.photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  display: block;
  background: var(--green-soft);
}
.photo--split { aspect-ratio: 4 / 3; }
.photo--tall  { aspect-ratio: 3 / 4; }
.photo--wide  { aspect-ratio: 16 / 10; }

figure.photo-figure { margin: 0; }
figure.photo-figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* Hero photo + overlapping hours badge */
.hero__photo { position: relative; margin-bottom: 1.25rem; }
.hero__photo .photo { aspect-ratio: 4 / 3; }
.hero__photo .photo-credit {
  position: absolute;
  left: 0.9rem; bottom: 0.9rem;
  background: rgba(0, 25, 54, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Two-up photo strip */
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 620px) { .photo-duo { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.quote__mark { font-family: var(--font-head); font-size: 3rem; line-height: 0.5; color: var(--gold); }
.quote p { font-size: 1.08rem; color: var(--ink); font-style: italic; }
.quote__author { font-weight: 700; color: var(--green-dark); font-style: normal; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.6rem; }

/* ---------- Callout / CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 400px at 15% 120%, rgba(74,155,224,0.25), transparent 60%),
    linear-gradient(140deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-band .eyebrow { color: #a7d3f5; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #cfe0f2; max-width: 55ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.5rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 90% -20%, rgba(74,155,224,0.16), transparent 60%),
    linear-gradient(160deg, var(--green-dark), var(--green));
  color: #eaf2fb;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.4rem; }
.page-hero p { color: #cfe0f2; font-size: 1.15rem; max-width: 60ch; margin: 0; }
.breadcrumb { font-size: 0.9rem; margin-bottom: 1rem; color: #bcd2ea; }
.breadcrumb a { color: var(--gold-bright); }
.breadcrumb span { opacity: 0.7; }

/* ---------- Prose (legal / long text) ---------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p, .prose li { color: #3a382f; }
.prose ul { margin-bottom: 1.2rem; }
.toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.toc h2 { margin: 0 0 0.6rem; font-size: 1.15rem; }
.toc ul { margin: 0; }

/* ---------- Price table ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.price-table caption { text-align: left; padding: 0 0 0.75rem; color: var(--muted); font-size: 0.95rem; }
.price-table th, .price-table td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--green-dark); color: var(--white); font-family: var(--font-body); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 700; color: var(--green); white-space: nowrap; }
.price-table tbody tr:nth-child(even) { background: var(--cream); }

/* ---------- FAQ (details/summary) ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: var(--font-head);
  font-size: 1.12rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.35rem 1.25rem; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Contact info ---------- */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 620px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-card .icon-badge { margin-bottom: 0; flex: none; width: 50px; height: 50px; }
.info-card .icon-badge svg { width: 26px; height: 26px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.info-card a { font-weight: 600; }
.info-card p { margin: 0; color: var(--muted); }

.map-frame {
  border: 0;
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: block;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step__num {
  flex: none;
  counter-increment: step;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-head);
  display: grid; place-items: center;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.step p { margin: 0; color: var(--muted); }

/* ---------- Pills / badges ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }
.pill {
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}
.pill--gold { background: var(--gold-soft); color: #17629f; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: #c4d4e6;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2 { color: var(--white); font-size: 1.1rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.site-footer a { color: #c4d4e6; text-decoration: none; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { color: #9fb3cc; margin-top: 1rem; max-width: 32ch; }
.footer-contact li { display: flex; gap: 0.6rem; margin-bottom: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 20px; height: 20px; flex: none; color: var(--gold-bright); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #93a7c0;
}
.footer-bottom a { color: #93a7c0; }
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.stack > * + * { margin-top: 1rem; }
.divider { height: 1px; background: var(--line); border: none; margin-block: 2.5rem; }

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .btn:hover, .card--link:hover { transform: none; }
}
