/* =========================================================================
   Fannie Bay Medical Centre — Stylesheet
   Clean & clinical design system. Edit the tokens in :root to re-theme.
   ========================================================================= */

/* ----------------------------------------------------------------------- */
/* 1. Design tokens                                                        */
/* ----------------------------------------------------------------------- */
:root {
  /* Brand palette ------------------------------------------------------- */
  --c-primary:        #1a8c4f;   /* medical green — matches the FBMC logo    */
  --c-primary-dark:   #136b3c;
  --c-primary-darker: #0d4f2c;
  --c-primary-tint:   #e8f4ec;   /* pale green for soft section backgrounds  */
  --c-primary-tint-2: #f1f9f4;
  --c-accent:         #1faa59;   /* brighter green — checkmarks & "open"     */
  --c-accent-dark:    #178a47;
  --c-cta:            #e0492f;   /* logo red — booking call-to-action only   */
  --c-cta-dark:       #c43b23;

  /* Neutrals ------------------------------------------------------------ */
  --ink:   #102a30;              /* headings                                */
  --body:  #44575d;              /* body copy                               */
  --muted: #6b7a80;              /* secondary / meta text                   */
  --line:  #e1eaec;              /* hairline borders                        */
  --bg:        #ffffff;
  --bg-soft:   #f5f9fa;
  --white:     #ffffff;

  /* Status -------------------------------------------------------------- */
  --c-open:   #1faa59;
  --c-closed: #d2603a;

  /* Typography ---------------------------------------------------------- */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Radii --------------------------------------------------------------- */
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  22px;
  --r-pill: 999px;

  /* Shadows ------------------------------------------------------------- */
  --sh-sm: 0 1px 2px rgba(16, 42, 48, .06), 0 1px 3px rgba(16, 42, 48, .05);
  --sh:    0 6px 18px rgba(16, 42, 48, .08);
  --sh-md: 0 14px 34px rgba(16, 42, 48, .10);
  --sh-lg: 0 24px 60px rgba(16, 42, 48, .14);

  /* Layout -------------------------------------------------------------- */
  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);

  --header-h: 86px;
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;        /* 17px */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--c-primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding: 0; list-style: none; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

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

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--c-primary-tint-2); }

.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: .85rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
}
.section-head.center .eyebrow { justify-content: center; }

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); }

.text-center { text-align: center; }

/* ----------------------------------------------------------------------- */
/* 4. Buttons                                                              */
/* ----------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .92rem 1.5rem;
  border-radius: var(--r-pill);
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn--primary { background: var(--c-primary); color: #fff; box-shadow: var(--sh-sm); }
.btn--primary:hover { background: var(--c-primary-dark); box-shadow: var(--sh); color:#fff; }

.btn--book { background: var(--c-cta); color: #fff; box-shadow: 0 6px 16px rgba(224,73,47,.32); }
.btn--book:hover { background: var(--c-cta-dark); box-shadow: 0 10px 22px rgba(224,73,47,.42); color:#fff; }

.btn--ghost { background: rgba(255,255,255,.14); color:#fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.24); color:#fff; }

.btn--outline { background: #fff; color: var(--c-primary-dark); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--c-primary); color: var(--c-primary-dark); }

.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.06rem; }
.btn--sm { padding: .6rem 1rem; font-size: .9rem; }
.btn--block { width: 100%; }

/* ----------------------------------------------------------------------- */
/* 5. Top utility bar                                                      */
/* ----------------------------------------------------------------------- */
.topbar {
  background: var(--c-primary-darker);
  color: rgba(255,255,255,.92);
  font-size: .86rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  padding-block: .35rem;
}
.topbar a { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-item svg { width: 15px; height: 15px; opacity: .85; flex: none; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-family: var(--font-head);
  padding: .2rem .7rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex: none; }
.status-pill[data-open="true"]  .status-dot { background: var(--c-open);  box-shadow: 0 0 0 4px rgba(31,170,89,.25); }
.status-pill[data-open="false"] .status-dot { background: var(--c-closed); box-shadow: 0 0 0 4px rgba(210,96,58,.22); }

@media (max-width: 760px) {
  .topbar .topbar-left .topbar-item--addr { display: none; }
}
@media (max-width: 520px) {
  .topbar .topbar-left { gap: .9rem; }
  .topbar-item--fax { display: none; }
}

/* ----------------------------------------------------------------------- */
/* 6. Header / navigation                                                  */
/* ----------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

/* Brand / logo */
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-logo { height: 60px; width: auto; flex: none; display: block; }
@media (max-width: 600px) { .brand-logo { height: 48px; } }
@media (max-width: 380px) { .brand-logo { height: 42px; } }
/* Real logo on a white chip so it stays legible on the dark footer */
.footer-logo { width: 220px; max-width: 60vw; height: auto; background: #fff; padding: .8rem 1rem; border-radius: 14px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-primary);
  font-weight: 600;
}

/* Primary nav */
.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink);
  padding: .55rem .8rem;
  border-radius: var(--r-sm);
  transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--c-primary); background: var(--c-primary-tint); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--c-primary); }
.nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; border-radius: 2px;
  background: var(--c-primary); margin: 4px .8rem 0;
}

.header-actions { display: flex; align-items: center; gap: .6rem; }
.header-actions .btn--phone { display: none; }

/* The in-nav booking pill is only for the mobile dropdown menu */
.nav .nav-cta { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile layout */
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: calc(var(--header-h)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    background: #fff;
    padding: 1rem var(--gutter) 1.6rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: .85rem .9rem; font-size: 1.05rem; border-radius: var(--r-sm); }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { background: var(--c-primary-tint); }
  .nav .nav-cta { display: inline-flex; margin-top: .6rem; }
  .header-actions .btn--book span.full { display: none; }
}
@media (max-width: 480px) {
  .header-actions .btn--book { padding: .7rem 1rem; }
}

/* ----------------------------------------------------------------------- */
/* 7. Hero                                                                 */
/* ----------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(31,170,89,.10), transparent 60%),
    linear-gradient(160deg, var(--c-primary-tint) 0%, #fff 55%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(13,125,142,.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero-copy { max-width: 600px; }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .hl { color: var(--c-primary); }
.hero-lead { font-size: clamp(1.08rem, 1.8vw, 1.28rem); color: var(--body); margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; color: var(--muted); font-size: .92rem; }
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--c-accent); flex: none; }

/* Hero visual / info card */
.hero-visual { position: relative; }
.hero-art {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  background: #fff;
  overflow: hidden;
}
.hero-card {
  position: absolute;
  left: -18px; bottom: -22px;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh-md);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  border: 1px solid var(--line);
  max-width: 260px;
}
.hero-card .hc-icon {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  background: var(--c-primary-tint); color: var(--c-primary-dark);
  border-radius: 12px;
}
.hero-card .hc-icon svg { width: 22px; height: 22px; }
.hero-card .hc-title { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem; }
.hero-card .hc-sub { font-size: .82rem; color: var(--muted); }

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 520px; }
  .hero-card { left: auto; right: 8px; }
}

/* ----------------------------------------------------------------------- */
/* 8. Feature / trust strip                                                */
/* ----------------------------------------------------------------------- */
.featurebar {
  background: var(--c-primary-darker);
  color: #fff;
}
.featurebar .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border-radius: var(--r);
  overflow: hidden;
  margin-block: -2.4rem 0;
  box-shadow: var(--sh-md);
  position: relative;
  z-index: 2;
}
.featurebar .cell {
  background: var(--c-primary-dark);
  padding: 1.25rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.featurebar .cell svg { width: 26px; height: 26px; color: #fff; flex: none; opacity: .95; }
.featurebar .cell b { font-family: var(--font-head); font-weight: 700; display: block; font-size: .98rem; }
.featurebar .cell span { font-size: .82rem; color: rgba(255,255,255,.75); }
@media (max-width: 820px) { .featurebar .grid { grid-template-columns: repeat(2, 1fr); margin-block: -2rem 0; } }
@media (max-width: 440px) { .featurebar .grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------------- */
/* 9. Service cards                                                        */
/* ----------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1.4rem;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.svc-ic {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--c-primary-tint);
  color: var(--c-primary-dark);
  margin-bottom: 1rem;
}
.svc-ic svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.svc-card p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ----------------------------------------------------------------------- */
/* 10. Split / about feature                                               */
/* ----------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--narrow { grid-template-columns: 1.1fr .9fr; }
@media (max-width: 880px) { .split, .split--narrow { grid-template-columns: 1fr; } }

.checklist { display: grid; gap: .85rem; margin-top: 1.4rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; }
.checklist .ic {
  width: 26px; height: 26px; flex: none;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(31,170,89,.13); color: var(--c-accent-dark);
  margin-top: 2px;
}
.checklist .ic svg { width: 15px; height: 15px; }
.checklist b { color: var(--ink); font-family: var(--font-head); }

.media-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--c-primary-tint);
  aspect-ratio: 4 / 3;
}
.media-frame svg, .media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ----------------------------------------------------------------------- */
/* 11. Doctor cards                                                        */
/* ----------------------------------------------------------------------- */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
}
.doc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-sm);
}
.doc-photo {
  background: linear-gradient(150deg, var(--c-primary-tint), #fff);
  display: grid; place-items: center;
  color: var(--c-primary);
  position: relative;
  padding: 2.1rem 1rem 1.4rem;
}
.doc-photo svg { width: 84px; height: 84px; opacity: .55; }
.doc-photo .avatar {
  width: 152px; height: 152px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 16%;
  border: 4px solid #fff;
  box-shadow: var(--sh-md);
  background: #eef5f6;
}
.doc-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.doc-name { font-size: 1.25rem; margin-bottom: .15rem; }
.doc-cred { font-size: .82rem; letter-spacing: .04em; color: var(--c-primary); font-weight: 600; font-family: var(--font-head); margin-bottom: .6rem; }
.doc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .9rem; }
.tag {
  font-size: .76rem; font-weight: 600; font-family: var(--font-head);
  padding: .25rem .65rem; border-radius: var(--r-pill);
  background: var(--c-primary-tint); color: var(--c-primary-dark);
}
.doc-body p { font-size: .95rem; color: var(--body); margin: 0; }
.doc-langs { font-size: .86rem; color: var(--muted); margin-top: .85rem !important; display: flex; align-items: center; gap: .4rem; }
.doc-langs b { color: var(--ink); font-family: var(--font-head); font-weight: 600; }

/* ----------------------------------------------------------------------- */
/* 12. Fees table                                                          */
/* ----------------------------------------------------------------------- */
.fee-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 820px) { .fee-wrap { grid-template-columns: 1fr; } }
.fee-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.fee-card h3 {
  background: var(--c-primary);
  color: #fff;
  padding: 1rem 1.4rem;
  font-size: 1.1rem;
  display: flex; align-items: center; gap: .6rem;
}
.fee-card h3 svg { width: 20px; height: 20px; }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th, .fee-table td { padding: .85rem 1.4rem; text-align: left; }
.fee-table thead th {
  font-family: var(--font-head); font-size: .76rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.fee-table tbody tr + tr td { border-top: 1px solid var(--line); }
.fee-table td.fee { font-family: var(--font-head); font-weight: 700; color: var(--ink); white-space: nowrap; }
.fee-table td.rebate { color: var(--muted); white-space: nowrap; }
.fee-table th.num, .fee-table td.num { text-align: right; }
.fee-service { color: var(--ink); font-weight: 500; }

.bulk-billing {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.5rem);
}
.bulk-billing h3 { color: #fff; font-size: 1.4rem; margin-bottom: .4rem; }
.bulk-billing p { color: rgba(255,255,255,.85); }
.bulk-list { display: grid; gap: .7rem; margin-top: 1.3rem; }
.bulk-list li { display: flex; align-items: center; gap: .7rem; font-weight: 500; }
.bulk-list .ic { width: 26px; height: 26px; flex:none; display:grid; place-items:center; border-radius:50%; background: rgba(255,255,255,.18); }
.bulk-list .ic svg { width: 15px; height: 15px; }

/* ----------------------------------------------------------------------- */
/* 13. Hours & info                                                        */
/* ----------------------------------------------------------------------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table td { padding: .7rem 0; }
.hours-table td.day { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.hours-table td.time { text-align: right; color: var(--body); }
.hours-table tr.is-today td { color: var(--c-primary-dark); }
.hours-table tr.is-today td.day { position: relative; }
.hours-table tr.is-today td.day::before {
  content: "Today"; position: absolute; left: 0; top: -10px;
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-primary); font-weight: 700;
}
.hours-table td.closed { color: var(--muted); }

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--sh-sm);
}
.info-row { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-row .ic { width: 40px; height: 40px; flex:none; display:grid; place-items:center; border-radius: 11px; background: var(--c-primary-tint); color: var(--c-primary-dark); }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .lbl { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; font-family: var(--font-head); }
.info-row .val { color: var(--ink); font-weight: 500; }
.info-row .val a { color: var(--ink); }
.info-row .val a:hover { color: var(--c-primary); }

/* Map */
.map-frame {
  border: 0;
  width: 100%;
  min-height: 380px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  filter: grayscale(.15);
}

/* ----------------------------------------------------------------------- */
/* 14. CTA band                                                            */
/* ----------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 10% 120%, rgba(31,170,89,.22), transparent 60%),
    linear-gradient(120deg, var(--c-primary-dark), var(--c-primary-darker));
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: var(--sh-md);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 540px; margin: .8rem auto 1.8rem; }
.cta-band .hero-cta { justify-content: center; }

/* ----------------------------------------------------------------------- */
/* 15. Page hero (inner pages)                                             */
/* ----------------------------------------------------------------------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(31,170,89,.10), transparent 60%),
    linear-gradient(160deg, var(--c-primary-tint), #fff 70%);
  border-bottom: 1px solid var(--line);
}
.page-hero .container { padding-block: clamp(2.6rem, 6vw, 4.2rem); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .86rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { margin-bottom: .7rem; max-width: 18ch; }
.page-hero p { max-width: 60ch; font-size: 1.1rem; }

/* ----------------------------------------------------------------------- */
/* 16. Misc                                                                */
/* ----------------------------------------------------------------------- */
.prose p { margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }

.note {
  background: var(--c-primary-tint-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--c-primary);
  border-radius: var(--r-sm);
  padding: 1.1rem 1.3rem;
  font-size: .96rem;
}
.note b { color: var(--ink); font-family: var(--font-head); }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--c-primary-dark); color: #fff; padding: .7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); z-index: 200; transition: top .2s ease;
}
.skip-link:focus { top: 0; text-decoration: none; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.2rem 0;
  font-family: var(--font-head); font-weight: 600; color: var(--ink);
  font-size: 1.08rem; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--c-primary); font-size: 1.5rem; line-height: 1; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 1.2rem; margin: 0; color: var(--body); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------------------------------------------------------- */
/* 17. Footer                                                              */
/* ----------------------------------------------------------------------- */
.site-footer { background: #0a2227; color: rgba(255,255,255,.72); padding-top: clamp(3rem, 6vw, 4.5rem); font-size: .95rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.2rem;
  padding-bottom: 3rem;
}
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.footer-links { display: grid; gap: .6rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--c-accent); }
.footer-about { margin: 1rem 0 1.2rem; max-width: 32ch; }
.footer-contact { display: grid; gap: .7rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--c-accent); flex: none; margin-top: 3px; }
.footer-hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: .25rem 0; }
.footer-hours-row span:last-child { color: rgba(255,255,255,.9); }

.footer-ack {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.6rem 0;
  font-size: .86rem;
  color: rgba(255,255,255,.6);
  display: flex; gap: .9rem; align-items: flex-start;
}
.footer-ack svg { width: 22px; height: 22px; flex: none; opacity: .8; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Emergency banner */
.emergency {
  background: #fbeee9;
  border-bottom: 1px solid #f3d6cc;
  color: #8a3618;
  font-size: .88rem;
  text-align: center;
  padding: .5rem var(--gutter);
}
.emergency b { color: #6e2a12; }
.emergency a { color: #b8401b; font-weight: 600; }
