/* Meditec Pharmacy — design system: flat, accessible, trust-first.
   Brand #88B653 (build sheet) + secondary #153151. Fonts: Lexend / Source Sans 3. */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --brand: #88B653;          /* canonical brand hex — accents, large elements */
  --brand-deep: #55772F;     /* auto-darkened brand for small text/icons: 4.6:1 on white */
  --brand-tint: #F2F7EA;     /* section wash */
  --navy: #153151;           /* secondary brand — primary buttons, headings */
  --navy-deep: #0E2238;
  --ink: #1E2B33;            /* body text, 12.9:1 on paper */
  --ink-soft: #47555E;       /* secondary text, 6.7:1 */
  --paper: #FCFDFA;          /* green-tinted near-white, never #fff */
  --line: #DCE4D4;
  --danger: #B3261E;
  --focus: #0E5FD8;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(21,49,81,.06), 0 4px 14px rgba(21,49,81,.07);
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-family: var(--font-head); color: var(--navy); line-height: 1.22; margin: 0 0 .5em; }
h1 { font-size: clamp(1.75rem, 4.5vw, 2.6rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; }
h3 { font-size: 1.17rem; font-weight: 600; }
p { margin: 0 0 1em; max-width: 70ch; }
a { color: var(--brand-deep); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
:is(a, button, summary, input, [tabindex]):focus-visible {
  outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 4px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--navy); color: #F5F8FB; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
.wrap { max-width: 72rem; margin-inline: auto; padding-inline: 1.25rem; }

/* ---- Top bar ---- */
.topbar { background: var(--navy-deep); color: #E8EEF5; font-size: .9rem; }
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .35rem 1.5rem; align-items: center; justify-content: space-between; padding-block: .45rem; }
.topbar a { color: #E8EEF5; }
.topbar-addr, .topbar-phone { display: inline-flex; align-items: center; gap: .4rem; }
.topbar svg { width: 15px; height: 15px; flex: none; }
.topbar a:hover { color: #C9E29F; }
.open-dot { display: inline-block; width: .6em; height: .6em; border-radius: 50%; background: #9aa7b4; margin-right: .4em; }
.is-open .open-dot { background: #9FD65E; }
.is-closed .open-dot { background: #E9A0A0; }
@media (max-width: 639px) { .topbar-addr { display: none; } }

/* ---- Header: centered logo band + navy nav bar (Metro Care style) ---- */
.site-header { background: var(--paper); }
.logo-band { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .9rem; }
.logo-link { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-link img { height: 72px; width: auto; }
.header-call { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; text-decoration: none; color: var(--navy); }
.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); color: var(--navy); cursor: pointer;
}
.main-navbar { display: none; background: var(--navy); }
@media (min-width: 1024px) {
  .header-call, .menu-btn { display: none; }
  .logo-band { justify-content: center; padding-block: 1.1rem; }
  .logo-link img { height: 96px; }
  .main-navbar { display: block; }
  .main-navbar .wrap { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: center; gap: 1.5rem; padding-block: .75rem; }
  .primary-nav { display: flex; gap: .35rem; align-items: center; justify-content: center; flex-wrap: nowrap; }
  .primary-nav > a, .nav-drop > button {
    font: 600 1.02rem var(--font-body); color: #F5F8FB; text-decoration: none;
    padding: .5rem .9rem; border-radius: 8px; background: none; border: 0; cursor: pointer;
    display: inline-flex; align-items: center; gap: .3rem; white-space: nowrap;
  }
  .primary-nav > a:hover, .nav-drop > button:hover { background: rgba(255,255,255,.14); color: #fff; }
  .primary-nav > a[aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }
  .header-ctas { display: flex; gap: .7rem; align-items: center; justify-content: center; flex-wrap: nowrap; }
  .header-ctas .btn { min-height: 44px; }
}
.nav-drop { position: relative; }
.drop-menu {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%); min-width: 560px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: .5rem; display: none; z-index: 120;
}
.drop-menu.open { display: grid; grid-template-columns: 1fr 1fr; gap: 2px .5rem; }
.drop-menu .drop-all { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: .25rem; padding-top: .65rem; }
.drop-menu a {
  display: flex; gap: .6rem; align-items: center; padding: .55rem .7rem;
  border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 500;
}
.drop-menu a:hover { background: var(--brand-tint); color: var(--navy); }
.drop-menu svg { color: var(--brand-deep); flex: none; }

/* ---- Transfer form embed ---- */
.transferApp > div { overflow: hidden; }
.transferApp iframe { border: 0; display: block; margin: -8px; width: calc(100% + 16px) !important; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .6rem 1.25rem; border-radius: var(--radius);
  font: 600 1rem var(--font-body); text-decoration: none; cursor: pointer; border: 1px solid transparent;
  white-space: nowrap;
  touch-action: manipulation;
}
.btn-primary { background: var(--navy); color: #F5F8FB; }
.btn-primary:hover { background: var(--navy-deep); color: #fffef9; }
.btn-brand { background: #5A7F2B; color: #FFFFFF; border-color: #55782A; }
.btn-brand:hover { background: #4E7222; color: #FFFFFF; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--brand-tint); color: var(--navy); }

/* ---- Hero slider: full-width fading slides, centered serif captions ---- */
.hero { position: relative; background: var(--navy-deep); color: #EDF2F7; overflow: hidden; }
.slides { display: grid; }
.slide { grid-area: 1 / 1; position: relative; opacity: 0; pointer-events: none; z-index: 1; background: var(--navy-deep); }
.slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; transition: opacity 600ms ease; }
@media (prefers-reduced-motion: reduce) { .slide.is-active { transition: none; } }
.slide picture { position: absolute; inset: 0; }
.slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .34; }
.slide .wrap { position: relative; padding-block: 5rem 8.5rem; text-align: center; }
@media (min-width: 768px) { .slide .wrap { padding-block: 8.5rem 12rem; } }
.hero-inner { max-width: 54rem; margin-inline: auto; }
.hero h1, .hero .slide-title { color: #FDFEFB; font-family: var(--font-head); font-size: clamp(2.1rem, 5.5vw, 3.4rem); line-height: 1.15; margin: 0 0 .3em; }
.hero .tagline { font-size: clamp(1.1rem, 2.2vw, 1.45rem); color: #E2ECDA; max-width: none; margin-inline: auto; }
.hero .slide-link { color: #D9EBB4; font-weight: 600; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45);
  background: rgba(14,34,56,.45); color: #F5F8FB; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: rgba(14,34,56,.75); }
.slider-prev { left: .9rem; } .slider-prev svg { transform: rotate(90deg); }
.slider-next { right: .9rem; } .slider-next svg { transform: rotate(-90deg); }
.slider-dots { position: absolute; left: 0; right: 0; bottom: 6.4rem; z-index: 6; display: flex; justify-content: center; gap: .55rem; }
@media (max-width: 899px) { .slider-dots { display: none; } }
.slider-dots button {
  width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7);
  background: transparent; cursor: pointer; padding: 0;
}
.slider-dots button[aria-current="true"] { background: var(--brand); border-color: var(--brand); }

/* ---- Overlapping action cards (Refill / Transfer / Contact) ---- */
.action-section { position: relative; z-index: 5; margin-top: -5.5rem; padding-bottom: 1rem; }
.action-cards { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin: 0; padding: 0; list-style: none; }
@media (min-width: 900px) { .action-cards { grid-template-columns: repeat(3, 1fr); } }
.action-cards li {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2rem 1.6rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
}
.action-cards h2 { font-size: 1.45rem; margin-bottom: .3rem; }
.action-cards p { color: var(--ink-soft); }
.action-cards .btn { margin-top: auto; min-width: 11rem; }

/* ---- Service pages: green title banner + text/photo columns (reference style) ---- */
.page-hero-green { background: #5A7F2B; border-radius: var(--radius); padding: 1.6rem 1.8rem; margin-top: 1.2rem; }
.page-hero-green h1 { color: #FFFFFF; margin: 0; font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
.svc-cols { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 900px) { .svc-cols { grid-template-columns: 3fr 2fr; gap: 3rem; } }
.svc-photo img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* ---- About page: text + photo columns ---- */
.about-cols { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .about-cols { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.about-photo img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* ---- Centered section headers ---- */
.section-head-center { text-align: center; max-width: 46rem; margin-inline: auto; }
.section-head-center p { margin-inline: auto; }
.section-head-center h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: .25rem; }
.section-sub { font-weight: 600; color: var(--ink-soft); margin-bottom: 1rem; }
.section-sub-light { color: #C9D8E6; }

/* ---- Sections ---- */
.section { padding-block: 3rem; }
.section-tint { background: var(--brand-tint); }
.section-navy { background: var(--navy); color: #E5ECF4; }
.section-navy h2 { color: #F4F8EE; }
.kicker { font: 600 .85rem var(--font-head); letter-spacing: .12em; text-transform: uppercase; color: var(--brand-deep); margin: 0 0 .4rem; }
.section-navy .kicker, .hero .kicker { color: #B9D98A; }

/* ---- Services grid ---- */
.svc-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1.5rem 0 0; padding: 0; list-style: none; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; display: flex; flex-direction: column; gap: .5rem;
}
.svc-card svg { color: var(--brand-deep); }
.svc-card h3 { margin: 0; }
.svc-card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.svc-card .svc-link { margin-top: auto; font-weight: 600; }
.svc-card--flat { background: transparent; box-shadow: none; }

/* ---- Hours table ---- */
.hours-table { border-collapse: collapse; min-width: min(100%, 24rem); }
.hours-table caption { text-align: left; font: 600 1rem var(--font-head); color: var(--navy); padding-bottom: .5rem; }
.hours-table th, .hours-table td { text-align: left; padding: .55rem .9rem .55rem 0; border-bottom: 1px solid var(--line); }
.hours-table th { font-weight: 600; color: var(--navy); }
.hours-closed { color: var(--ink-soft); }

/* ---- Trust strip ---- */
.trust-list { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin: 1.5rem 0 0; padding: 0; list-style: none; }
@media (min-width: 768px) { .trust-list { grid-template-columns: repeat(3, 1fr); } }
.trust-list li { display: flex; gap: .8rem; align-items: flex-start; }
.trust-list svg { color: var(--brand); flex: none; margin-top: .15rem; }
.trust-note { margin: 1.75rem auto 0; max-width: 46rem; text-align: center; }
.trust-note a { color: #B9D98A; font-weight: 600; }
.trust-list strong { font-family: var(--font-head); display: block; color: inherit; }

/* ---- FAQ ---- */
.faq-list { margin: 1.25rem 0 0; max-width: 46rem; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; padding: .9rem .2rem; font: 600 1.05rem var(--font-head);
  color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.3rem; color: var(--brand-deep); }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list .faq-a { padding: 0 .2rem 1rem; color: var(--ink-soft); }

/* ---- Spotlight accordion (homepage signature services) ---- */
.spotlight { display: flex; gap: .75rem; margin-top: 2.4rem; height: 29rem; }
.spotlight-panel { position: relative; flex: 1; overflow: hidden; border-radius: calc(var(--radius) * 1.5); text-decoration: none; color: #FFFFFF; box-shadow: 0 12px 32px rgba(14, 34, 56, .16); transition: flex .55s cubic-bezier(.4, 0, .2, 1); }
.spotlight-panel picture, .spotlight-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(185deg, rgba(21, 49, 81, .08) 30%, rgba(14, 34, 56, .88) 92%); transition: background .4s ease; }
.spotlight-panel:hover, .spotlight-panel:focus-visible { flex: 2.6; outline-offset: 3px; }
.spotlight-panel:hover::after, .spotlight-panel:focus-visible::after { background: linear-gradient(185deg, rgba(21, 49, 81, 0) 25%, rgba(14, 34, 56, .92) 90%); }
.spotlight-num { position: absolute; top: 1.2rem; left: 1.4rem; z-index: 1; font-family: var(--font-head); font-size: 2.6rem; line-height: 1; color: rgba(255, 255, 255, .55); -webkit-text-stroke: 1px rgba(255, 255, 255, .8); }
.spotlight-body { position: absolute; inset: auto 0 0; z-index: 1; padding: 1.6rem 1.5rem 1.7rem; }
.spotlight-body h3 { margin: 0; font-family: var(--font-head); font-size: 1.6rem; color: #FFFFFF; }
.spotlight-body h3::after { content: ""; display: block; width: 2.4rem; height: 3px; margin-top: .55rem; background: #A9CE6E; border-radius: 2px; transition: width .45s ease; }
.spotlight-panel:hover h3::after, .spotlight-panel:focus-visible h3::after { width: 4.6rem; }
.spotlight-body p, .spotlight-cta { margin: 0; max-width: 26rem; color: #E8EEF4; opacity: 0; transform: translateY(.5rem); transition: opacity .45s ease .12s, transform .45s ease .12s; }
.spotlight-body p { margin-top: .6rem; }
.spotlight-cta { display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem; font-weight: 600; color: #C4E08D; }
.spotlight-panel:hover .spotlight-body p, .spotlight-panel:hover .spotlight-cta,
.spotlight-panel:focus-visible .spotlight-body p, .spotlight-panel:focus-visible .spotlight-cta { opacity: 1; transform: none; }
.spotlight-arrow { display: inline-block; transition: transform .3s ease; }
.spotlight-panel:hover .spotlight-arrow, .spotlight-panel:focus-visible .spotlight-arrow { transform: translateX(.35rem); }
@media (max-width: 63.99rem) {
  .spotlight { flex-direction: column; height: auto; }
  .spotlight-panel { min-height: 15rem; }
  .spotlight-body p, .spotlight-cta { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .spotlight-panel, .spotlight-panel::after, .spotlight-body p, .spotlight-cta, .spotlight-arrow, .spotlight-body h3::after { transition: none; }
  .spotlight-body p, .spotlight-cta { opacity: 1; transform: none; }
}

/* ---- Affiliations band (homepage trust section) ---- */
.affil-band { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.2rem; }
.affil-badge { display: flex; flex-direction: column; align-items: center; gap: .2rem; text-align: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 1rem 1.6rem; min-width: 14rem; }
.affil-name { font-family: var(--font-head); font-size: 1.25rem; color: #FDFEFB; }
.affil-desc { font-size: .85rem; color: #C9D6E4; }
.affil-band-light { justify-content: flex-start; }
.affil-band-light .affil-badge { background: #F2F7EA; border-color: #D6E3C2; }
.affil-band-light .affil-name { color: #153151; }
.affil-band-light .affil-desc { color: #47555E; }

/* ---- Page hero band (interior) ---- */
.page-hero { background: var(--navy); color: #E5ECF4; position: relative; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero .wrap { position: relative; padding-block: 2.6rem; }
.page-hero h1 { color: #FDFEFB; margin: 0; }
.breadcrumbs { font-size: .88rem; margin: 0 0 .5rem; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; color: #B9C7D6; }
.breadcrumbs a { color: #D7E3C9; }
.breadcrumbs li + li::before { content: "/"; margin-right: .35rem; color: #7189A3; }
.crumbs-on-white { margin-top: 1.2rem; }
.crumbs-on-white .breadcrumbs { color: #4A5A6A; margin-bottom: .6rem; }
.crumbs-on-white .breadcrumbs a { color: #153151; }
.crumbs-on-white .breadcrumbs li + li::before { color: #6B7C8D; }
.crumbs-on-white + main .section:first-child, .crumbs-on-white ~ .page-hero-green { margin-bottom: 0; }
.page-hero-green { margin-top: .4rem; }

/* ---- Contact / info cards ---- */
.info-cols { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .info-cols { grid-template-columns: 1fr 1fr; } }
.contact-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .8rem; }
.contact-list li { display: flex; gap: .7rem; align-items: flex-start; }
.contact-list svg { color: var(--brand-deep); flex: none; margin-top: .2rem; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-deep); color: #C7D3DF; font-size: .95rem; }
.site-footer .wrap { padding-block: 2.6rem 1.4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer h2 { color: #EFF4E6; font-size: 1.02rem; margin-bottom: .6rem; }
.site-footer a { color: #DDE7EF; }
.site-footer a:hover { color: #C9E29F; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-logo { height: 44px; width: auto; background: #FCFDFA; border-radius: 8px; padding: 4px; }
.footer-logo-fallback { font: 700 1.2rem var(--font-head); color: var(--brand); }
.footer-legal { border-top: 1px solid #29455F; margin-top: 2rem; padding-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: .88rem; color: #9FB0C0; }
.footer-legal a { color: #C4D2DF; }

/* ---- Mobile drawer ---- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(14,34,56,.5); z-index: 190;
  opacity: 0; pointer-events: none; transition: opacity 150ms ease-out;
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200; width: 100%;
  background: var(--paper); transform: translateX(100%); transition: transform 200ms ease-out;
  overflow-y: auto; padding: 1rem 1.25rem 2rem; display: flex; flex-direction: column; gap: .4rem;
}
@media (min-width: 640px) { .drawer { width: 400px; box-shadow: -8px 0 30px rgba(14,34,56,.25); } }
.drawer.open { transform: translateX(0); }
.drawer-close { align-self: flex-end; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--navy); cursor: pointer; }
.drawer .logo-link img { height: 52px; }
.drawer-nav a {
  display: block; padding: .85rem .4rem; min-height: 48px; font: 600 1.05rem var(--font-head);
  color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--line);
}
.drawer-svc-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: .85rem .4rem; min-height: 48px; font: 600 1.05rem var(--font-head);
  color: var(--navy); background: none; border: 0; border-bottom: 1px solid var(--line); cursor: pointer;
}
.drawer-svc-list { display: none; margin: 0; padding: 0 0 .4rem; list-style: none; }
.drawer-svc-list.open { display: block; }
.drawer-svc-list a { display: block; padding: .7rem 1rem; min-height: 44px; color: var(--ink); text-decoration: none; font-weight: 500; }
.drawer-ctas { display: grid; gap: .6rem; margin-top: 1rem; }
.drawer-hours { margin-top: 1.2rem; font-size: .95rem; color: var(--ink-soft); }

/* ---- Sticky bottom CTA bar (mobile) ---- */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; height: 64px;
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(252,253,250,.94); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); display: none;
  grid-template-columns: 1fr 1fr; gap: .6rem; align-items: center; padding-inline: .8rem;
}
.cta-bar.show { display: grid; }
.cta-bar .btn { min-height: 48px; width: 100%; }
@media (min-width: 1024px) { .cta-bar, .cta-bar.show { display: none; } }
body.has-ctabar { padding-bottom: 76px; }
@media (min-width: 1024px) { body.has-ctabar { padding-bottom: 0; } }
body.drawer-open .cta-bar { display: none; }

/* misc */
.tel-strong { white-space: nowrap; font-weight: 600; }
.list-cols { columns: 1; padding-left: 1.2rem; }
@media (min-width: 640px) { .list-cols { columns: 2; column-gap: 3rem; } }
.notice {
  border: 1px solid var(--line); background: var(--brand-tint); border-radius: var(--radius);
  padding: 1rem 1.2rem; max-width: 46rem;
}
.svc-hero-img { border-radius: var(--radius); box-shadow: var(--shadow); }
.prose h2 { margin-top: 1.6em; }
.prose ul { max-width: 70ch; }
