/* ============================================================
   Cradle & Care Midwifery — Midwife Purple theme
   Semantic tokens, mobile-first, dependency-free
   ============================================================ */

:root {
  /* Brand palette — Midwife Purple */
  --primary:      #5C3D73;
  --primary-deep: #45295A;
  --surface:      #F1EAF3;
  --line:         #DFD0E3;
  --bg:           #FBF7F4;
  --bg-alt:       #F2E8E3;
  --accent:       #C9A96A;
  --accent-soft:  #ECDFC9;
  --ink:          #2C2530;
  --muted:        #5F5468;
  --white:        #FFFFFF;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Fluid scale */
  --step--1: clamp(0.88rem, 0.82rem + 0.3vw, 0.95rem);
  --step-0:  clamp(1.05rem, 0.98rem + 0.4vw, 1.15rem);
  --step-1:  clamp(1.2rem, 1.05rem + 0.6vw, 1.35rem);
  --step-2:  clamp(1.45rem, 1.2rem + 1vw, 1.7rem);
  --step-3:  clamp(1.75rem, 1.3rem + 1.6vw, 2.25rem);
  --step-4:  clamp(2.1rem, 1.5rem + 2.4vw, 3rem);
  --step-5:  clamp(2.5rem, 1.7rem + 3.2vw, 3.75rem);

  /* Layout */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(44, 37, 48, 0.06), 0 2px 6px rgba(44, 37, 48, 0.04);
  --shadow:    0 6px 18px rgba(69, 41, 90, 0.10);
  --shadow-lg: 0 18px 40px rgba(69, 41, 90, 0.16);
  --container: 1120px;
  --gutter:    clamp(1rem, 0.6rem + 2vw, 1.75rem);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p  { margin: 0 0 1em; color: var(--ink); }

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--primary-deep); }

:focus-visible {
  outline: 3px solid var(--primary);
  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;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: clamp(3rem, 2rem + 5vw, 6rem); }
section.alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.lead { font-size: var(--step-1); color: var(--muted); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease), color 180ms var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible { outline-offset: 4px; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--primary-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-ghost {
  background: var(--white);
  color: var(--primary-deep);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--surface); }

.btn .icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 244, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--primary-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand .mark { color: var(--accent); }

.primary-nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
}
.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: var(--step--1);
  font-weight: 500;
}
.primary-nav a:hover { color: var(--primary); }

.header-cta { font-size: var(--step--1); padding: 0.65rem 1.1rem; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--primary-deep); }

@media (min-width: 880px) {
  .primary-nav { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.mobile-nav[data-open="true"] { display: block; }
.mobile-nav .container { flex-direction: column; align-items: stretch; gap: 0; padding-block: 0.5rem; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.mobile-nav a:last-child { border-bottom: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 1.5rem + 5vw, 5rem) clamp(3rem, 2rem + 5vw, 6rem);
  background:
    radial-gradient(1200px 600px at 90% -20%, rgba(92, 61, 115, 0.10), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(201, 169, 106, 0.14), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero .grid {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .hero .grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero h1 { margin-bottom: 0.75rem; }
.hero .lead { margin-bottom: 1.75rem; }
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero .reassurance {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: var(--step--1);
}
.hero .reassurance .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
}

.hero-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  isolation: isolate;
}
.hero-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 46% 54% 48% 52% / 50% 46% 54% 50%;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,0.35), transparent 55%),
    linear-gradient(155deg, var(--surface) 0%, var(--accent-soft) 60%, #E8D9BD 100%);
  box-shadow: var(--shadow-lg);
}
.hero-portrait picture,
.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-portrait img {
  object-fit: cover;
  object-position: 50% 22%;
}
.hero-portrait::after {
  /* subtle inner border in our brand purple to dignify the frame */
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: inherit;
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  left: 8%;
  bottom: 8%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.55rem 0.85rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.hero-caption-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary-deep);
  font-weight: 500;
}
.hero-caption-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.badge-credential {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--primary-deep);
  white-space: nowrap;
  max-width: calc(100% - 1.5rem);
}
@media (max-width: 520px) {
  .badge-credential {
    font-size: 0.7rem;
    padding: 0.55rem 0.9rem;
    gap: 0.45rem;
    letter-spacing: 0.005em;
  }
  .badge-credential .seal { width: 18px; height: 18px; flex: 0 0 18px; }
  .badge-credential .seal svg { width: 11px; height: 11px; }
}
.badge-credential .seal {
  width: 22px; height: 22px;
  flex: 0 0 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-deep);
}
.badge-credential .seal svg { width: 14px; height: 14px; }

/* Hero reveal (orchestrated) */
.reveal { opacity: 0; transform: translateY(14px); }
.is-loaded .reveal { animation: revealUp 700ms var(--ease) forwards; }
.is-loaded .reveal[data-delay="1"] { animation-delay: 90ms; }
.is-loaded .reveal[data-delay="2"] { animation-delay: 180ms; }
.is-loaded .reveal[data-delay="3"] { animation-delay: 270ms; }
.is-loaded .reveal[data-delay="4"] { animation-delay: 360ms; }
.is-loaded .reveal[data-delay="5"] { animation-delay: 450ms; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--primary-deep);
  color: var(--white);
  padding-block: clamp(1.25rem, 1rem + 1.5vw, 2rem);
}
.trust-strip .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .trust-strip .grid { grid-template-columns: repeat(4, 1fr); text-align: left; }
}
.trust-strip .item {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 720px) {
  .trust-strip .item { justify-content: flex-start; }
}
.trust-strip .item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.trust-strip .item span { color: var(--white); font-weight: 500; font-size: var(--step--1); }

/* ---------- Section heading ---------- */
.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.section-head p { color: var(--muted); }

/* ---------- Cards (services) ---------- */
.cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--surface); }
.card .card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary-deep);
  margin-bottom: 0.25rem;
}
.card .card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: var(--step-1); margin: 0; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Packages ---------- */
.packages-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .packages-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; } }

.package {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.package h3 { margin-bottom: 0; }
.package .price {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--primary-deep);
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.package .price .unit {
  display: block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
  white-space: normal;
}
.package ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex-grow: 1;
}
.package li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--ink);
}
.package li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 0.6em;
  flex-shrink: 0;
}
.package .btn { align-self: flex-start; }

.package.featured {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  padding-top: 2.8rem;
}
.package.featured h3,
.package.featured .price { color: var(--white); }
.package.featured .price .unit { color: var(--accent-soft); }
.package.featured li { color: var(--white); }
.package.featured li::before { background: var(--accent); }
.package.featured .btn-primary { background: var(--accent); color: var(--primary-deep); }
.package.featured .btn-primary:hover { background: var(--accent-soft); color: var(--primary-deep); }

/* Featured tag — gold background MUST use deep-purple text */
.tag-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-deep);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.packages-note {
  margin-top: 1.5rem;
  font-size: var(--step--1);
  color: var(--muted);
  max-width: 60ch;
}

/* ---------- Do / Don't ---------- */
.dodont-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .dodont-grid { grid-template-columns: repeat(2, 1fr); } }

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.panel h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: var(--step-2);
}
.panel h3 .pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary-deep);
}
.panel.do .pill { background: var(--surface); color: var(--primary-deep); }
.panel.dont .pill { background: var(--accent-soft); color: var(--primary-deep); }
.panel ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.panel li { display: flex; gap: 0.6rem; color: var(--ink); }
.panel li::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); margin-top: 0.6em; flex-shrink: 0;
}
.panel.dont li::before { background: var(--accent); }

/* ---------- Emergency band ---------- */
.emergency {
  background: var(--primary-deep);
  color: var(--white);
}
.emergency .container {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 760px) {
  .emergency .container { grid-template-columns: auto 1fr auto; }
}
.emergency .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
}
.emergency .icon-wrap svg { width: 28px; height: 28px; }
.emergency h2 { color: var(--white); margin-bottom: 0.4rem; font-size: var(--step-2); }
.emergency p { color: var(--accent-soft); margin: 0; max-width: 60ch; }
.emergency .btn-ghost { background: var(--white); color: var(--primary-deep); border-color: transparent; }
.emergency .btn-ghost:hover { background: var(--accent-soft); color: var(--primary-deep); }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--step-0);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 22px; height: 22px;
  color: var(--primary);
  transition: transform 220ms var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .contact-grid { grid-template-columns: 1.2fr 0.8fr; } }

.contact-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}
.contact-card h3 { color: var(--white); margin-bottom: 0.25rem; font-size: var(--step-2); }
.contact-card p { color: var(--surface); margin: 0; }
.contact-card .btn-primary { background: var(--white); color: var(--primary-deep); align-self: flex-start; }
.contact-card .btn-primary:hover { background: var(--accent-soft); color: var(--primary-deep); }

.contact-side {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-side h4 { margin: 0; font-size: var(--step-1); }
.contact-side .row { display: flex; gap: 0.75rem; align-items: flex-start; }
.contact-side .row svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.contact-side .row a { color: var(--primary-deep); text-decoration: none; font-weight: 500; }
.contact-side .row a:hover { color: var(--primary); text-decoration: underline; }
.contact-side .row .muted { color: var(--muted); font-size: var(--step--1); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-deep);
  color: var(--white);
  padding-block: clamp(2.5rem, 2rem + 2vw, 3.5rem);
}
.site-footer .grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 760px) {
  .site-footer .grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer .brand { color: var(--white); }
.site-footer .brand .mark { color: var(--accent); }
.site-footer p { color: var(--accent-soft); font-size: var(--step--1); margin: 0.4rem 0 0; }

/* Footer brand-mark — the original organic oval blob, gold gradient with inset border */
.footer-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 220px;
  aspect-ratio: 4 / 5;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 46% 54% 48% 52% / 50% 46% 54% 50%;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,0.35), transparent 55%),
    linear-gradient(155deg, var(--surface) 0%, var(--accent-soft) 60%, #E8D9BD 100%);
  box-shadow: var(--shadow-lg);
  color: var(--primary-deep);
  isolation: isolate;
  margin-bottom: 1rem;
}
.footer-mark::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(69, 41, 90, 0.16);
  border-radius: inherit;
  pointer-events: none;
}
.footer-mark::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(69, 41, 90, 0.08);
  border-radius: inherit;
  pointer-events: none;
}
.footer-mark:hover { transform: translateY(-1px); transition: transform .2s var(--ease); }
.footer-mark-sprig {
  width: 22px; height: 34px;
  color: var(--primary-deep);
  opacity: 0.55;
}
.footer-mark-mono {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--primary-deep);
}
.footer-mark-mono .amp,
.footer-mark-word .amp { color: var(--accent); font-style: italic; }
.footer-mark-word {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--primary-deep);
  letter-spacing: 0.01em;
}
.footer-mark-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.85;
}
.site-footer h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.65rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer a { color: var(--accent-soft); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer .small {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--accent-soft);
  font-size: var(--step--1);
}

/* ---------- Reduced motion ---------- */
@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;
  }
  .reveal { opacity: 1; transform: none; }
}
