/* Health Near Me design system, 2026-09-18.
   Ink for actions, teal for accents and figures, light headings with tight
   tracking, one card radius, one shadow, two surfaces. Loaded last so it wins
   over the bought template's stylesheet. */

:root{
    --ink:#112231; --slate:#35647C; --teal:#2bb3a3; --teal-dark:#1d7e73;
    --mist:#e9f4f2; --canvas:#f7f5f1; --hair:#e3e9ee; --muted:#5f7183; --body:#2c4053;
    --r:24px; --r-sm:16px; --r-row:14px;
    --shadow:0 8px 24px rgba(17,34,49,.08); --shadow-lift:0 14px 36px rgba(17,34,49,.14);
    --nav-h:78px;
}

/* ---------- base ---------- */
html{ scroll-behavior:smooth; }
body.hnm{ margin:0; font-family:'Jost',system-ui,-apple-system,sans-serif; color:var(--ink);
    background:#fff; line-height:1.6; font-size:16px; -webkit-font-smoothing:antialiased; }
.hnm *{ box-sizing:border-box; }
.hnm img{ max-width:100%; height:auto; }
.hnm a{ color:inherit; text-decoration:none; }
.hnm a:hover{ color:var(--teal-dark); }
.hnm .wrap{ max-width:1240px; margin:0 auto; padding:0 24px; }
.hnm h1,.hnm h2,.hnm h3,.hnm h4{ margin:0 0 14px; color:var(--ink); }
.hnm h1{ font-weight:300; font-size:52px; line-height:1.1; letter-spacing:-1.8px; }
.hnm h2{ font-weight:300; font-size:42px; line-height:1.12; letter-spacing:-1.3px; }
.hnm h3{ font-weight:400; font-size:26px; letter-spacing:-.7px; }
.hnm h4{ font-weight:500; font-size:19px; letter-spacing:-.2px; }
.hnm p{ margin:0 0 16px; }
.hnm .lead{ font-size:18px; color:var(--body); }
.hnm .muted{ color:var(--muted); }
.hnm .kicker{ font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--teal); font-weight:600; margin:0 0 8px; }

/* ---------- buttons (one shape, four variants) ---------- */
.hnm .btn, .hnm .theme-btn-one, .hnm .theme-btn-two{
    display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:48px; padding:0 26px;
    border-radius:999px; font-size:15px; font-weight:600; letter-spacing:-.3px; border:1px solid transparent;
    cursor:pointer; transition:background .15s, color .15s, transform .12s, box-shadow .15s; text-align:center; }
.hnm .btn:active, .hnm .theme-btn-one:active{ transform:scale(.99); }
.hnm .btn-ink, .hnm .theme-btn-one{ background:var(--ink); color:#f6f2ec; }
.hnm .btn-ink:hover, .hnm .theme-btn-one:hover{ background:var(--slate); color:#f6f2ec; }
.hnm .btn-pale{ background:rgba(255,255,255,.8); color:var(--ink); }
.hnm .btn-mist, .hnm .theme-btn-two{ background:var(--mist); color:var(--ink); }
.hnm .btn-mist:hover, .hnm .theme-btn-two:hover{ background:#dceeeb; color:var(--ink); }
.hnm .btn-outline{ border-color:#c7d2da; color:var(--ink); background:transparent; }
.hnm .btn-outline:hover{ background:var(--canvas); }
.hnm .btn .ar, .hnm .btn i{ color:var(--teal); font-size:13px; }
.hnm .btn-ink .ar, .hnm .theme-btn-one i{ color:var(--teal); }
.hnm .btn-lg{ min-height:54px; padding:0 32px; font-size:16px; }
.hnm .btn-block{ width:100%; }

/* ---------- header ---------- */
.hnm .site-nav{ position:sticky; top:0; z-index:60; padding:16px 0; transition:background .25s, box-shadow .25s, padding .25s; }
.hnm .site-nav.solid{ background:rgba(255,255,255,.9); backdrop-filter:blur(14px); box-shadow:0 1px 0 rgba(17,34,49,.07); padding:10px 0; }
.hnm .site-nav .inner{ display:flex; align-items:center; gap:18px; }
.hnm .site-nav .brand img{ height:38px; width:auto; display:block; }
.hnm .pillnav{ flex:1; display:flex; justify-content:center; }
.hnm .pillnav ul{ display:flex; gap:4px; list-style:none; margin:0; padding:6px; background:rgba(255,255,255,.72);
    backdrop-filter:blur(12px); border-radius:999px; box-shadow:var(--shadow); }
.hnm .site-nav.solid .pillnav ul{ background:transparent; box-shadow:none; }
.hnm .pillnav a{ display:block; padding:9px 15px; border-radius:999px; font-size:14px; font-weight:500; color:#37485c; white-space:nowrap; }
.hnm .pillnav a.on, .hnm .pillnav a:hover{ background:#fff; color:var(--ink); box-shadow:0 1px 4px rgba(17,34,49,.08); }
.hnm .navright{ display:flex; align-items:center; gap:14px; }
.hnm .navright .login{ font-size:14px; font-weight:500; color:#37485c; white-space:nowrap; }
.hnm .burger{ display:none; width:46px; height:46px; border-radius:50%; border:0; background:var(--mist); color:var(--ink); font-size:17px; }

/* ---------- mobile menu sheet ---------- */
.hnm .sheet-back{ position:fixed; inset:0; background:rgba(17,34,49,.45); opacity:0; pointer-events:none; transition:opacity .25s; z-index:70; }
.hnm .sheet{ position:fixed; left:0; right:0; bottom:0; z-index:71; background:#fff; border-radius:26px 26px 0 0;
    padding:14px 20px calc(24px + env(safe-area-inset-bottom)); transform:translateY(102%); transition:transform .28s ease, visibility .28s; max-height:82vh; overflow:auto; visibility:hidden; }
.hnm.menu-open .sheet-back{ opacity:1; pointer-events:auto; }
.hnm.menu-open .sheet{ transform:translateY(0); visibility:visible; }
.hnm .sheet .grab{ width:44px; height:5px; border-radius:3px; background:#d7e0e6; margin:0 auto 16px; }
.hnm .sheet a.item{ display:flex; align-items:center; justify-content:space-between; padding:14px 4px; border-bottom:1px solid var(--hair); font-size:17px; font-weight:500; }
.hnm .sheet a.item:last-of-type{ border-bottom:0; }

/* ---------- page head and bands ---------- */
.hnm .pagehead{ background:var(--canvas); padding:calc(var(--nav-h) + 46px) 0 58px; margin-top:calc(var(--nav-h) * -1); }
.hnm .pagehead h1{ max-width:20ch; }
.hnm .pagehead p{ font-size:19px; color:var(--body); max-width:62ch; margin:0; }
.hnm .band{ padding:88px 0; }
.hnm .band.tight{ padding:56px 0; }
.hnm .band.mist{ background:var(--mist); }
.hnm .band.canvas{ background:var(--canvas); }
.hnm .split{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hnm .split.top{ align-items:flex-start; }
.hnm .split img{ border-radius:var(--r); }

/* ---------- cards ---------- */
.hnm .cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:start; }
.hnm .cards.two{ grid-template-columns:repeat(2,1fr); }
.hnm .cards.four{ grid-template-columns:repeat(4,1fr); }
.hnm .card{ background:#fff; border:1px solid var(--hair); border-radius:var(--r); padding:26px; box-shadow:var(--shadow);
    display:flex; flex-direction:column; transition:transform .25s, box-shadow .25s; }
.hnm .card.hover:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lift); }
.hnm .card .acts{ margin-top:auto; padding-top:18px; display:flex; gap:10px; flex-wrap:wrap; }
.hnm .cardicon{ width:58px; height:58px; border-radius:17px; display:flex; align-items:center; justify-content:center;
    background:rgba(43,179,163,.12); color:var(--teal); font-size:22px; margin-bottom:16px; }
.hnm .cardicon.violet{ background:rgba(118,110,235,.12); color:#6c63e0; }

/* ---------- row lists ---------- */
.hnm .rowlist{ list-style:none; padding:0; margin:0 0 18px; }
.hnm .rowlist li{ margin-bottom:6px; }
.hnm .rowlist a, .hnm .rowlist .rowitem{ display:flex; align-items:center; gap:12px; padding:11px 13px; border-radius:var(--r-row);
    background:var(--canvas); font-size:15px; font-weight:500; transition:background .2s, transform .2s; }
.hnm .rowlist a:hover{ background:var(--mist); transform:translateX(3px); color:var(--ink); }
.hnm .rowlist .ico{ width:32px; height:32px; flex:0 0 32px; border-radius:10px; display:flex; align-items:center; justify-content:center;
    background:rgba(43,179,163,.12); color:var(--teal); font-size:13px; }
.hnm .rowlist .ico.violet{ background:rgba(118,110,235,.12); color:#6c63e0; }
.hnm .rowlist .label{ flex:1; }
.hnm .rowlist .meta{ font-size:13px; color:var(--muted); white-space:nowrap; }
.hnm .rowlist .chev{ color:#a8b6c4; font-size:11px; }

/* ---------- steps, stats, trust ---------- */
.hnm .steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.hnm .step{ border-top:1px solid var(--hair); padding-top:22px; }
.hnm .step img{ width:54px; height:54px; margin-bottom:14px; }
.hnm .step h3{ font-weight:300; font-size:30px; letter-spacing:-.8px; }
.hnm .step p{ color:var(--muted); font-size:15px; margin:0; }
.hnm .stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.hnm .stat b{ display:block; font-weight:300; font-size:44px; letter-spacing:-1.4px; color:var(--teal); line-height:1.1; }
.hnm .stat span{ font-size:14px; color:var(--muted); }
.hnm .trust{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.hnm .trust .t{ display:flex; gap:12px; align-items:flex-start; }
.hnm .trust i{ color:var(--teal); font-size:18px; margin-top:3px; }
.hnm .trust b{ display:block; font-weight:600; font-size:16px; }
.hnm .trust span{ font-size:14px; color:var(--muted); }

/* ---------- faq, prose, receipt, chips ---------- */
.hnm .faq{ border-top:1px solid var(--hair); }
.hnm .faq .q{ border-bottom:1px solid var(--hair); padding:22px 0; }
.hnm .faq .q h3, .hnm .faq .q h4{ margin:0 0 6px; font-size:18px; font-weight:600; letter-spacing:0; }
.hnm .faq .q p{ margin:0; color:var(--muted); font-size:15px; max-width:74ch; }
.hnm .prose{ max-width:74ch; font-size:17px; }
.hnm .prose h3{ margin-top:34px; }
.hnm .prose ul{ padding-left:20px; }
.hnm .prose li{ margin-bottom:8px; }
.hnm .receipt{ list-style:none; padding:0; margin:0; }
.hnm .receipt li{ display:flex; justify-content:space-between; gap:20px; border-bottom:1px dashed var(--hair); padding:10px 0; font-size:15px; }
.hnm .receipt li.total{ border-bottom:0; font-size:21px; font-weight:600; padding-top:14px; }
.hnm .receipt .v{ font-variant-numeric:tabular-nums; }
.hnm .chips{ display:flex; gap:8px; flex-wrap:wrap; }
.hnm .chip{ font-size:12px; font-weight:600; padding:6px 12px; border-radius:999px;
    background:rgba(43,179,163,.10); color:var(--teal-dark); border:1px solid rgba(43,179,163,.2); }
.hnm .times{ display:flex; gap:8px; flex-wrap:wrap; }
.hnm .time{ min-height:36px; display:inline-flex; align-items:center; padding:0 15px; border-radius:999px; background:var(--mist); font-size:13px; font-weight:600; }

/* ---------- articles ---------- */
.hnm .article-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.hnm .acard img{ width:100%; height:200px; object-fit:cover; border-radius:18px; }
.hnm .acard h3{ font-size:21px; margin:14px 0 6px; letter-spacing:-.4px; }
.hnm .acard p{ color:var(--muted); font-size:15px; margin:0; }
.hnm .acard .cat{ font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--teal); font-weight:600; }

/* ---------- forms ---------- */
.hnm .field{ margin-bottom:18px; }
.hnm .field label{ display:block; font-size:14px; font-weight:600; margin-bottom:7px; }
.hnm input[type=text], .hnm input[type=email], .hnm input[type=tel], .hnm input[type=date], .hnm input[type=number], .hnm select, .hnm textarea{
    width:100%; min-height:52px; padding:13px 16px; font-size:16px; font-family:inherit; color:var(--ink);
    background:#fff; border:1px solid var(--hair); border-radius:var(--r-sm); transition:border-color .15s, box-shadow .15s; }
.hnm textarea{ min-height:130px; resize:vertical; }
.hnm input:focus, .hnm select:focus, .hnm textarea:focus{ outline:none; border-color:var(--teal); box-shadow:0 0 0 3px rgba(43,179,163,.16); }
.hnm .field-error{ display:block; color:#b23b30; font-size:14px; margin:6px 0 0; }
.hnm .field-note{ display:block; color:var(--muted); font-size:14px; margin:6px 0 0; }
.hnm .notice{ border-radius:var(--r-sm); padding:14px 18px; font-size:15px; margin-bottom:20px; }
.hnm .notice.ok{ background:var(--mist); color:var(--teal-dark); }
.hnm .notice.bad{ background:#fdeceb; color:#b23b30; }

/* ---------- emergency and footer ---------- */
.hnm .emergency{ background:var(--ink); color:#dfe9ee; border-radius:var(--r); padding:34px 38px; display:grid;
    grid-template-columns:1fr 1fr; gap:34px; align-items:start; }
.hnm .emergency h3{ color:#fff; font-size:22px; font-weight:500; letter-spacing:-.3px; margin:0 0 10px; }
.hnm .emergency .line{ display:flex; gap:12px; align-items:flex-start; font-size:15px; line-height:1.6; }
.hnm .emergency .line i{ color:#7fe3d6; font-size:17px; margin-top:4px; }
.hnm .emergency p{ margin:0 0 16px; font-size:15px; color:#b7c7d1; }
@media (max-width:767px){ .hnm .emergency{ grid-template-columns:1fr; gap:26px; padding:26px 22px; } }
.hnm .emergency b{ color:#fff; }
.hnm .emergency a:not(.btn){ color:#7fe3d6; font-weight:600; }
.hnm footer.site{ background:var(--ink); color:#cfdce3; padding:70px 0 40px; }
.hnm footer.site h4{ color:#fff; font-weight:500; font-size:17px; margin:0 0 12px; }
.hnm footer.site .cols{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:36px; }
.hnm footer.site a{ display:block; padding:4px 0; font-size:15px; color:#cfdce3; }
.hnm footer.site a:hover{ color:#fff; }
.hnm footer.site .fine{ border-top:1px solid rgba(255,255,255,.12); margin-top:40px; padding-top:20px; font-size:13px; color:#8fa3ae; display:flex; gap:18px; flex-wrap:wrap; justify-content:space-between; }

/* ---------- bottom bar on phones ---------- */
.hnm .tabbar{ display:none; }

@media (max-width:991px){
    .hnm h1{ font-size:36px; letter-spacing:-1.1px; }
    .hnm h2{ font-size:31px; letter-spacing:-.9px; }
    .hnm h3{ font-size:23px; }
    .hnm .pillnav, .hnm .navright .login, .hnm .navright .btn{ display:none; }
    .hnm .burger{ display:inline-flex; align-items:center; justify-content:center; margin-left:auto; }
    .hnm .site-nav .inner{ gap:10px; }
    .hnm .pagehead{ padding:calc(var(--nav-h) + 24px) 0 40px; }
    .hnm .band{ padding:54px 0; }
    .hnm .split, .hnm .cards, .hnm .cards.two, .hnm .cards.four, .hnm .steps, .hnm .article-cards{ grid-template-columns:1fr; gap:26px; }
    .hnm .stats, .hnm .trust{ grid-template-columns:1fr 1fr; gap:26px; }
    .hnm footer.site .cols{ grid-template-columns:1fr 1fr; }
    .hnm .tabbar{ display:flex; position:fixed; left:0; right:0; bottom:0; z-index:55; background:rgba(255,255,255,.96);
        backdrop-filter:blur(12px); border-top:1px solid var(--hair); padding:8px 6px calc(8px + env(safe-area-inset-bottom)); }
    .hnm .tabbar a{ flex:1; text-align:center; font-size:11px; font-weight:500; color:#7a8aa0; }
    .hnm .tabbar a i{ display:block; font-size:18px; margin-bottom:4px; }
    .hnm .tabbar a.on, .hnm .tabbar a.on i{ color:var(--teal); }
    .hnm body, .hnm{ padding-bottom:0; }
    .hnm main{ padding-bottom:calc(74px + env(safe-area-inset-bottom)); }
}
@media (max-width:359px){ .hnm h1{ font-size:31px; } }

/* article body — classes used inside the post partials */
.hnm .icon-Arrow-Right::before{ content:"\2192"; font-family:inherit; font-style:normal; }
.hnm .prose .list{ list-style:none; padding:0; margin:0 0 22px; }
.hnm .prose .list li{ position:relative; padding-left:28px; margin-bottom:10px; }
.hnm .prose .list li::before{ content:"\2022"; position:absolute; left:8px; top:-1px; color:var(--teal); font-size:20px; line-height:1.4; }
.hnm .post-toc{ background:var(--mist); border-radius:var(--r); padding:22px 26px; margin:26px 0; }
.hnm .post-toc h4{ font-size:16px; font-weight:600; margin:0 0 10px; }
.hnm .post-toc ul{ margin:0; padding-left:18px; }
.hnm .post-toc li{ margin-bottom:6px; }
.hnm .post-toc a{ color:var(--slate); }
.hnm .post-toc a:hover{ color:var(--teal-dark); }
.hnm .post-cta{ background:var(--canvas); border-radius:var(--r); padding:26px; margin:30px 0; }
.hnm .post-cta p{ margin:0 0 16px; }
.hnm .post-note{ color:var(--muted); font-size:14px; border-top:1px solid var(--hair); padding-top:16px; margin-top:30px; }
.hnm .pagehead p.post-byline, .hnm .post-byline{ color:var(--muted); font-size:15px; margin:0 0 20px; }
.hnm .post-byline a{ color:var(--teal-dark); }
.hnm .split.article{ grid-template-columns:minmax(0,2fr) minmax(0,1fr); gap:56px; }
.hnm .prose img.lead{ border-radius:var(--r); margin-bottom:28px; width:100%; }
.hnm .aside .card{ box-shadow:none; border:1px solid var(--hair); }
.hnm .btn.full{ width:100%; justify-content:center; }
.hnm .asidehead{ font-size:18px; margin:30px 0 10px; }
.hnm .asidelist{ list-style:none; padding:0; margin:0 0 26px; }
.hnm .asidelist a{ display:block; padding:12px 0; border-bottom:1px solid var(--hair); font-size:15px; color:var(--ink); }
.hnm .asidelist a:hover{ color:var(--teal-dark); }
.hnm .asidelist .muted{ display:block; font-size:13px; margin-top:2px; }
@media (max-width:991px){ .hnm .split.article{ grid-template-columns:1fr; gap:36px; } }
.hnm .eyebrow{ display:block; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--teal-dark); font-weight:600; margin-bottom:10px; }
.hnm .profile{ display:grid; grid-template-columns:220px minmax(0,1fr); gap:28px; align-items:start; margin-bottom:34px; }
.hnm .profile img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:var(--r); }
.hnm .facts{ margin:0 0 16px; }
.hnm .facts > div{ display:flex; gap:10px; padding:8px 0; border-bottom:1px solid var(--hair); font-size:15px; }
.hnm .facts dt{ color:var(--muted); min-width:180px; }
.hnm .facts dd{ margin:0; }
.hnm .pricelist{ list-style:none; padding:0; margin:0 0 18px; }
.hnm .pricelist li{ display:flex; justify-content:space-between; gap:14px; padding:10px 0; border-bottom:1px solid var(--hair); font-size:15px; }
.hnm .muted.small{ font-size:14px; margin:12px 0 0; }
.hnm .rowlist .price{ font-weight:600; white-space:nowrap; }
.hnm .rowlist .sub{ display:block; color:var(--muted); font-size:14px; font-weight:400; margin-top:2px; }
@media (max-width:640px){ .hnm .profile{ grid-template-columns:1fr; } .hnm .profile img{ max-width:220px; } .hnm .facts > div{ flex-direction:column; gap:2px; } }
.hnm .steps.plain{ grid-template-columns:repeat(2,1fr); gap:28px 40px; }
.hnm .steps.plain .step h3{ font-size:22px; font-weight:500; letter-spacing:-.4px; margin:0 0 6px; }
.hnm .step .n{ display:inline-flex; width:28px; height:28px; border-radius:50%; background:var(--mist); color:var(--teal-dark);
    align-items:center; justify-content:center; font-size:14px; font-weight:600; margin-bottom:12px; }
@media (max-width:767px){ .hnm .steps.plain{ grid-template-columns:1fr; } }
.hnm .panelband{ padding-top:calc(var(--nav-h) + 40px); margin-top:calc(var(--nav-h) * -1); min-height:70vh; }
.hnm .panel{ max-width:660px; margin:0 auto; background:#fff; border-radius:var(--r); padding:40px; box-shadow:var(--shadow); }
.hnm .panel h1{ font-size:34px; margin-bottom:18px; }
.hnm .panel > .btn{ margin-top:8px; }
.hnm .panelblock{ margin-top:26px; padding-top:24px; border-top:1px solid var(--hair); }
.hnm .panelblock h3{ font-size:20px; margin-bottom:6px; }
.hnm .statusmark{ width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:20px; }
.hnm .statusmark.ok{ background:var(--mist); color:var(--teal-dark); }
.hnm .statusmark.wait{ background:#fff4e0; color:#b9791a; }
.hnm .statusmark.bad{ background:#fdeceb; color:#b23b30; }
.hnm .btn-danger{ background:#fdeceb; color:#b23b30; }
.hnm .btn-danger:hover{ background:#b23b30; color:#fff; }
.hnm .reference{ margin:26px 0 0; padding-top:18px; border-top:1px solid var(--hair); font-size:14px; color:var(--muted); }
.hnm .reference span{ font-weight:600; color:var(--ink); }
@media (max-width:640px){ .hnm .panel{ padding:26px 22px; border-radius:var(--r-sm); } .hnm .panel h1{ font-size:28px; } }
/* booking flow and legal pages share the Livewire layout */
.hnm .band.flow{ padding-top:46px; }
/* no fixed bottom bar inside the booking funnel: it overlapped the pay button */
.hnm.no-tabbar .tabbar{ display:none !important; }
@media (max-width:991px){ .hnm.no-tabbar main{ padding-bottom:0 !important; } }

/* ---------- booking flow (Livewire) ---------- */
.hnm .booking-flow{ display:grid; grid-template-columns:minmax(0,1.9fr) minmax(0,1fr); gap:40px; align-items:start; }
.hnm .bk-main{ min-width:0; background:#fff; border:1px solid var(--hair); border-radius:var(--r); padding:34px; }
.hnm .bk-main > h2{ font-size:28px; margin-bottom:6px; }
.hnm .bk-step{ padding-top:26px; margin-top:26px; border-top:1px solid var(--hair); }
.hnm .bk-step:first-of-type{ border-top:0; padding-top:0; margin-top:18px; }
.hnm .step-label{ font-size:17px; font-weight:600; margin-bottom:14px; }
.hnm .step-label small{ display:block; font-size:14px; font-weight:400; color:var(--muted); margin-top:3px; }
.hnm .bk-days{ display:flex; gap:10px; overflow-x:auto; padding-bottom:6px; -webkit-overflow-scrolling:touch; }
.hnm .bk-day{ min-width:76px; flex:0 0 auto; padding:12px 8px; text-align:center; background:var(--canvas); border:1px solid transparent;
    border-radius:var(--r-row); cursor:pointer; transition:background .2s, border-color .2s; }
.hnm .bk-day:hover{ border-color:var(--teal); }
.hnm .bk-day .d{ display:block; font-size:13px; color:var(--muted); }
.hnm .bk-day .n{ display:block; font-size:21px; font-weight:600; color:var(--ink); line-height:1.3; }
.hnm .bk-day .m{ display:block; font-size:13px; color:var(--muted); }
.hnm .bk-day.is-active{ background:var(--ink); border-color:var(--ink); }
.hnm .bk-day.is-active .d, .hnm .bk-day.is-active .n, .hnm .bk-day.is-active .m{ color:#f6f2ec; }
.hnm .bk-times{ display:grid; grid-template-columns:repeat(auto-fill,minmax(88px,1fr)); gap:10px; }
.hnm .bk-time{ min-height:48px; border-radius:var(--r-row); background:var(--mist); border:1px solid transparent; font-size:15px; font-weight:600;
    color:var(--ink); cursor:pointer; transition:background .2s, border-color .2s; }
.hnm .bk-time:hover{ border-color:var(--teal); }
.hnm .bk-time.is-active{ background:var(--ink); color:#f6f2ec; border-color:var(--ink); }
.hnm .bk-choices{ display:grid; gap:12px; }
.hnm .bk-choice{ display:flex; width:100%; text-align:left; background:#fff; border:1px solid var(--hair); border-radius:var(--r-sm);
    padding:18px 20px; cursor:pointer; transition:border-color .2s, background .2s, box-shadow .2s; }
.hnm .bk-choice:hover{ border-color:var(--teal); }
.hnm .bk-choice.is-active{ border-color:var(--teal); background:var(--mist); box-shadow:0 0 0 2px rgba(43,179,163,.25); }
.hnm .bk-choice .nm{ display:block; font-weight:600; color:var(--ink); }
.hnm .bk-avatar{ display:flex; align-items:center; justify-content:center; width:54px; height:54px; flex:0 0 54px; border-radius:50%;
    overflow:hidden; background:var(--mist); color:var(--teal-dark); font-weight:700; }
.hnm .bk-avatar img{ width:100%; height:100%; object-fit:cover; }
.hnm .bk-price{ color:var(--teal-dark); font-weight:600; }
.hnm .bk-modes{ display:block; margin-top:6px; }
.hnm .bk-mode{ display:inline-block; font-size:12px; line-height:22px; font-weight:600; padding:0 10px; border-radius:999px;
    background:rgba(43,179,163,.10); color:var(--teal-dark); border:1px solid rgba(43,179,163,.2); margin:0 6px 4px 0; }
.hnm .bk-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 18px; }
.hnm .bk-grid .field.wide{ grid-column:1 / -1; }
.hnm .bk-sub{ border-top:1px solid var(--hair); padding-top:24px; margin-top:8px; }
.hnm .bk-sub h3{ font-size:18px; margin-bottom:18px; }
.hnm .radio-row{ display:flex; gap:22px; flex-wrap:wrap; margin-top:4px; }
.hnm .radio-row label{ display:flex; align-items:center; gap:8px; font-size:15px; font-weight:400; margin:0; cursor:pointer; }
.hnm .radio-row input[type=radio]{ width:auto; height:auto; min-height:0; accent-color:#2bb3a3; }
.hnm .bk-alert{ background:#fdeceb; border:1px solid #f6c9c4; color:#b23b30; border-radius:var(--r-sm); padding:16px 20px; font-size:15px; margin-bottom:22px; }
.hnm .bk-alert-danger{ background:#fff; border:2px solid #e2483c; color:#c62828; font-weight:600; }
.hnm .bk-terms{ border:1px solid var(--hair); border-radius:var(--r-sm); padding:14px 18px; margin-bottom:22px; }
.hnm .bk-terms summary{ cursor:pointer; font-weight:600; font-size:15px; }
.hnm .bk-terms[open] summary{ margin-bottom:12px; }
.hnm .bk-consent{ display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; font-size:15px; cursor:pointer; }
.hnm .bk-consent input[type=checkbox]{ width:22px; height:22px; min-height:0; flex:0 0 22px; margin-top:2px; accent-color:#2bb3a3; cursor:pointer; }
.hnm .bk-consent input[type=checkbox]:focus-visible{ outline:2px solid var(--teal); outline-offset:3px; }
.hnm .bk-pay-line{ font-size:15px; font-weight:600; text-align:center; margin-bottom:14px; }
.hnm .pay-btn{ width:100%; justify-content:center; border:none; }
.hnm .bk-side{ min-width:0; position:sticky; top:calc(var(--nav-h) + 16px); background:var(--canvas); border-radius:var(--r); padding:28px; }
.hnm .bk-side h3{ font-size:20px; margin-bottom:14px; }
@media (max-width:991px){
    .hnm .booking-flow{ grid-template-columns:minmax(0,1fr); gap:26px; }
    .hnm .bk-main{ padding:24px 20px; }
    .hnm .bk-side{ position:static; }
    .hnm .bk-grid{ grid-template-columns:1fr; }
    .hnm .booking-flow form{ padding-bottom:20px; }
}
/* iOS/Android render native date controls that ignore width rules and can
   stretch to the screen edge — strip the native chrome so it behaves like
   every other input. */
.hnm input[type=date]{ -webkit-appearance:none; appearance:none; display:block; min-width:0; max-width:100%; box-sizing:border-box;
    text-align:left; -webkit-min-logical-width:0; }
.hnm input[type=date]::-webkit-date-and-time-value{ text-align:left; }
.hnm .emergency.compact{ display:flex; grid-template-columns:none; padding:22px 24px; font-size:14px; align-items:flex-start; gap:14px; }
.hnm .emergency.compact i{ color:#7fe3d6; font-size:17px; margin-top:3px; }
.hnm .emergency.compact b{ display:block; margin-bottom:4px; }
.hnm .split.article h2{ margin-top:40px; }
.hnm .split.article > div > *:first-child, .hnm .split.article .aside > *:first-child{ margin-top:0; }
.hnm .sheet-label{ font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); font-weight:600; padding:18px 4px 6px; }
.hnm footer.site .blurb{ font-size:14px; max-width:36ch; margin:14px 0 0; }
.hnm .hero .pillhead{ font-size:14px; font-weight:600; color:var(--muted); margin:24px 0 10px; }
.hnm .acard .meta{ font-size:13px; color:var(--muted); margin:10px 0 0; }
.hnm .acard .more{ display:inline-block; margin-top:10px; font-size:14px; font-weight:600; color:var(--teal-dark); }
.hnm .acard:hover .more{ color:var(--ink); }
.hnm .bigprice{ font-weight:300; font-size:40px; letter-spacing:-1.4px; margin:0 0 8px; color:var(--ink); }
.hnm .cardprice{ font-size:15px; font-weight:600; color:var(--teal-dark); margin:0 0 8px; }
.hnm h3.sub{ font-size:19px; font-weight:600; margin:26px 0 10px; }
.hnm .rowlist.headed .head .rowitem{ background:transparent; padding:0 13px 6px; font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); font-weight:600; }
.hnm a.chip:hover{ background:var(--teal); color:#fff; border-color:var(--teal); }
.hnm .receipt .v{ text-align:right; }
.hnm a.inlink{ color:var(--teal-dark); font-weight:600; }
.hnm a.inlink::after{ content:" \203A"; }
.hnm a.inlink:hover{ color:var(--ink); }
.hnm .sheet-top{ position:relative; }
.hnm .sheet-close{ position:absolute; right:0; top:-4px; width:38px; height:38px; border:0; border-radius:50%; background:var(--canvas);
    color:var(--ink); font-size:16px; cursor:pointer; }
.hnm .sheet-close:hover{ background:var(--mist); }
.hnm .sheet-close:focus-visible{ outline:2px solid var(--teal); outline-offset:2px; }

/* ---------- review fixes (blind UX pass, 18 Sep) ---------- */

/* Eyebrow and category labels were teal on white at 2.6:1. */
.hnm .acard .cat, .hnm .kicker, .hnm .eyebrow{ color:var(--teal-dark); font-size:13px; }

/* The tab bar's Menu button has to match its sibling links. */
.hnm .tabbar button{ flex:1; border:0; background:none; font-family:inherit; text-align:center; font-size:11px; font-weight:500;
    color:#6b7c92; cursor:pointer; padding:0; }
.hnm .tabbar button i{ display:block; font-size:18px; margin-bottom:4px; }
.hnm .tabbar button.on, .hnm .tabbar button.on i{ color:var(--teal-dark); }
.hnm .tabbar a{ color:#6b7c92; }
.hnm .tabbar a.on, .hnm .tabbar a.on i{ color:var(--teal-dark); }

/* Cards in a row end level, so their buttons line up. */
.hnm .cards{ align-items:stretch; }
.hnm .cards > .card{ display:flex; flex-direction:column; }
.hnm .card .acts{ margin-top:auto; padding-top:16px; }

/* One secondary style across the site. */
.hnm .btn-pale{ background:var(--mist); color:var(--ink); }
.hnm .btn-pale:hover{ background:#dceeeb; }

/* The provider login link sat on the hero photo, unreadable. */
.hnm .site-nav:not(.solid) .navright .login{ color:var(--ink); background:rgba(255,255,255,.82); padding:8px 14px; border-radius:999px; }
.hnm .site-nav.solid .navright .login{ background:none; padding:0; }

/* Prices must not orphan from their label at 390px. */
.hnm .receipt li > span:first-child{ min-width:0; }
.hnm .receipt li .muted{ white-space:nowrap; }

/* A split whose second half is empty should not leave half the page blank. */
.hnm .split.solo{ display:block; }
.hnm .split.solo > *{ max-width:none; }

/* The day strip is scrollable: show that it is. */
.hnm .bk-dayscroll{ position:relative; }
.hnm .bk-dayscroll::after{ content:""; position:absolute; right:0; top:0; bottom:6px; width:38px; pointer-events:none;
    background:linear-gradient(90deg, rgba(255,255,255,0), #fff 70%); }
.hnm .bk-days{ scroll-snap-type:x proximity; padding-right:26px; }
.hnm .bk-day{ scroll-snap-align:start; }

/* Native controls in the checkout were browser defaults beside custom fields. */
.hnm .radio-row input[type=radio]{ width:22px; height:22px; flex:0 0 22px; }
.hnm .radio-row label{ min-height:44px; padding-right:6px; }
.hnm .bk-terms summary{ list-style:none; display:flex; align-items:center; justify-content:space-between; gap:12px; min-height:44px; }
.hnm .bk-terms summary::-webkit-details-marker{ display:none; }
.hnm .bk-terms summary::after{ content:"\203A"; transform:rotate(90deg); color:var(--teal-dark); font-size:20px; line-height:1; }
.hnm .bk-terms[open] summary::after{ transform:rotate(-90deg); }
.hnm .bk-consent a{ color:var(--teal-dark); font-weight:600; text-decoration:underline; }

/* On a phone the total has to be visible before the pay button, not after it. */
@media (max-width:991px){
    .hnm .booking-flow{ grid-template-columns:minmax(0,1fr); grid-auto-rows:min-content; }
    .hnm .bk-side{ order:-1; }
}
/* A short aside next to a long article should follow the reader down. */
@media (min-width:992px){ .hnm .split.article .aside{ position:sticky; top:calc(var(--nav-h) + 20px); } }

/* Selects were the browser's own control beside custom-styled inputs. */
.hnm select{ -webkit-appearance:none; appearance:none; padding-right:44px;
    background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f7183' stroke-width='2' stroke-linecap='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat:no-repeat; background-position:right 15px center; background-size:18px; }

/* ---------- accessibility pass (blind audit, 18 Sep) ---------- */

/* A keyboard user should not walk the whole nav on every page. */
.hnm .skip{ position:absolute; left:-9999px; top:0; z-index:100; background:var(--ink); color:#f6f2ec;
    padding:12px 20px; border-radius:0 0 var(--r-sm) 0; font-weight:600; }
.hnm .skip:focus{ left:0; }
.hnm main:focus{ outline:none; }

/* The old focus ring was teal on white at 2.60:1 and 1px wide. */
.hnm input:focus-visible, .hnm select:focus-visible, .hnm textarea:focus-visible,
.hnm a:focus-visible, .hnm button:focus-visible, .hnm summary:focus-visible{
    outline:2px solid var(--teal-dark); outline-offset:2px; }
.hnm input:focus, .hnm select:focus, .hnm textarea:focus{
    outline:none; border-color:var(--teal-dark); box-shadow:0 0 0 3px rgba(29,126,115,.28); }

/* Contrast on the mist surface: every one of these failed AA there. */
.hnm .btn-mist .ar, .hnm .btn-pale .ar, .hnm .theme-btn-two i{ color:currentColor; }
.hnm .tabbar a, .hnm .tabbar button{ color:#5b6b7f; }
.hnm .mist .q p, .hnm .mist p.muted, .hnm .mist .trust span{ color:#526478; }
.hnm .mist .inlink, .hnm .mist .step .n, .hnm .mist .chip, .hnm .mist a.chip{ color:#186b62; }
.hnm .mist .chip{ border-color:rgba(24,107,98,.3); }

/* A link inside prose needs more than hue to mark it. */
.hnm .prose p a, .hnm .post-byline a, .hnm .wud-legal a{ text-decoration:underline; text-underline-offset:2px; }

/* The hero facts and the provider login sat on the photograph itself. */
.hnm .site-nav:not(.solid) .navright .login{ color:var(--ink); background:rgba(247,245,241,.94); padding:8px 14px; border-radius:999px; }
/* A heading the page needs for structure but the design does not show. */
.hnm .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; }
.hnm .post-toc h2{ font-size:16px; font-weight:600; margin:0 0 10px; letter-spacing:0; }
