/* ==========================================================================
   RareKare Primary Care - design system
   Brand tokens shared with rarekare.com: midnight, champagne, warm stone.
   ========================================================================== */

/* 1. Tokens ------------------------------------------------------------- */
:root {
    --midnight: #1e293b;
    --midnight-80: rgba(30, 41, 59, .8);
    --midnight-04: rgba(30, 41, 59, .04);
    --midnight-10: rgba(30, 41, 59, .1);
    --champagne: #c5a47e;
    --champagne-dark: #a8865c;
    --champagne-10: rgba(197, 164, 126, .1);
    --champagne-20: rgba(197, 164, 126, .2);
    --stone: #f8f7f4;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --white: #ffffff;

    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    --r-sm: 12px;
    --r-md: 24px;
    --r-lg: 40px;
    --r-pill: 9999px;

    --shadow-card: 0 40px 80px -15px rgba(30, 41, 59, .06);
    --shadow-btn: 0 10px 20px -5px rgba(197, 164, 126, .4);
    --shadow-menu: 0 20px 40px -10px rgba(30, 41, 59, .15);
    --ease: cubic-bezier(.2, .8, .2, 1);

    --section-y: clamp(4rem, 9vw, 7.5rem);
    --head-h: 5rem;
}

/* 2. Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--midnight);
    background: var(--stone);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; letter-spacing: -.02em; font-weight: 500; line-height: 1.15; }
address { font-style: normal; }
button { font: inherit; cursor: pointer; }
strong { font-weight: 600; }
::selection { background: var(--stone-200); color: var(--midnight); }
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 4px; }
.skip {
    position: absolute; left: -999px; top: 0; z-index: 100;
    background: var(--midnight); color: var(--white); padding: .75rem 1.25rem;
}
.skip:focus { left: 1rem; top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.ico { width: 1.15em; height: 1.15em; flex: none; }
.ico-xs { width: .85em; height: .85em; }
.ico-lg { width: 2.25rem; height: 2.25rem; }
.ico-xl { width: 4rem; height: 4rem; }

/* 3. Layout ------------------------------------------------------------- */
.wrap { max-width: 80rem; margin-inline: auto; padding-inline: 1.25rem; }
.wrap-narrow { max-width: 56rem; }
.wrap-tight { max-width: 44rem; }
.grid { display: grid; gap: 1.5rem; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-white { background: var(--white); }
.bg-stone { background: var(--stone); }
.bg-stone-50 { background: var(--stone-50); }
.bg-midnight { background: var(--midnight); color: var(--white); }
.bg-midnight .h2, .bg-midnight .h3 { color: var(--white); }
.bg-midnight .lede, .bg-midnight .muted { color: rgba(255, 255, 255, .65); }
.section-head { text-align: center; max-width: 46rem; margin: 0 auto clamp(2.5rem, 5vw, 4.5rem); }
.section-head-left { text-align: left; margin-inline: 0; }
.section-head .lede { margin-top: 1rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: .5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; } .mb-8 { margin-bottom: 2rem; }
.text-balance { text-wrap: balance; }
.hide-mobile { display: none; }

@media (min-width: 640px) { .wrap { padding-inline: 1.5rem; } }
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid { gap: 2rem; }
}
@media (min-width: 1024px) {
    .wrap { padding-inline: 3rem; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .hide-mobile { display: initial; }
    .hide-desktop { display: none; }
    :root { --head-h: 6rem; }
}

/* 4. Type --------------------------------------------------------------- */
.h1 {
    font-weight: 300;
    font-size: clamp(2.2rem, 4.4vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -.02em;
    color: var(--midnight);
    margin-bottom: 1.4rem;
    text-wrap: balance;
}
.h1-accent {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.12em;
    color: var(--champagne);
    letter-spacing: 0;
    margin-top: .05em;
}
.h2 {
    font-weight: 400;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.12;
    color: var(--midnight);
}
.h2 .accent { color: var(--champagne); }
.h2 .accent-serif, .h1 .accent-serif {
    font-family: var(--font-serif); font-style: italic; color: var(--champagne); font-weight: 400;
}
.h2-sub { display: block; font-family: var(--font-sans); font-size: .95rem; color: var(--stone-500); font-weight: 400; letter-spacing: 0; margin-top: .5rem; }
.h3 { font-size: 1.2rem; font-weight: 600; color: var(--midnight); margin-bottom: .6rem; }
.h4 { font-size: 1rem; font-weight: 600; }
.eyebrow {
    font-size: .65rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
    color: var(--champagne); font-style: italic; margin-bottom: .85rem;
}
.label-caps { font-size: .65rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; }
.lede { font-size: 1.15rem; line-height: 1.6; color: var(--stone-500); font-weight: 400; }
.muted { color: var(--stone-500); }
.small { font-size: .875rem; }
.prose p { margin-bottom: 1.1rem; }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 2rem 0 .75rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.1rem; }
.prose ol { list-style: decimal; padding-left: 1.4rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: .35rem; }
.prose a { color: var(--champagne-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--midnight); }
.checks li { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .55rem; color: var(--stone-600); }
.checks .ico { color: var(--champagne); margin-top: .25rem; }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin: .9rem 0 1.1rem; }
.chips li {
    font-size: .7rem; font-weight: 600; letter-spacing: .04em; padding: .3rem .7rem;
    background: var(--stone-100); color: var(--stone-600); border-radius: var(--r-pill);
}
.badge {
    display: inline-block; padding: .375rem 1rem; background: var(--champagne-10); color: var(--champagne-dark);
    border-radius: var(--r-pill); font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
}

/* 5. Buttons ------------------------------------------------------------ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    min-height: 3rem; padding: .85rem 1.75rem; border-radius: var(--r-md); border: 2px solid transparent;
    font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; line-height: 1.1;
    text-align: center; cursor: pointer; transition: all .3s ease; white-space: nowrap;
}
.btn-primary { background: var(--midnight); color: var(--white); border-color: var(--midnight); }
.btn-primary:hover { background: var(--champagne); border-color: var(--champagne); transform: translateY(-2px); box-shadow: var(--shadow-btn); color: var(--white); }
.btn-gold { background: var(--champagne); color: var(--white); border-color: var(--champagne); }
.btn-gold:hover { background: var(--white); color: var(--midnight); border-color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--midnight); border-color: var(--midnight); }
.btn-outline:hover { background: var(--midnight); color: var(--white); }
.btn-ghost { background: var(--stone-100); color: var(--midnight); border-color: var(--stone-100); }
.btn-ghost:hover { background: var(--stone-200); border-color: var(--stone-200); }
.btn-ghost-light { background: rgba(255, 255, 255, .08); color: var(--white); border-color: rgba(255, 255, 255, .2); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .4); }
.btn-sm { min-height: 2.6rem; padding: .6rem 1.2rem; font-size: .66rem; }
.btn-lg { min-height: 3.6rem; padding: 1.1rem 2.5rem; font-size: .8rem; }
.btn-block { width: 100%; }
.btn-pill { border-radius: var(--r-pill); }
.link-arrow {
    display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; color: var(--champagne-dark);
}
.link-arrow .ico { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--midnight); }
.link-arrow:hover .ico { transform: translateX(4px); }

/* 6. Cards -------------------------------------------------------------- */
.card {
    background: var(--white); border: 1px solid var(--midnight-04); border-radius: var(--r-md);
    padding: 1.75rem; transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.card-link { display: flex; flex-direction: column; }
.card-link:hover, .card-lift:hover { transform: translateY(-6px); border-color: var(--champagne); box-shadow: var(--shadow-card); }
.card-featured { border: 2px solid var(--champagne); }
.card-soft { background: var(--stone-50); border-color: transparent; }
.card-icon {
    display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem;
    border-radius: 1rem; background: var(--champagne-10); color: var(--champagne-dark); margin-bottom: 1.25rem;
}
.card-icon .ico { width: 1.6rem; height: 1.6rem; }
.svc-card .link-arrow { margin-top: auto; }
.svc-card .muted { flex: 1; }
@media (min-width: 768px) { .card { padding: 2.25rem; border-radius: var(--r-lg); } }

/* 7. Hero --------------------------------------------------------------- */
.hero {
    position: relative;
    background: radial-gradient(60% 50% at 50% 0%, rgba(197, 164, 126, .14), transparent 70%), linear-gradient(rgba(197, 164, 126, .05), var(--stone));
    padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3rem, 7vw, 6rem);
}
.hero-inner { max-width: 46rem; margin-inline: auto; text-align: center; }
.hero-inner .lede { max-width: 36rem; margin-inline: auto; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; align-items: center; margin-top: 2rem; }
.hero-note { text-align: left; }
.hero-note .eyebrow { margin-bottom: .15rem; }
.hero-note .muted { font-size: .9rem; font-style: italic; margin: 0; }
.hero-chip {
    display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: var(--r-pill);
    background: var(--white); border: 1px solid var(--stone-200); font-size: .78rem; font-weight: 600; color: var(--stone-600); margin-bottom: 1.5rem;
}
.hero-chip .ico { color: var(--champagne); }
.hero-nap {
    background: var(--white); border-radius: var(--r-md); border: 1px solid var(--midnight-04);
    padding: 1.5rem; margin-top: 2.5rem; text-align: left; display: grid; gap: 1.5rem;
}
.hero-nap address { font-size: 1.05rem; line-height: 1.5; }
.hero-nap .nap-phone { font-size: 1.5rem; font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; color: var(--midnight); }
.hero-nap .nap-phone:hover { color: var(--champagne-dark); }
.hero-nap .nap-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.hero-nap .hours { max-width: 22rem; }
@media (min-width: 768px) {
    .hero-nap { grid-template-columns: 1.2fr 1fr; padding: 2.25rem; border-radius: var(--r-lg); }
}

/* 8. Trust bar ---------------------------------------------------------- */
.trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; margin-top: 3rem;
    font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--stone-400);
}
.trust li { display: flex; align-items: center; gap: .5rem; }
.trust li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); opacity: .7; }

/* 9. Header ------------------------------------------------------------- */
.topbar { display: none; background: var(--midnight); color: rgba(255, 255, 255, .7); font-size: .68rem; font-weight: 600; letter-spacing: .06em; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 2.5rem; gap: 1rem; }
.topbar-phones { display: flex; gap: 1.75rem; }
.topbar-phones a { display: inline-flex; align-items: center; gap: .45rem; color: var(--white); }
.topbar-phones a:hover { color: var(--champagne); }
.topbar-loc { color: rgba(255, 255, 255, .5); text-transform: uppercase; letter-spacing: .15em; font-size: .6rem; }
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-right a { color: var(--champagne); text-transform: uppercase; letter-spacing: .15em; font-size: .6rem; }
.topbar-right a:hover { color: var(--white); }
@media (min-width: 768px) { .topbar { display: block; } }

.site-head {
    position: sticky; top: 0; z-index: 50;
    background: rgba(248, 247, 244, .92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--stone-100);
}
.head-inner { display: flex; align-items: center; justify-content: space-between; height: var(--head-h); gap: 1rem; }
.logo { display: flex; flex-direction: column; align-items: flex-start; gap: .1rem; flex: none; }
.logo-word { font-size: 1.45rem; font-weight: 700; letter-spacing: -.04em; text-transform: uppercase; color: var(--midnight); line-height: 1; }
.logo-sub { font-size: .55rem; font-weight: 700; letter-spacing: .38em; text-transform: uppercase; color: var(--champagne-dark); padding-left: .1rem; margin-top: .3rem; }
.nav { display: none; }
.nav > ul { display: flex; align-items: center; gap: 1.25rem; }
.nav a { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--stone-500); display: inline-flex; align-items: center; gap: .3rem; padding-block: .85rem; white-space: nowrap; }
.nav a:hover, .nav .is-active > a { color: var(--midnight); }
.dropdown { position: relative; }
.dropdown::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: .75rem; }
.dropdown-menu {
    position: absolute; top: calc(100% + .5rem); left: 50%; transform: translate(-50%, -8px);
    min-width: 15rem; background: var(--white); border: 1px solid var(--midnight-10); border-radius: var(--r-sm);
    box-shadow: var(--shadow-menu); padding: .5rem; opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 60;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.dropdown-menu > a { display: block; padding: .6rem .9rem; border-radius: 8px; letter-spacing: .12em; }
.dropdown-menu > a:hover { background: var(--stone); color: var(--midnight); }
.dropdown-all { border-top: 1px solid var(--stone-100); margin-top: .25rem; color: var(--champagne-dark) !important; }
.dropdown-menu > .dropdown-all:first-child { border-top: 0; margin-top: 0; border-bottom: 1px solid var(--stone-100); margin-bottom: .25rem; }
.dropdown-menu-loc { min-width: 19rem; }
.dropdown-loc { padding: .75rem .9rem; border-radius: 8px; }
.dropdown-loc:hover { background: var(--stone); }
.dropdown-loc-name { display: block; font-size: .8rem !important; letter-spacing: .04em !important; text-transform: none !important; color: var(--midnight) !important; font-weight: 700; padding: 0 !important; }
.dropdown-loc-addr { display: block; font-size: .78rem; color: var(--stone-500); margin: .15rem 0 .5rem; }
.dropdown-loc-links { display: flex; gap: 1rem; }
.dropdown-loc-links a { padding: .3rem 0 !important; font-size: .62rem !important; color: var(--champagne-dark) !important; }
.dropdown-loc-links a:hover { color: var(--midnight) !important; }
.head-cta { display: none; align-items: center; gap: 1.25rem; }
.head-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .95rem; color: var(--midnight); white-space: nowrap; }
.head-phone:hover { color: var(--champagne-dark); }
.head-phone .ico { color: var(--champagne); }
.menu-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 2.75rem; height: 2.75rem;
    background: transparent; border: 0; padding: .5rem; border-radius: 8px;
}
.menu-toggle span { display: block; height: 2px; background: var(--midnight); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { border-top: 1px solid var(--stone-100); background: var(--stone); max-height: calc(100vh - var(--head-h)); overflow-y: auto; padding-block: 1rem 2rem; }
.mobile-nav[hidden] { display: none; }
.mobile-nav-label { color: var(--champagne-dark); margin: 1.25rem 0 .5rem; }
.mobile-link { display: block; padding: .6rem 0; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--stone-600); border-bottom: 1px solid var(--stone-200); }
.mobile-loc { padding: .75rem 0; border-bottom: 1px solid var(--stone-200); }
.mobile-loc-name { font-weight: 700; color: var(--midnight); }
.mobile-loc-addr { display: block; font-size: .85rem; color: var(--stone-500); margin: .1rem 0 .4rem; }
.mobile-loc-links { display: flex; gap: 1.25rem; }
.mobile-loc-links a { display: inline-flex; gap: .35rem; align-items: center; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--champagne-dark); }
.mobile-nav-cta { margin-top: 1.5rem; }
@media (min-width: 1024px) {
    .nav { display: block; }
    .head-cta { display: flex; }
    .menu-toggle, .mobile-nav { display: none !important; }
}
.head-phone { display: none; }
@media (min-width: 1280px) { .nav > ul { gap: 2rem; } .head-phone { display: inline-flex; } .logo-word { font-size: 1.6rem; } }

/* 10. Breadcrumbs ------------------------------------------------------- */
.crumbs { margin-bottom: 1.5rem; }
.crumbs ol { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; font-size: .62rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--stone-400); }
.crumbs li + li::before { content: '/'; margin-right: .5rem; color: var(--stone-300); }
.crumbs a:hover { color: var(--midnight); }
.crumbs [aria-current] { color: var(--champagne-dark); }

/* 11. Location cards ---------------------------------------------------- */
.loc-switch { display: grid; gap: 1.25rem; margin-top: 2.5rem; text-align: left; }
.loc-card {
    background: var(--white); border: 1px solid var(--midnight-04); border-radius: var(--r-md); padding: 1.6rem;
    display: flex; flex-direction: column; gap: .9rem; transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.loc-card:hover { border-color: var(--champagne); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.loc-card-head .eyebrow { margin-bottom: .35rem; }
.loc-card-name { font-size: 1.5rem; font-weight: 500; }
.loc-card-name a:hover { color: var(--champagne-dark); }
.loc-card-addr, .loc-card-hours { display: flex; gap: .6rem; align-items: flex-start; color: var(--stone-600); font-size: .95rem; margin: 0; }
.loc-card-addr .ico, .loc-card-hours .ico { color: var(--champagne); margin-top: .2rem; }
.loc-card-phone { display: inline-flex; align-items: center; gap: .6rem; font-size: 1.35rem; font-weight: 700; color: var(--midnight); }
.loc-card-phone .ico { color: var(--champagne); }
.loc-card-phone:hover { color: var(--champagne-dark); }
.loc-card-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .25rem; }
.loc-card-actions .btn { flex: 1 1 auto; }
.loc-card .link-arrow { margin-top: .25rem; }
.loc-card-home { padding: 1.4rem; }
.loc-compact-grid { display: grid; gap: 1rem; }
.loc-compact {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
    background: var(--stone-50); border: 1px solid var(--stone-100); border-radius: var(--r-md); padding: 1.25rem 1.5rem;
}
.loc-compact-name { font-weight: 700; color: var(--midnight); }
.loc-compact-name:hover { color: var(--champagne-dark); }
.loc-compact address { font-size: .9rem; color: var(--stone-500); }
.loc-compact-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
@media (min-width: 768px) {
    .loc-switch { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .loc-card { padding: 2rem; border-radius: var(--r-lg); }
    .loc-compact-grid { grid-template-columns: 1fr 1fr; }
}

/* 12. Map facade -------------------------------------------------------- */
.map-facade {
    position: relative; aspect-ratio: 16 / 10; max-width: 100%; border-radius: var(--r-md); overflow: hidden;
    background: var(--stone-100) repeating-linear-gradient(45deg, transparent 0 18px, rgba(30, 41, 59, .025) 18px 19px);
    border: 1px solid var(--stone-200);
}
.map-facade-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem; text-align: center; padding: 1.5rem; }
.map-facade-inner .ico-lg { color: var(--champagne); }
.map-facade-addr { font-weight: 600; margin: 0; }
.map-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (min-width: 768px) { .map-facade { border-radius: var(--r-lg); aspect-ratio: 16 / 8; } }

/* 13. Hours table ------------------------------------------------------- */
.hours { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours td { padding: .4rem 0; border-bottom: 1px solid var(--stone-100); }
.hours td:first-child { color: var(--stone-500); }
.hours td:last-child { text-align: right; font-weight: 500; }
.hours-closed { color: var(--stone-400); font-weight: 400 !important; }
.hours-today td { color: var(--midnight); font-weight: 700; }
.hours-today td:first-child::after { content: 'Today'; font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; color: var(--champagne-dark); margin-left: .5rem; }

/* 14. Pricing block + notices ------------------------------------------ */
.price-block {
    background: var(--white); border: 1px solid var(--midnight-04); border-radius: var(--r-md);
    padding: 1.75rem; display: grid; gap: 1.5rem;
}
.price-block-item .eyebrow { margin-bottom: .4rem; }
.price { font-size: 3rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; margin: 0 0 .5rem; }
.price-sub { font-size: 1.15rem; font-weight: 600; margin: .35rem 0 .5rem; }
.price-block .muted { font-size: .9rem; margin: 0; }
.price-block-links { display: flex; flex-wrap: wrap; gap: 1.5rem; border-top: 1px solid var(--stone-100); padding-top: 1.25rem; }
.notice {
    background: var(--champagne-10); border-left: 4px solid var(--champagne); border-radius: var(--r-sm);
    padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
}
.notice .ico { color: var(--champagne-dark); margin-top: .2rem; }
.notice p { margin: 0; font-size: .95rem; color: var(--stone-600); }
.notice strong { color: var(--midnight); }
.notice-danger { background: #fdf2f2; border-left-color: #c0392b; }
.notice-danger .ico { color: #c0392b; }
@media (min-width: 768px) {
    .price-block { grid-template-columns: repeat(3, 1fr); padding: 2.5rem; border-radius: var(--r-lg); }
    .price-block-links { grid-column: 1 / -1; }
}

/* 15. Steps ------------------------------------------------------------- */
.steps { display: grid; gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-left: 3.5rem; }
.step-num {
    position: absolute; left: 0; top: 0; width: 2.5rem; height: 2.5rem; border-radius: 50%;
    background: var(--champagne-10); color: var(--champagne-dark); font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.step p { color: var(--stone-600); margin: 0; font-size: .95rem; }
@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .steps-4 { grid-template-columns: repeat(4, 1fr); }
    .steps-4 .step { padding-left: 0; padding-top: 3.5rem; }
    .steps-3 { grid-template-columns: repeat(3, 1fr); }
    .steps-3 .step { padding-left: 0; padding-top: 3.5rem; }
}

/* 16. FAQ --------------------------------------------------------------- */
.faq-wrap { display: grid; gap: .75rem; }
.faq-group { font-size: .7rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--champagne-dark); margin: 2.5rem 0 1rem; }
.faq-group:first-child { margin-top: 0; }
.faq { background: var(--white); border: 1px solid var(--stone-100); border-radius: var(--r-sm); overflow: hidden; transition: border-color .3s; }
.faq[open], .faq:hover { border-color: var(--champagne-20); }
.faq summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.4rem; cursor: pointer; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { color: var(--champagne); transition: transform .3s var(--ease); }
.faq[open] summary .ico { transform: rotate(180deg); }
.faq-body { padding: 0 1.4rem 1.3rem; color: var(--stone-600); font-size: .95rem; }
.faq-body p { margin: 0; }
.faq-body a { color: var(--champagne-dark); text-decoration: underline; text-underline-offset: 3px; }

/* 17. Forms ------------------------------------------------------------- */
.form { display: grid; gap: 1.5rem; }
.field label { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .6rem; }
.field .req { color: var(--champagne); }
.field .opt { color: var(--stone-400); text-transform: none; letter-spacing: 0; font-weight: 500; }
.field input, .field select, .field textarea {
    width: 100%; padding: .95rem 1.25rem; border: 2px solid var(--stone-200); border-radius: 1rem;
    font: inherit; color: var(--midnight); background: var(--white); transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--champagne); outline: none; }
.field textarea { resize: vertical; min-height: 8rem; }
.field-hint { font-size: .8rem; color: var(--stone-500); font-style: italic; margin: .5rem 0 0; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (min-width: 768px) { .form-2 { grid-template-columns: 1fr 1fr; } .form-2 .field-full { grid-column: 1 / -1; } }

/* 18. Related ----------------------------------------------------------- */
.related-title { text-align: center; margin-bottom: 1.5rem; color: var(--stone-500); font-weight: 500; }
.related-grid { display: grid; gap: 1rem; }
.related-card {
    display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 1rem; align-items: center;
    background: var(--white); border: 1px solid var(--stone-100); border-radius: var(--r-sm); padding: 1.1rem 1.35rem;
    transition: border-color .3s, transform .3s var(--ease);
}
.related-card:hover { border-color: var(--champagne); transform: translateY(-3px); }
.related-name { font-weight: 700; color: var(--midnight); }
.related-blurb { font-size: .85rem; color: var(--stone-500); grid-column: 1; }
.related-card .ico { grid-column: 2; grid-row: 1 / span 2; color: var(--champagne); }
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }

/* 19. CTA band ---------------------------------------------------------- */
.cta { background: var(--midnight); color: var(--white); }
.cta .h2 { color: var(--white); }
.cta .lede { color: rgba(255, 255, 255, .65); margin-top: 1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.cta-note { margin-top: 1.75rem; font-size: .85rem; color: rgba(255, 255, 255, .45); }
.cta-note a { color: var(--champagne); text-decoration: underline; text-underline-offset: 3px; }
.cta-note a:hover { color: var(--white); }

/* 20. Footer ------------------------------------------------------------ */
.site-foot { background: var(--midnight); color: rgba(255, 255, 255, .45); padding-block: 4.5rem 7rem; font-size: .85rem; }
.foot-grid { display: grid; gap: 2.5rem; }
.foot-logo { font-size: 1.15rem; font-weight: 700; letter-spacing: -.02em; text-transform: uppercase; color: var(--white); }
.foot-tagline { font-size: .6rem; font-weight: 700; letter-spacing: .35em; text-transform: uppercase; color: var(--champagne); font-style: italic; margin: .5rem 0 1.25rem; }
.foot-desc { font-size: .8rem; line-height: 1.7; max-width: 22rem; }
.foot-parent { font-size: .75rem; }
.foot-parent a { color: var(--champagne); }
.foot-parent a:hover { color: var(--white); }
.site-foot .foot-head { color: var(--white); margin-bottom: 1.1rem; }
.foot-loc address { color: rgba(255, 255, 255, .8); line-height: 1.6; margin-bottom: .6rem; }
.foot-loc address a:hover { color: var(--champagne); }
.foot-phone { display: inline-flex; align-items: center; gap: .45rem; color: var(--white); font-weight: 700; font-size: 1rem; }
.foot-phone .ico { color: var(--champagne); }
.foot-phone:hover { color: var(--champagne); }
.foot-hours { font-size: .78rem; margin: .6rem 0 .4rem; }
.foot-links { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin: 0; }
.foot-links a { color: var(--champagne); }
.foot-links a:hover { color: var(--white); }
.foot-list li { margin-bottom: .6rem; }
.foot-list a { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255, 255, 255, .45); }
.foot-list a:hover { color: var(--white); }
.foot-legal { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .06); }
.foot-legal a { color: rgba(255, 255, 255, .3); }
.foot-cred { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, .06); display: flex; flex-direction: column; gap: .75rem; font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; line-height: 1.8; }
.foot-cred p { margin: 0; }
.foot-notice { margin-top: 1.5rem; font-size: .72rem; font-style: italic; color: rgba(255, 255, 255, .3); text-align: center; }
@media (min-width: 640px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
    .site-foot { padding-block: 6rem 5rem; }
    .foot-grid { grid-template-columns: 1.4fr 1fr 1fr .8fr .8fr; gap: 3rem; }
    .foot-cred { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* 21. Sticky mobile bar ------------------------------------------------- */
.sticky-bar {
    position: fixed; inset-inline: 0; bottom: 0; z-index: 70;
    display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: .4rem;
    background: var(--midnight); padding: .45rem .45rem calc(.45rem + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 30px rgba(30, 41, 59, .15);
}
.sticky-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
    min-height: 3.1rem; border-radius: 10px; color: var(--white); font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
    background: rgba(255, 255, 255, .06); cursor: pointer; list-style: none;
}
.sticky-btn::-webkit-details-marker { display: none; }
.sticky-btn .ico { width: 1.25rem; height: 1.25rem; }
.sticky-book { background: var(--champagne); color: var(--white); }
.sticky-choose { position: relative; }
.sticky-choose[open] .sticky-btn { background: rgba(255, 255, 255, .16); }
.sticky-pop {
    position: absolute; bottom: calc(100% + .6rem); left: 0; min-width: 14rem; background: var(--white);
    border-radius: var(--r-sm); box-shadow: var(--shadow-menu); padding: .5rem; z-index: 80;
}
.sticky-choose:last-child .sticky-pop { left: auto; right: 0; }
.sticky-pop a { display: flex; flex-direction: column; padding: .7rem .9rem; border-radius: 8px; color: var(--midnight); }
.sticky-pop a:hover { background: var(--stone); }
.sticky-pop strong { font-size: .85rem; }
.sticky-pop span { font-size: .78rem; color: var(--stone-500); }
@media (min-width: 1024px) { .sticky-bar { display: none; } }

/* 22. Page-specific blocks --------------------------------------------- */
.choice-grid .card { display: flex; flex-direction: column; gap: .25rem; }
.choice-card .btn { align-self: flex-start; margin-top: .75rem; }
.choice-card .link-arrow { margin-top: 1rem; }
.provider { display: grid; gap: 2rem; align-items: center; }
.provider-photo { border-radius: var(--r-md); overflow: hidden; background: var(--stone-100); aspect-ratio: 4 / 5; max-width: 26rem; }
.provider-photo img { width: 100%; height: 100%; object-fit: cover; }
.provider-placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--stone-400); background: linear-gradient(160deg, var(--stone-100), var(--stone-200)); }
.provider-body p { color: var(--stone-600); }
.provider-body .h2 { margin-bottom: 1.25rem; }
.provider-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.areas { display: flex; flex-wrap: wrap; gap: .5rem; }
.areas li { padding: .5rem 1rem; border-radius: var(--r-pill); background: var(--white); border: 1px solid var(--stone-200); font-size: .85rem; font-weight: 500; color: var(--stone-600); }
.areas-primary { background: var(--midnight) !important; color: var(--white) !important; border-color: var(--midnight) !important; }
.why-card { text-align: left; }
.why-card .big { font-family: var(--font-serif); font-style: italic; font-size: 3rem; color: var(--champagne); line-height: 1; margin-bottom: .75rem; }
.two-col { display: grid; gap: 2.5rem; align-items: start; }
.aside-card { position: sticky; top: calc(var(--head-h) + 1.5rem); }
.pricing-hero-card { background: var(--white); border: 2px solid var(--champagne); border-radius: var(--r-lg); padding: 2.5rem; text-align: center; max-width: 30rem; margin: 2.5rem auto 0; }
.pricing-hero-card .price { font-size: 4.5rem; }
.pricing-hero-card .btn { margin-top: 1.25rem; }
.compare { display: grid; gap: 1.5rem; }
.compare .card ul { margin-top: .75rem; }
.legal-hero { padding-block: 3rem 2rem; }
.error-code { font-family: var(--font-serif); font-style: italic; font-size: 6rem; line-height: 1; color: var(--champagne); }
@media (min-width: 768px) {
    .provider { grid-template-columns: 2fr 3fr; gap: 3.5rem; }
    .provider-full { grid-template-columns: 1fr 1.4fr; }
    .two-col { grid-template-columns: 1.6fr 1fr; gap: 3.5rem; }
    .compare { grid-template-columns: 1fr 1fr; }
}

/* 23. Motion and print -------------------------------------------------- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in-up { animation: fadeInUp .8s var(--ease) both; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}
@media print {
    .topbar, .site-head, .mobile-nav, .sticky-bar, .cta, .related, .map-facade, .btn, .foot-list, .skip { display: none !important; }
    body { background: #fff; color: #000; }
    .site-foot { background: #fff; color: #000; }
    .foot-loc address, .foot-phone { color: #000; }
    a[href^="tel"]::after { content: ' (' attr(href) ')'; font-size: .8em; }
}

/* 24. Small-screen button fit ------------------------------------------ */
@media (max-width: 480px) {
    .btn { max-width: 100%; white-space: normal; }
    .btn-lg { padding-inline: 1.5rem; }
    .hero-actions > .btn { width: 100%; }
    .cta-actions > .btn { width: 100%; }
    .loc-card-actions .btn-ghost { flex-basis: 100%; }
}

/* 25. Hero chip on small phones ----------------------------------------- */
.hero-chip { flex-wrap: wrap; justify-content: center; text-align: center; line-height: 1.3; }
@media (max-width: 480px) {
    .hero-chip > span[aria-hidden] { flex-basis: 100%; height: 0; overflow: hidden; }
    .hero-chip { padding: .55rem 1rem; }
}

/* 26. Accessibility and mobile fixes (UX review, September 2026) --------
   Overrides kept in one place. The brand swatch #c5a47e is unchanged for
   icons, rules, fills and anything on midnight; only text tones on light
   backgrounds move to darker champagne so they pass WCAG AA. */

:root {
    --champagne-text: #7a5d3a;   /* 5.0:1 on the darkest hero tint, 5.7:1 on stone, 6.1:1 on white */
    --stone-500: #716a65;        /* 5.3:1 on white, 5.0:1 on stone */
}

/* U-18: less sticky chrome on phones (desktop keeps 6rem from section 3) */
@media (max-width: 1023px) {
    :root { --head-h: 4.25rem; }
}

/* Anchor targets clear the sticky header */
[id] { scroll-margin-top: calc(var(--head-h) + 1rem); }

/* U-03: champagne text on light backgrounds */
.eyebrow, .link-arrow, .prose a, .faq-body a, .mobile-nav-label, .faq-group,
.crumbs [aria-current], .step-num, .field .req, .price-block-links a,
.logo-sub, .badge, .hours-today td:first-child::after, .mobile-loc-links a {
    color: var(--champagne-text);
}
.dropdown-all, .dropdown-loc-links a { color: var(--champagne-text) !important; }
.h1-accent, .h2 .accent, .h2 .accent-serif, .h1 .accent-serif, .why-card .big, .error-code {
    color: #967650; /* display sizes: 3.5:1 on the hero tint, 3.9:1 on stone, passes the large-text rule */
}
/* keep the bright swatch where the background is midnight */
.cta .eyebrow, .bg-midnight .eyebrow, .site-foot .eyebrow,
.cta .h2 .accent, .cta .h2 .accent-serif, .bg-midnight .h2 .accent, .bg-midnight .h2 .accent-serif,
.bg-midnight .link-arrow {
    color: var(--champagne);
}

/* U-02: button labels on champagne fills use midnight (6.3:1) */
.btn-gold, .sticky-book { color: var(--midnight); }
.btn-primary:hover { color: var(--midnight); }

/* U-04: footer and emergency notice legibility on midnight */
.site-foot { color: rgba(255, 255, 255, .6); }
.foot-list a { color: rgba(255, 255, 255, .6); }
.foot-legal a { color: rgba(255, 255, 255, .5); }
.foot-notice { color: rgba(255, 255, 255, .65); }
.cta-note { color: rgba(255, 255, 255, .6); }

/* U-05: visible focus everywhere */
:focus-visible { outline: 3px solid var(--midnight); outline-offset: 3px; }
.cta :focus-visible, .site-foot :focus-visible, .sticky-bar :focus-visible,
.topbar :focus-visible, .bg-midnight :focus-visible { outline-color: var(--champagne); }
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--midnight); box-shadow: 0 0 0 3px var(--midnight-10); outline: none;
}

/* U-13: low-contrast grey text */
.trust { color: var(--stone-600); font-size: .68rem; }
.crumbs ol { color: var(--stone-600); }
.hours-closed { color: var(--stone-500); }
.field .opt { color: var(--stone-500); }

/* U-14: minimum label sizes */
.eyebrow, .label-caps, .field label { font-size: .72rem; letter-spacing: .22em; }
.hours-today td:first-child::after { font-size: .62rem; }
@media (max-width: 767px) {
    .sticky-btn { font-size: .7rem; }
    .btn { font-size: .78rem; }
    .btn-sm { font-size: .7rem; }
    .chips li { font-size: .78rem; }
}
@media (max-width: 1023px) {
    .crumbs ol { font-size: .7rem; }
    .foot-list a, .foot-legal a, .foot-links a, .mobile-loc-links a { font-size: .72rem; }
    .topbar-right a, .topbar-loc { font-size: .66rem; }
}

/* U-12: tap targets */
.btn-sm { min-height: 2.75rem; }
@media (max-width: 1023px) {
    .foot-list li { margin-bottom: 0; }
    .foot-list a, .foot-links a, .foot-legal a { display: inline-block; padding-block: .5rem; }
    .mobile-link { padding: .85rem 0; }
    .mobile-loc-links a { padding-block: .6rem; }
    .link-arrow { padding-block: .6rem; }
    .crumbs ol { align-items: center; }
    .crumbs a { display: inline-block; padding-block: .6rem; }
    .chips a { display: inline-block; padding: .35rem .2rem; }
}

/* U-01: mobile menu is never trapped under the sticky bar */
.mobile-nav {
    max-height: calc(100vh - var(--head-h));
    max-height: calc(100dvh - var(--head-h));
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}
body:has(.mobile-nav:not([hidden])) .sticky-bar { display: none; }
.mobile-nav-cta { position: sticky; bottom: 0; background: var(--stone); padding-block: .75rem calc(1.25rem + env(safe-area-inset-bottom)); margin-top: 1.5rem; }
.mobile-nav { padding-bottom: 0; }

/* U-23: footer clears the fixed bar with room to spare */
@media (max-width: 1023px) {
    .site-foot { padding-bottom: calc(9rem + env(safe-area-inset-bottom)); }
}

/* U-06 + U-10: phone numbers never split across lines */
.nowrap, .loc-card-phone, .nap-phone, .foot-phone, .head-phone, .topbar-phones a { white-space: nowrap; }

/* U-10: the location aside stays full width until there is room for it */
@media (min-width: 768px) and (max-width: 1023px) {
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .aside-card { position: static; }
}

/* U-11: tablet topbar */
@media (max-width: 1023px) {
    .topbar-right span { display: none; }
}

/* U-07: tappable dropdowns on touch screens (see site.js) */
.dropdown.is-open .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.dropdown-menu > a { padding: .8rem .9rem; }
.dropdown.is-dismissed .dropdown-menu { opacity: 0; visibility: hidden; pointer-events: none; transition: none; }

/* U-08: FAQ groups keep their spacing; only the first sits flush */
.faq-group:first-child { margin-top: 2.5rem; }
nav + div > .faq-group:first-child { margin-top: 0; }

/* U-09: pricing card CTA fits on phones */
@media (max-width: 480px) {
    .pricing-hero-card { padding: 2rem 1.25rem; }
    .pricing-hero-card .btn { width: 100%; }
}

/* U-15: form error states */
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #b3261e; }
.field input:user-invalid + .field-hint { color: #b3261e; }

/* U-16: one set of actions per screen on phones (the sticky bar covers the rest) */
@media (max-width: 1023px) {
    .hero-nap .nap-actions, .aside-card .loc-aside-actions { display: none; }
}

/* U-17: the missing-photo tile stops dominating the provider block */
.provider-placeholder { color: var(--stone-600); }
@media (max-width: 767px) {
    .provider-photo:has(.provider-placeholder) { aspect-ratio: 16 / 7; max-height: 11rem; }
    .provider-placeholder .ico-xl { width: 2.5rem; height: 2.5rem; }
}

/* XS-09: tablet NAP card aligns to the top once its actions are hidden */
@media (min-width: 768px) and (max-width: 1023px) { .hero-nap { align-items: start; } }

/* U-20: the whole map tile loads the map */
.map-facade { cursor: pointer; }

/* U-22: location chip reads as a label, not a button, on small phones */
@media (max-width: 480px) {
    .hero-chip { background: transparent; border: 0; padding: 0; font-size: .8rem; }
}

/* U-24: header phone appears as soon as it fits */
@media (min-width: 1024px) { .nav > ul { gap: 1rem; } }
@media (min-width: 1024px) and (max-width: 1099px) { .nav a { letter-spacing: .13em; } }
@media (min-width: 1240px) { .head-phone { display: inline-flex; } }
@media (min-width: 1280px) { .nav > ul { gap: 1.6rem; } }

/* U-25: office name in the location hero stays on one line */
.hero-nap .eyebrow { letter-spacing: .18em; }
@media (max-width: 400px) { .hero-nap .eyebrow { letter-spacing: .1em; } }

/* S-36: service cards link on the service name, the whole card stays clickable */
.svc-card { position: relative; }
.svc-card .stretched { color: inherit; }
.svc-card .stretched::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.svc-card .stretched:focus-visible { outline: none; }
.svc-card:has(.stretched:focus-visible) { outline: 3px solid var(--midnight); outline-offset: 3px; }
.svc-card:hover { transform: translateY(-6px); border-color: var(--champagne); box-shadow: var(--shadow-card); }

/* Second price line on the pricing card */
.price-note { font-size: .95rem; font-weight: 600; color: var(--midnight); margin: .25rem 0 0; }

/* Utilities that replace inline style attributes */
.mx-auto { margin-inline: auto; }
.justify-center { justify-content: center; }
.u-link { text-decoration: underline; text-underline-offset: 3px; }
.checks-inline { text-align: left; display: inline-block; margin-top: .5rem; }
.loc-aside-actions { display: flex; flex-wrap: wrap; gap: .5rem; }

/* U-19: print */
@media print {
    .site-foot, .site-foot * { color: #000 !important; }
    a[href^="tel"]::after { content: none; }
}
