/* =============================================================================
   Foot Life — hand-written CSS. No build step.
   Targets: body text >=18px, >=1.6 line-height, AAA contrast on body text,
   tap targets >=48x48, respects prefers-reduced-motion.
   ============================================================================= */

:root {
  --bg: #ffffff;
  --bg-alt: #f4f6fa;
  --surface: #ffffff;
  --ink: #0e1f3a;
  --ink-muted: #3a4761;
  --border: #d6dce8;
  --border-strong: #8993a8;
  --brand: #1f3a5f;
  --brand-strong: #0e1f3a;
  --brand-soft: #e7ecf4;
  --accent: #1f3a5f;
  --accent-strong: #0e1f3a;
  --focus: #1f3a5f;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 2px rgba(14, 31, 58, .05), 0 6px 18px -6px rgba(14, 31, 58, .12);
  --container: 72rem;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;

  --step--1: clamp(0.95rem, 0.92rem + 0.15vw, 1.05rem);
  --step-0:  clamp(1.125rem, 1.08rem + 0.22vw, 1.25rem);   /* body: 18–20px */
  --step-1:  clamp(1.25rem, 1.17rem + 0.4vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --step-3:  clamp(1.875rem, 1.6rem + 1.4vw, 2.75rem);
  --step-4:  clamp(2.25rem, 1.8rem + 2.25vw, 3.75rem);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brand-strong);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a:hover { color: var(--accent-strong); }

/* Visible focus ring everywhere. Never remove without replacement. */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 1rem + 2vw, 2rem);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: .9rem 1.2rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus {
  top: 1rem;
  color: #fff;
  outline: 3px solid #fff;
}

/* ---------------------------------------------------------------------------
   Header
--------------------------------------------------------------------------- */

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(180%) blur(6px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 80px;
  padding-block: .5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.brand picture { display: block; }
.brand img {
  width: auto;
  height: clamp(56px, 7vw, 88px);
  display: block;
  object-fit: contain;
}

.site-nav ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: clamp(.75rem, .5rem + 1vw, 1.75rem);
  justify-content: center;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  padding: .75rem .25rem;
  font-weight: 600;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.site-nav a:hover { color: var(--brand-strong); text-decoration: underline; text-underline-offset: 6px; }

.header-book {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--accent);
  color: #fff;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  min-height: 48px;
  white-space: nowrap;
}
.header-book:hover { background: var(--accent-strong); color: #fff; }

@media (max-width: 760px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
  }
  .site-nav { display: none; }
  .header-book {
    padding: .7rem 1.1rem;
    font-size: var(--step--1);
    min-height: 44px;
  }
  .brand img { height: 48px; }
}

/* ---------------------------------------------------------------------------
   Sections (generic)
--------------------------------------------------------------------------- */

main > section {
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
}

main > section + section {
  border-top: 1px solid var(--border);
}

.eyebrow {
  display: inline-block;
  font-size: var(--step--1);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-strong);
  font-weight: 700;
  margin: 0 0 .5rem 0;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-block: 0 .6rem;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 700; }
h2 { font-size: var(--step-3); font-weight: 700; }
h3 { font-size: var(--step-1); font-weight: 600; font-family: var(--font-sans); letter-spacing: 0; }

.section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}
.section-lede {
  color: var(--ink-muted);
  font-size: var(--step-1);
}

.lede {
  font-size: var(--step-1);
  color: var(--ink-muted);
  max-width: 40rem;
}

.muted { color: var(--ink-muted); }
.small { font-size: var(--step--1); }

/* ---------------------------------------------------------------------------
   Hero
--------------------------------------------------------------------------- */

.hero {
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 6.5rem) !important;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(31, 58, 95, .10), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(31, 58, 95, .06), transparent 60%),
    var(--bg);
}
.hero-inner { max-width: 48rem; }
.hero h1 { margin-bottom: 1rem; }
.hero .lede { margin-bottom: 2rem; font-size: var(--step-2); color: var(--ink); }

.notice {
  border: 2px solid var(--accent);
  background: var(--brand-soft);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--ink);
}
.notice-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}
.notice h2 {
  font-size: var(--step-1);
  margin: 0 0 .35rem;
}
.notice p { margin: 0; }
.notice p + p { margin-top: .5rem; }
.service-card.is-unavailable { opacity: .85; }
.service-card .badge-unavailable {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 999px;
  margin-left: .5rem;
  vertical-align: middle;
}
.service-price.is-unavailable .price-amount {
  text-decoration: line-through;
  color: var(--ink-muted);
}

.vc-hero-header {
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.vc-hero-header .eyebrow { margin-bottom: .75rem; }
.vc-hero-header h1 { margin: 0; max-width: 22ch; }
.vc-hero-inner {
  display: grid;
  gap: clamp(1.5rem, 1rem + 3vw, 4rem);
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}
.vc-hero-copy { max-width: 36rem; }
.vc-hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1140 / 1184;
  object-fit: cover;
}
@media (max-width: 840px) {
  .vc-hero-inner { grid-template-columns: 1fr; }
  .vc-hero-media { order: -1; max-width: 22rem; margin-inline: auto; }
  .vc-hero-header h1 { max-width: none; }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step-0);
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
  line-height: 1.2;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--brand-strong);
  border-color: var(--brand-strong);
}
.btn-secondary:hover { background: var(--brand); color: #fff; }

/* ---------------------------------------------------------------------------
   Services
--------------------------------------------------------------------------- */

.service-group + .service-group { margin-top: 3rem; }

.service-group-heading {
  font-family: var(--font-sans);
  font-size: var(--step-1);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: .75rem;
  margin-bottom: 1.5rem;
}

.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.service-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.service-card h3 {
  margin: 0;
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--ink);
}
.service-price {
  margin: 0;
  white-space: nowrap;
  font-weight: 700;
  color: var(--brand-strong);
  font-size: var(--step-1);
  font-variant-numeric: tabular-nums;
}
.service-desc {
  color: var(--ink-muted);
  margin: 0;
}
.service-meta {
  margin: auto 0 0 0;
  padding-top: .5rem;
  color: var(--ink-muted);
  font-size: var(--step--1);
  border-top: 1px dashed var(--border);
}

/* ---------------------------------------------------------------------------
   About
--------------------------------------------------------------------------- */

.about-inner {
  display: grid;
  gap: clamp(1.5rem, 1rem + 3vw, 4rem);
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}
@media (max-width: 840px) { .about-inner { grid-template-columns: 1fr; } }

.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--bg-alt);
}

.credentials {
  list-style: none;
  padding: 0; margin: 1.5rem 0 0;
  display: grid;
  gap: .5rem;
}
.credentials li {
  padding: .5rem .75rem;
  background: var(--brand-soft);
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  width: fit-content;
}

.team-heading {
  margin: 2rem 0 1rem;
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--ink);
}
.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .85rem;
}
.team-card {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--brand);
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.team-name {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}
.team-role {
  margin: 0;
  color: var(--brand-strong);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.team-bio {
  margin: .65rem 0 0;
  color: var(--ink-muted);
}
.team-quals {
  margin: .5rem 0 0;
  color: var(--ink-muted);
  font-size: var(--step--1);
}

/* ---------------------------------------------------------------------------
   Location
--------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
   Conditions we treat
--------------------------------------------------------------------------- */

.condition-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
}

.condition-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.condition-card-media {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  line-height: 0;
}
.condition-card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.condition-card-body {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.condition-card h3 {
  margin: 0 0 .35rem 0;
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--brand-strong);
}
.condition-card p { margin: 0; color: var(--ink-muted); }
.condition-card .condition-details {
  margin: .85rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-muted);
  display: grid;
  gap: .25rem;
}
.condition-card .condition-details li { line-height: 1.45; }
.condition-card .condition-link {
  margin: 1rem 0 0;
  font-weight: 600;
}
.condition-card .condition-link a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------------------------------------------------------------------------
   Verruca clinic landing page
--------------------------------------------------------------------------- */

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: .65rem;
}
.check-list li {
  position: relative;
  padding-left: 1.85rem;
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: .55rem;
  height: 1rem;
  border: solid var(--accent);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.evidence .stat-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  margin-block: 1.5rem;
}
.evidence .stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.evidence .stat-value {
  margin: 0 0 .25rem 0;
  font-size: var(--step-3);
  font-weight: 700;
  color: var(--brand-strong);
  font-family: var(--font-display);
}
.evidence .stat-label {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.45;
}

/* ---------------------------------------------------------------------------
   Locations — two clinic cards
--------------------------------------------------------------------------- */

.location-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  margin-bottom: 2rem;
}

.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.location-map {
  display: block;
  line-height: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  transition: filter .2s ease;
}
.location-map:hover,
.location-map:focus-visible { filter: saturate(1.1) brightness(1.02); }
.location-map img {
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 792;
  object-fit: cover;
  display: block;
}

.location-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.location-card h3 {
  margin: 0;
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--brand-strong);
}
.location-card address {
  font-style: normal;
  margin: 0;
  color: var(--ink);
}
.location-card .btn { align-self: flex-start; margin-top: .25rem; }

.location-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  color: var(--brand-strong);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.location-phone:hover { color: var(--accent-strong); text-decoration: underline; }

.location-meta {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 1fr;
  align-items: start;
  margin-top: 1rem;
}
@media (max-width: 720px) { .location-meta { grid-template-columns: 1fr; } }

.hours {
  width: 100%;
  min-width: 14rem;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.hours caption { text-align: left; }
.hours th, .hours td {
  text-align: left;
  padding: .55rem .75rem;
  border-bottom: 1px solid var(--border);
}
.hours th { font-weight: 600; width: 5rem; }
.hours td.closed { color: var(--ink-muted); font-style: italic; }

/* ---------------------------------------------------------------------------
   Booking
--------------------------------------------------------------------------- */

.booking-fallback {
  margin: 1rem 0;
  color: var(--ink-muted);
}

.booking-cta {
  margin-block: 1.5rem 1rem;
  display: grid;
  gap: .65rem;
  justify-items: start;
}
.booking-cta .btn { min-height: 56px; padding-inline: 1.6rem; font-size: var(--step-1); }
.booking-cta-help {
  margin: 0;
  color: var(--ink-muted);
  font-size: var(--step--1);
}

/* ---------------------------------------------------------------------------
   Contact form
--------------------------------------------------------------------------- */

.contact-inner { max-width: 40rem; }

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: .35rem;
}
.field label {
  font-weight: 600;
}
.field .optional { color: var(--ink-muted); font-weight: 400; }

.field input,
.field textarea {
  font: inherit;
  color: inherit;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  min-height: 52px;
  width: 100%;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--ink);
}
.field-help {
  margin: 0;
  color: var(--ink-muted);
  font-size: var(--step--1);
}

/* Honeypot — kept out of view for humans and out of the tab order. */
.hp {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.privacy-note {
  color: var(--ink-muted);
  font-size: var(--step--1);
  margin: 0;
}

/* ---------------------------------------------------------------------------
   Thin / prose pages (thanks, privacy, accessibility)
--------------------------------------------------------------------------- */

.page-thin main { background: var(--bg); }

.thin-page {
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
}

.prose { max-width: 48rem; }
.prose h1 { margin-bottom: 1rem; }
.prose h2 { margin-top: 2.25rem; font-size: var(--step-2); font-family: var(--font-sans); }
.prose p { margin-block: .75rem; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-block: .35rem; }

/* ---------------------------------------------------------------------------
   Footer
--------------------------------------------------------------------------- */

.accreditations {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 2.5rem 2rem;
}
.accreditations-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.accreditations-heading {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}
.accreditations-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3rem;
}
.accreditations-list img {
  display: block;
  height: 96px;
  width: auto;
  max-width: 100%;
}

.site-footer {
  background: #0e1f3a;
  color: #e6ebf4;
  padding-block: 3rem 1.5rem;
  margin-top: 0;
}
.site-footer a { color: #ffffff; }
.site-footer a:hover { color: #b8c5dd; }

.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  margin-bottom: 2rem;
}
.footer-block p { margin: .25rem 0; }
.footer-name { font-weight: 700; font-size: var(--step-1); font-family: var(--font-display); }
.footer-heading {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: var(--step--1);
  margin-bottom: .5rem !important;
  color: #c6cfe0;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-block: .35rem; }
.footer-inner address { font-style: normal; }

.footer-bottom {
  border-top: 1px solid #2a3a5a;
  padding-top: 1.25rem;
  color: #9aa6bf;
  font-size: var(--step--1);
}
.footer-bottom p { margin: .25rem 0; }
.footer-credit { color: #9aa6bf; }

.footer-meta {
  color: #c6cfe0;
  font-size: var(--step--1);
  margin-top: .75rem !important;
}

/* ---------------------------------------------------------------------------
   FAQ disclosure widgets
--------------------------------------------------------------------------- */

.faqs-inner { max-width: 48rem; }

.faq {
  border-bottom: 1px solid var(--border);
  padding-block: .25rem;
}
.faq summary {
  list-style: none;
  padding: 1rem .25rem 1rem 2rem;
  font-weight: 600;
  font-size: var(--step-1);
  cursor: pointer;
  position: relative;
  min-height: 48px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "";
  position: absolute;
  left: .2rem;
  top: 50%;
  width: 1rem; height: 1rem;
  transform: translateY(-50%);
  background:
    linear-gradient(to right, var(--brand-strong) 0 100%) no-repeat center / 100% 2px,
    linear-gradient(to bottom, var(--brand-strong) 0 100%) no-repeat center / 2px 100%;
  transition: transform .15s ease;
}
.faq[open] summary::before {
  background: linear-gradient(to right, var(--brand-strong) 0 100%) no-repeat center / 100% 2px;
}
.faq summary:hover { color: var(--brand-strong); }
.faq p {
  margin: 0 .25rem 1.25rem 2rem;
  color: var(--ink-muted);
}
@media (prefers-reduced-motion: no-preference) {
  .faq p {
    animation: faq-in 180ms ease-out;
  }
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================================
   Cookie consent banner. Hidden until the page-side script reveals it after
   ~4s + 200px scroll. Footer "Manage cookies" button re-shows it on demand.
   ============================================================================= */
.consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--surface);
  color: var(--ink);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px -8px rgba(14, 31, 58, .35);
  padding: .75rem 1rem;
  font-size: .9375rem;
  line-height: 1.4;
}
.consent-banner[hidden] { display: none; }
.consent-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.consent-banner p { margin: 0; flex: 1 1 18rem; }
.consent-banner a { color: var(--brand-strong); text-decoration: underline; text-underline-offset: 3px; }
.consent-banner a:hover { color: var(--brand); }
.consent-banner .actions { display: flex; gap: .5rem; flex-shrink: 0; }
.consent-banner button {
  min-height: 40px;
  padding: .375rem 1rem;
  border-radius: var(--radius-sm);
  font: inherit;
  cursor: pointer;
}
.consent-banner .btn-accept {
  background: var(--brand);
  color: #fff;
  border: 0;
}
.consent-banner .btn-accept:hover { background: var(--brand-strong); }
.consent-banner .btn-decline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.consent-banner .btn-decline:hover { border-color: var(--ink); }
@media (prefers-reduced-motion: no-preference) {
  .consent-banner { animation: consent-in .25s ease-out; }
  @keyframes consent-in {
    from { transform: translateY(8px); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
  }
}

/* Plain-link button used by the footer "Manage cookies" control. Looks like
   a text link, behaves like a button. */
.link-button {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--brand-strong);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  cursor: pointer;
}
.link-button:hover { color: var(--accent-strong); }
