*, *::before, *::after { box-sizing: border-box; }
:root {
  --brand: #94193E;
  --brand-dark: #7C1534;
  --brand2: #0096A8;
  --brand2-dark: #007A89;
  --ink: #1F2430;
  --ink-soft: #4A5162;
  --paper: #FFFFFF;
  --paper-warm: #FAF7F5;
  --line: #E6E1DE;
  --radius: 10px;
  --shadow: 0 2px 10px rgba(31,36,48,.08);
  --maxw: 1160px;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0; color: var(--ink); background: var(--paper);
  font-family: 'Public Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; line-height: 1.65;
}
h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; line-height: 1.2; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
a { color: var(--brand); }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { padding-left: 1.3em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Focus */
:focus-visible { outline: 3px solid var(--brand2-dark); outline-offset: 2px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--brand); color: #fff;
  padding: 12px 18px; border-radius: 0 0 8px 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 20px; border-radius: 8px; border: 2px solid transparent;
  font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; text-align: center;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-secondary { background: var(--brand2-dark); color: #fff; }
.btn-secondary:hover { background: #00636F; color: #fff; }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(0,0,0,.15); }
.btn-ghost:hover { background: rgba(255,255,255,.15); color: #fff; }
.hero .btn-ghost { border-color: var(--ink); color: var(--ink); background: #fff; }
.hero .btn-ghost:hover { background: var(--ink); color: #fff; }
.btn svg { flex: none; }

/* Top bar */
.topbar { background: var(--ink); color: #E8EAF0; font-size: .87rem; }
.topbar .container { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; min-height: 38px; padding-top: 4px; padding-bottom: 4px; }
.topbar a { color: #E8EAF0; text-decoration: none; }
.topbar a:hover { text-decoration: underline; color: #fff; }
.topbar .item { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { opacity: .75; }
.open-now { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.open-dot { width: 9px; height: 9px; border-radius: 50%; background: #9AA1B0; display: inline-block; }
.open-dot.is-open { background: #34C776; }
.open-dot.is-closed { background: #E4586B; }
.topbar .addr { display: none; }
@media (min-width: 768px) { .topbar .addr { display: inline-flex; } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; gap: 18px; min-height: 72px; }
.logo-link { display: inline-flex; align-items: center; flex: none; }
.logo-link img { height: 52px; width: auto; }
.primary-nav { display: none; }
.header-ctas { display: none; }
.header-call { display: inline-flex; margin-left: auto; }
.hamburger {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  background: none; border: 0; cursor: pointer; color: var(--ink); flex: none;
}
@media (min-width: 1024px) {
  .hamburger, .header-call { display: none; }
  .primary-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
  .primary-nav > ul { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 2px; }
  .primary-nav > ul > li { display: flex; align-items: center; }
  .primary-nav a, .primary-nav button {
    display: inline-flex; align-items: center; gap: 5px; padding: 10px 13px; border-radius: 8px;
    color: var(--ink); font-weight: 600; font-size: .97rem; text-decoration: none; background: none; border: 0; cursor: pointer; font-family: inherit;
  }
  .primary-nav a:hover, .primary-nav button:hover { background: var(--paper-warm); color: var(--brand); }
  .header-ctas { display: flex; gap: 10px; margin-left: auto; align-items: center; }
  .header-ctas .btn { min-height: 42px; padding: 8px 16px; font-size: .93rem; }
}
/* Services dropdown (desktop) */
.nav-dd { position: relative; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 270px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 8px; margin: 0; list-style: none; display: none; z-index: 110;
}
.nav-dd-menu.open { display: block; }
.nav-dd-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; width: 100%; }
.nav-dd-menu a svg { color: var(--brand); flex: none; }
.dd-caret { transition: transform .15s ease; }
[aria-expanded="true"] .dd-caret { transform: rotate(180deg); }

/* Drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(20,22,30,.5); z-index: 140; opacity: 0;
  pointer-events: none; transition: opacity .15s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 400px; background: #fff;
  z-index: 150; transform: translateX(100%); transition: transform .2s ease-out;
  overflow-y: auto; padding: 16px 20px 32px; display: flex; flex-direction: column; gap: 4px;
}
.drawer.open { transform: translateX(0); }
.drawer[hidden] { display: none; }
.drawer-close { align-self: flex-end; width: 48px; height: 48px; background: none; border: 0; cursor: pointer; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; }
.drawer .logo-link { margin-bottom: 8px; }
.drawer nav ul { list-style: none; margin: 0; padding: 0; }
.drawer nav a {
  display: flex; align-items: center; min-height: 48px; padding: 12px 8px; font-weight: 600;
  text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line);
}
.drawer nav a:hover { color: var(--brand); }
.drawer-sub-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 48px;
  padding: 12px 8px; font: inherit; font-weight: 600; color: var(--ink); background: none; border: 0;
  border-bottom: 1px solid var(--line); cursor: pointer;
}
.drawer-sub { display: none; }
.drawer-sub.open { display: block; }
.drawer-sub a { padding-left: 24px; font-weight: 500; }
.drawer-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.drawer-ctas .btn { width: 100%; }
.drawer-hours { margin-top: 18px; background: var(--paper-warm); border-radius: var(--radius); padding: 14px 16px; font-size: .93rem; }

/* Hero */
.hero { position: relative; background: var(--paper-warm); overflow: hidden; }
.hero-backdrop { position: absolute; inset: 0; background: url('/images/lorraine-walt.webp') center/cover no-repeat; filter: blur(14px) saturate(.5); opacity: .16; transform: scale(1.08); }
.hero-backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(250,247,244,.55) 0%, rgba(250,247,244,.85) 100%); }
.hero .container { position: relative; z-index: 1; padding-top: clamp(44px, 7vw, 90px); padding-bottom: clamp(44px, 7vw, 90px); max-width: var(--maxw); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); box-shadow: var(--shadow); margin: 0 0 18px; }
.hero-pill svg { color: var(--brand); }
.hero h1 { max-width: 18ch; }
.hero-highlight { background: linear-gradient(transparent 62%, rgba(0,150,168,.28) 62%); }
.hero .lede { font-size: 1.12rem; max-width: 52ch; color: var(--ink-soft); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-checks { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 26px 0 0; padding: 0; font-size: .95rem; font-weight: 600; color: var(--ink-soft); }
.hero-checks li { display: inline-flex; align-items: center; gap: 7px; }
.hero-checks svg { color: var(--teal, #0096A8); flex: none; }
.hero-figure { position: relative; }
.hero-photo { border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px rgba(38,10,20,.18); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge { position: absolute; background: #fff; border-radius: 16px; box-shadow: 0 12px 34px rgba(38,10,20,.16); font-weight: 700; color: var(--ink); }
.hero-badge-top { top: -18px; right: -10px; display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; font-size: .95rem; }
.hero-badge-star { color: #E8A33D; }
.hero-badge-card { left: -14px; bottom: -20px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; max-width: 86%; }
.hero-badge-card .hero-badge-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(0,150,168,.12); color: var(--teal, #0096A8); flex: none; }
.hero-badge-card strong { display: block; font-size: .95rem; }
.hero-badge-card small { display: block; font-weight: 500; color: var(--ink-soft); font-size: .82rem; }
.hero-badge-card a { color: inherit; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { margin-top: 10px; }
  .hero-badge-top { top: -14px; right: 6px; }
  .hero-badge-card { left: 8px; bottom: -16px; }
}

/* Sections */
.section { padding: clamp(44px, 7vw, 80px) 0; }
.section-warm { background: var(--paper-warm); }
.section-head { max-width: 640px; margin-bottom: 30px; }
.eyebrow { color: var(--brand2-dark); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; margin-bottom: 8px; }

/* Cards */
.card-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px;
}
.card .icon-badge {
  width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center;
  justify-content: center; background: #F6E7EC; color: var(--brand); margin-bottom: 6px;
}
.card h3 { margin: 0; }
.card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.card .card-link { margin-top: auto; padding-top: 10px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link:hover { text-decoration: underline; }
a.card-wrap { text-decoration: none; color: inherit; }
a.card-wrap:hover h3 { color: var(--brand); }

/* Hours table */
.hours-table { border-collapse: collapse; width: 100%; max-width: 460px; }
.hours-table th, .hours-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.hours-table th { font-weight: 600; }
.hours-table .closed { color: var(--ink-soft); }
.hours-table caption { text-align: left; font-family: 'Lora', Georgia, serif; font-size: 1.25rem; font-weight: 700; padding-bottom: 10px; }

/* Trust */
.trust-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-overlap { position: relative; z-index: 2; margin-top: clamp(-56px, -4vw, -28px); }
.trust-overlap .trust { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; box-shadow: 0 18px 44px rgba(38,10,20,.12); }
.hero.hero-split .container { padding-bottom: clamp(76px, 10vw, 130px); }
.trust { display: flex; gap: 14px; align-items: flex-start; }
.trust svg { color: var(--brand2-dark); flex: none; margin-top: 3px; }
.trust h3 { font-size: 1.05rem; margin-bottom: 2px; }
.trust p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* Testimonials */
.quote-carousel { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 18px; -webkit-overflow-scrolling: touch; scrollbar-color: var(--brand) transparent; }
.quote-carousel:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; }
blockquote.quote {
  margin: 0; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: var(--radius); padding: 22px; font-size: .97rem; color: var(--ink-soft); box-shadow: var(--shadow);
}
.quote-carousel blockquote.quote { flex: 0 0 min(360px, 85%); scroll-snap-align: start; display: flex; flex-direction: column; gap: 10px; }
.quote-stars { color: #E8A33D; letter-spacing: 2px; font-size: 1rem; }
blockquote.quote footer { margin-top: auto; font-size: .88rem; color: var(--ink-soft); }
blockquote.quote footer strong { color: var(--ink); }
blockquote.quote p { margin: 0; }

/* Page hero band */
.page-hero { background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.page-hero .container { padding-top: clamp(34px, 5vw, 60px); padding-bottom: clamp(34px, 5vw, 60px); }
.page-hero p.lede { color: var(--ink-soft); max-width: 62ch; font-size: 1.08rem; margin: 0; }
.breadcrumbs { font-size: .87rem; margin-bottom: 12px; color: var(--ink-soft); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line); }
.breadcrumbs a { color: var(--ink-soft); }

.service-hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.service-hero-img img { width: 100%; height: auto; object-fit: cover; }
.prose { max-width: 720px; }
.prose-wide { max-width: none; }
.prose ul li { margin-bottom: 4px; }
.two-col { display: grid; gap: 34px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .two-col { grid-template-columns: 3fr 2fr; } }
.aside-card { background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.aside-card .btn { width: 100%; margin-top: 10px; }
.aside-card ul { list-style: none; padding: 0; margin: 0 0 8px; }
.aside-card li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.aside-card li:last-child { border-bottom: 0; }
.aside-card li svg { color: var(--brand2-dark); flex: none; margin-top: 3px; }

/* Staff */
.staff-layout { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: start; }
.staff-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.staff-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.staff-card .role { color: var(--brand); font-weight: 700; margin-bottom: 12px; }
.staff-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.staff-photo img { display: block; width: 100%; height: auto; }
@media (min-width: 900px) {
  .staff-layout { grid-template-columns: minmax(320px, 5fr) 7fr; }
  .staff-photo { position: sticky; top: 96px; }
}

/* Contact */
.contact-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-list svg { color: var(--brand); flex: none; margin-top: 4px; }
.map-embed { border: 0; width: 100%; height: 380px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* CTA band */
.cta-band { background: linear-gradient(105deg, var(--brand) 0%, #6E1230 100%); color: #fff; }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding-top: 44px; padding-bottom: 44px; }
.cta-band h2 { color: #fff; margin: 0; }
.cta-band p { color: #F2DDE4; margin: 4px 0 0; }
.cta-band .btn { background: #fff; color: var(--brand); }
.cta-band .btn:hover { background: #F6E7EC; color: var(--brand-dark); }
.cta-band-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.cta-band .btn.cta-band-call { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.75); }
.cta-band .btn.cta-band-call:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Footer */
.site-footer { background: #23161B; color: #D9CFD3; font-size: .95rem; }
.site-footer .container { padding-top: 54px; padding-bottom: 28px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.site-footer h2 { color: #fff; font-size: 1.02rem; font-family: 'Public Sans', system-ui, sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.site-footer a { color: #EDE4E8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 14px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.14); margin-top: 38px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; font-size: .87rem; color: #B9A9B1; }
.footer-legal a { color: #D9CFD3; }

/* Sticky bottom CTA bar (mobile) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; display: none;
  grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
}
.sticky-cta.visible { display: grid; }
.sticky-cta .btn { width: 100%; min-height: 48px; }
@media (min-width: 1024px) { .sticky-cta, .sticky-cta.visible { display: none; } }
body.has-sticky-cta { padding-bottom: 76px; }
@media (min-width: 1024px) { body.has-sticky-cta { padding-bottom: 0; } }

body.drawer-open .sticky-cta { display: none; }

/* 404 */
.page-404 { text-align: center; padding: 90px 20px; }

/* utility */
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.badge-note { font-size: .9rem; color: var(--ink-soft); }
.checklist { list-style: none; padding: 0; columns: 1; }
@media (min-width: 640px) { .checklist { columns: 2; column-gap: 34px; } }
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; break-inside: avoid; }
.checklist svg { color: var(--brand2-dark); flex: none; margin-top: 4px; }

/* Footer logo */
.footer-logo { display: inline-block; margin: 0 0 10px; }
.footer-logo img { height: 48px; width: auto; display: block; }

/* Transfer form embed */
.transfer-embed { margin-top: 26px; min-height: 480px; }
.transfer-embed iframe { display: block; width: 100%; border: 0; }

/* Staff photo grid */
.staff-people-grid{display:grid;grid-template-columns:1fr;gap:26px}
.staff-card-photo{background:#fff;border:1px solid var(--line, #eee);border-radius:16px;padding:22px;box-shadow:0 4px 18px rgba(0,0,0,.05)}
.staff-headshot{border-radius:14px;overflow:hidden;aspect-ratio:4/4.6}
.staff-headshot img{width:100%;height:100%;object-fit:cover;display:block}
@media (min-width: 760px){
  .staff-card-photo{display:grid;grid-template-columns:260px 1fr;gap:26px;align-items:start}
  .staff-card-photo .staff-headshot{grid-row:1/span 4;margin:0}
  .staff-card-photo h3{margin-top:0}
}

/* In-store photo gallery */
.photo-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px;margin:22px 0}
.photo-gallery img{width:100%;height:100%;object-fit:cover;border-radius:12px;display:block;aspect-ratio:4/3}

/* Keep header nav & CTA labels on one line */
.primary-nav a, .primary-nav button{white-space:nowrap}
.header-ctas .btn{white-space:nowrap}
@media (min-width: 1024px) and (max-width: 1240px){
  .header-ctas .btn{padding-left:14px;padding-right:14px;font-size:.92rem}
}

/* For Providers header button */
.btn-ghost-dark{border:1px solid var(--line,#ddd);color:var(--ink,#222);background:transparent}
.btn-ghost-dark:hover{border-color:var(--brand,#94193E);color:var(--brand,#94193E)}

/* Header density with three CTA buttons */
@media (min-width: 1024px) and (max-width: 1420px){
  .header-ctas{gap:8px}
  .header-ctas .btn{padding-left:11px;padding-right:11px;font-size:.86rem}
  .primary-nav ul{gap:14px}
  .site-header .container{gap:12px}
  .logo-link img{height:44px}
  .header-ctas .btn svg{display:none}
}

/* Slideshow */
.slideshow{position:relative;border-radius:14px;overflow:hidden;aspect-ratio:4/3}
.slideshow .slide{position:absolute;inset:0;opacity:0;transition:opacity .6s ease}
.slideshow .slide.is-active{opacity:1}
.slideshow .slide img{width:100%;height:100%;object-fit:cover;display:block}
.slide-btn{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border-radius:50%;border:0;background:rgba(255,255,255,.9);color:var(--ink,#222);font-size:1.5rem;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 10px rgba(0,0,0,.18)}
.slide-btn:hover{background:#fff}
.slide-prev{left:12px}
.slide-next{right:12px}

/* Audit fixes (no visual change) */
html, body { overflow-x: clip; }
[data-cmp-policy] { min-height: 60vh; }
.topbar a { padding: 12px 4px; margin: -12px -4px; }
@media (max-width: 419px) {
  .logo-link img { height: 42px; }
  .site-header .container { gap: 10px; }
  .header-call { font-size: .85rem; }
}

/* Testimonials heading: keep on one line */
#testimonials-heading { white-space: nowrap; font-size: clamp(1rem, 3.9vw, 2.1rem); }

/* Footer Facebook icon link */
.footer-fb { display: inline-flex; align-items: center; gap: 8px; }
.footer-fb svg { flex: none; }

/* PocketRx app page */
.app-page-image img { display: block; background: #f4f4f4; }
.app-download-actions { display: grid; gap: 12px; margin: 20px 0; }
.app-download-actions .btn { width: 100%; justify-content: center; }
