/* ==========================================================================
   North Hill Denture Clinic - main stylesheet
   Design system: LP-aligned (Source Sans 3 headings, orange CTAs, 14px radius)
   ========================================================================== */

/* Design tokens
   -------------------------------------------------------------------------- */
:root {
    --brand:        #669255;
    --brand-dark:   #3f5f30;
    --brand-tint:   #eef3e9;
    --accent:       #e8852a;
    --accent-dark:  #cf7016;
    --ink:          #1f261c;
    --muted:        #5c645a;
    --line:         #e0e5da;
    --bg:           #ffffff;
    --bg-soft:      #f6f8f3;
    --ok:           #3f7a32;
    --star:         #f4b323;
    --white:        #ffffff;

    --font-body:    'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-head:    'Source Sans 3', 'Open Sans', system-ui, sans-serif;

    --fs-body:      18px;
    --fs-small:     14px;
    --fs-h1:        clamp(2rem, 5vw, 3.25rem);
    --fs-h2:        clamp(1.6rem, 3.6vw, 2.4rem);
    --fs-h3:        clamp(1.25rem, 2vw, 1.6rem);
    --fs-h4:        1.125rem;
    --lh-body:      1.7;
    --lh-head:      1.2;

    --radius:       14px;
    --radius-sm:    8px;
    --radius-pill:  999px;
    --shadow:       0 10px 30px rgba(38,58,28,.14);
    --shadow-sm:    0 2px 8px rgba(38,58,28,.08);

    --maxw:         1080px;
    --maxw-narrow:  760px;
    --transition:   200ms ease;
}

/* Base / reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--muted);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--ink);
    line-height: var(--lh-head);
    margin: 0 0 1rem;
    font-weight: 800;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
h4 { font-size: var(--fs-h4); font-weight: 700; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.35rem; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

/* Accessibility */
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; width: 1px; margin: -1px; overflow: hidden;
    padding: 0; position: absolute !important; word-wrap: normal !important;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--accent); color: #fff;
    padding: 0.75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Layout primitives
   -------------------------------------------------------------------------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.container.narrow { max-width: var(--maxw-narrow); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.section.soft { background: var(--bg-soft); }
.section.ink { background: var(--ink); color: #fff; }
.section.ink h1, .section.ink h2, .section.ink h3 { color: #fff; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }

/* Eyebrow label (pill above headline)
   -------------------------------------------------------------------------- */
.eyebrow {
    display: inline-block;
    background: var(--brand-tint);
    color: var(--brand-dark);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.85rem;
}
.hero .eyebrow { background: rgba(255,255,255,0.2); color: #fff; }

/* Trust strip (bullet list of proof points)
   -------------------------------------------------------------------------- */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}
.trust-strip li { position: relative; padding-left: 1rem; margin: 0; }
.trust-strip li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
}

/* Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius);
    background: var(--accent);
    color: #fff !important;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--accent);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    line-height: 1.2;
    white-space: nowrap;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow); color: #fff !important; }
.btn.btn-outline { background: transparent; color: var(--accent) !important; border-color: var(--accent); }
.btn.btn-outline:hover { background: var(--accent); color: #fff !important; }
.btn.btn-white { background: #fff; color: var(--brand-dark) !important; border-color: #fff; }
.btn.btn-white:hover { background: var(--brand-tint); border-color: var(--brand-tint); }
.btn.btn-green { background: var(--brand); color: #fff !important; border-color: var(--brand); }
.btn.btn-green:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.875rem; }
.btn.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* Header
   -------------------------------------------------------------------------- */
.site-header {
    background: #fff;
    box-shadow: 0 1px 0 var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    gap: 1.5rem;
}
.site-logo img { max-height: 56px; width: auto; }
.site-logo a { display: block; }

.primary-nav > ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 0; align-items: center;
}
.primary-nav > ul > li { position: relative; margin: 0; }
.primary-nav > ul > li > a {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 0.75rem 1rem;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-head);
    transition: color var(--transition);
}
.primary-nav > ul > li > a:hover { color: var(--brand); }
.primary-nav .caret { font-size: 0.65rem; opacity: 0.6; margin-top: 1px; }
.primary-nav .sub-menu {
    position: absolute; top: 100%; left: 0;
    background: #fff;
    list-style: none; padding: 0.5rem 0; margin: 0;
    min-width: 260px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    opacity: 0; visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 110;
    border-top: 3px solid var(--brand);
}
.primary-nav .has-children:hover > .sub-menu,
.primary-nav .has-children:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav .sub-menu li { margin: 0; }
.primary-nav .sub-menu a {
    display: block; padding: 0.6rem 1.25rem;
    color: var(--ink); font-size: 0.9rem; font-weight: 500;
    font-family: var(--font-body);
    transition: background var(--transition), color var(--transition);
}
.primary-nav .sub-menu a:hover { background: var(--brand-tint); color: var(--brand-dark); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone-link {
    color: var(--ink);
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 0.95rem;
    white-space: nowrap;
}
.header-phone-link:hover { color: var(--brand); }

.menu-toggle {
    display: none;
    background: none; border: none;
    width: 44px; height: 44px;
    padding: 0;
    color: var(--ink);
    align-items: center; justify-content: center;
}
.menu-toggle .bar { display: block; width: 24px; height: 2px; background: currentColor; position: relative; }
.menu-toggle .bar::before, .menu-toggle .bar::after {
    content: ''; position: absolute; left: 0;
    width: 24px; height: 2px; background: currentColor;
}
.menu-toggle .bar::before { top: -7px; }
.menu-toggle .bar::after { top: 7px; }

.mobile-drawer {
    position: fixed; inset: 0 0 0 auto;
    width: min(360px, 90vw);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    transition: transform 280ms ease;
    z-index: 200;
    padding: 4rem 1.5rem 6rem;
    overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer .mobile-menu > li > a {
    display: block; padding: 0.9rem 0;
    color: var(--ink); font-weight: 700;
    font-family: var(--font-head); font-size: 1rem;
    border-bottom: 1px solid var(--line);
}
.mobile-drawer .mobile-menu > li > a:hover { color: var(--brand); }
.mobile-drawer-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none;
    font-size: 1.5rem; line-height: 1;
    width: 44px; height: 44px; cursor: pointer;
    color: var(--ink);
}
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(31,38,28,0.45);
    opacity: 0; visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 190;
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }
body.has-mobile-menu { overflow: hidden; }

/* Mobile callbar (fixed bottom - phones only)
   -------------------------------------------------------------------------- */
.callbar {
    display: none;
}
@media (max-width: 767px) {
    .callbar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 150;
        background: var(--ink);
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    .callbar a {
        flex: 1;
        display: flex; align-items: center; justify-content: center;
        gap: 0.4rem;
        padding: 0.75rem 0.5rem;
        border-radius: var(--radius-sm);
        font-family: var(--font-head);
        font-weight: 700;
        font-size: 0.9rem;
        text-align: center;
        color: #fff !important;
    }
    .callbar a.callbar-phone { background: var(--brand); }
    .callbar a.callbar-book { background: var(--accent); }
    body { padding-bottom: 70px; }
}

/* Hero (homepage - green gradient, 2-col)
   -------------------------------------------------------------------------- */
.hero {
    background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 5rem 0;
    overflow: hidden;
}
.hero .wrap {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 3.5rem;
    align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero .lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    max-width: 520px;
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Hero form card (right column variant)
   -------------------------------------------------------------------------- */
.hero-form-card {
    background: #fff;
    color: var(--muted);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero-form-card h3 {
    color: var(--ink);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 0.25rem;
}
.hero-form-card .sub {
    font-size: 0.875rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 1.25rem;
}

/* Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
    background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 3.5rem 0 3rem;
    text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumbs { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 0.5rem; }
.breadcrumbs a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { margin: 0 0.4rem; opacity: 0.6; }

/* Cards (service, feature)
   -------------------------------------------------------------------------- */
.card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card .tick {
    display: flex; align-items: center; gap: 0.75rem;
    font-weight: 700; color: var(--ink); font-family: var(--font-head);
    margin-bottom: 0.75rem;
}
.card .tick::before {
    content: '';
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--brand-tint);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23669255'%3E%3Cpath d='M13.5 4.5l-7 7L3 8'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    border: 1.5px solid var(--brand);
}

.service-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex; flex-direction: column;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card .icon {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    background: var(--brand-tint);
    border-radius: var(--radius-pill);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--brand);
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--ink); }
.service-card p { font-size: 0.9rem; flex: 1; }
.service-card .card-link {
    color: var(--accent); font-weight: 700; font-size: 0.875rem;
    margin-top: auto; padding-top: 0.5rem;
    display: inline-flex; align-items: center; gap: 0.25rem;
}
.service-card .card-link:hover { color: var(--accent-dark); }

/* Steps (numbered process)
   -------------------------------------------------------------------------- */
.steps { counter-reset: steps; list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.step {
    counter-increment: steps;
    display: flex; gap: 1.25rem; align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.step::before {
    content: counter(steps);
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.9rem; margin: 0; }

/* Why-choose list (checkmark list)
   -------------------------------------------------------------------------- */
.why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.why-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.95rem; font-weight: 500;
}
.why-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px; height: 20px; margin-top: 2px;
    border-radius: 50%;
    background: var(--ok);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5'/%3E%3C/svg%3E");
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
}

/* FAQ accordion
   -------------------------------------------------------------------------- */
.faq-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.faq-list details {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-list details[open] { border-color: var(--brand); }
.faq-list summary {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.35rem; font-weight: 400; line-height: 1;
    color: var(--brand);
    transition: transform var(--transition);
}
.faq-list details[open] summary::after { content: '-'; }
.faq-list .faq-body {
    padding: 0 1.25rem 1.1rem;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}
.faq-list .faq-body p:last-child { margin: 0; }

/* Form band (green gradient section with inline form)
   -------------------------------------------------------------------------- */
.form-band {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    padding: 5rem 0;
}
.form-band .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.form-band-copy h2 { color: #fff; }
.form-band-copy p { color: rgba(255,255,255,0.88); font-size: 1.05rem; }
.form-band-copy .why-list li { color: rgba(255,255,255,0.92); }
.form-band-copy .why-list li::before { background: rgba(255,255,255,0.9); }
.form-band-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.form-band-card h3 { font-size: 1.2rem; text-align: center; margin-bottom: 0.25rem; }
.form-band-card .sub { font-size: 0.875rem; color: var(--muted); text-align: center; margin-bottom: 1.25rem; }

/* Forms
   -------------------------------------------------------------------------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-field { margin-bottom: 0.85rem; }
.form-field label {
    display: block; font-size: 0.8rem; font-weight: 700;
    color: var(--ink); margin-bottom: 0.3rem;
    font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em;
}
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    color: var(--ink);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102,146,85,0.16);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-actions { margin-top: 0.5rem; }
.form-actions .btn { width: 100%; }

/* Reviews
   -------------------------------------------------------------------------- */
.reviews-header { text-align: center; margin-bottom: 2.5rem; }
.reviews-header .rating {
    display: inline-flex; align-items: center; gap: 0.75rem;
    margin-top: 0.75rem;
}
.reviews-header .score { font-size: 2.25rem; font-weight: 800; color: var(--ink); font-family: var(--font-head); }
.reviews-header .stars { display: flex; gap: 2px; color: var(--star); font-size: 1.2rem; }
.review-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.review-card {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 0.75rem;
}
.review-card .stars { color: var(--star); font-size: 1rem; letter-spacing: 1px; }
.review-card .quote { font-size: 0.9rem; line-height: 1.65; color: var(--muted); flex: 1; }
.review-card .reviewer { font-size: 0.85rem; font-weight: 700; color: var(--ink); font-family: var(--font-head); }

/* Google review CTA
   -------------------------------------------------------------------------- */
.review-cta {
    text-align: center;
    margin-top: 2rem;
}
.review-cta p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.75rem; }

/* Trust bar (logos)
   -------------------------------------------------------------------------- */
.trust-bar { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2rem 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-bar img { max-height: 40px; opacity: 0.75; transition: opacity var(--transition); }
.trust-bar img:hover { opacity: 1; }

/* Why-choose split (image left, list right)
   -------------------------------------------------------------------------- */
.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-split-media { border-radius: var(--radius); overflow: hidden; }
.why-split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Location block
   -------------------------------------------------------------------------- */
.location-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.location-map { aspect-ratio: 16/10; background: var(--bg-soft); border-radius: var(--radius); overflow: hidden; }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-meta {
    background: var(--brand);
    color: #fff;
    padding: 1.75rem;
    border-radius: var(--radius);
}
.location-meta h3 { color: #fff; margin-bottom: 1rem; }
.location-meta address { font-style: normal; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.location-meta a { color: #fff; text-decoration: underline; }
.location-hours { list-style: none; padding: 0; margin: 0; }
.location-hours li {
    display: flex; justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255,255,255,0.9);
}
.location-hours li:last-child { border-bottom: 0; }

/* CTA strip
   -------------------------------------------------------------------------- */
.cta-strip {
    background: var(--accent);
    padding: 3.5rem 0;
    text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-strip p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.cta-strip .btn { background: #fff; color: var(--accent-dark) !important; border-color: #fff; }
.cta-strip .btn:hover { background: var(--brand-tint); border-color: var(--brand-tint); color: var(--accent-dark) !important; }

/* Stat pills (numeric callouts)
   -------------------------------------------------------------------------- */
.stat-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1.75rem 0; }
.stat {
    background: rgba(255,255,255,0.18);
    border-radius: var(--radius);
    padding: 0.9rem 1.25rem;
    text-align: center;
    min-width: 100px;
}
.stat .num { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.stat .label { font-size: 0.75rem; color: rgba(255,255,255,0.8); margin-top: 0.2rem; }

/* Prose
   -------------------------------------------------------------------------- */
.prose { max-width: var(--maxw-narrow); margin: 0 auto; }
.prose h2 { font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.prose h3 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.5rem; }
.prose p { font-size: 1rem; line-height: 1.8; }
.prose ul li, .prose ol li { font-size: 1rem; line-height: 1.75; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose blockquote {
    border-left: 4px solid var(--brand);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--muted);
    font-style: italic;
}

/* Blog cards
   -------------------------------------------------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.post-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex; flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-card .thumb { aspect-ratio: 16/10; background: var(--bg-soft); overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.post-card .meta { font-size: 0.8rem; color: var(--muted); }
.post-card h3 { font-size: 1.1rem; margin: 0; }
.post-card .excerpt { font-size: 0.9rem; flex: 1; }
.post-card .read-more { color: var(--accent); font-weight: 700; font-size: 0.875rem; margin-top: auto; }

/* Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 1rem; }
.footer-brand img { max-width: 180px; filter: brightness(0) invert(1); }
.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-head);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.9); }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
    width: 34px; height: 34px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75);
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--brand); color: #fff; }

/* Landing page specific (no header/footer)
   -------------------------------------------------------------------------- */
.ad-landing-main { min-height: 100vh; }

/* Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero .wrap { grid-template-columns: 1fr; gap: 2rem; }
    .hero-media { display: none; }
    .why-split { grid-template-columns: 1fr; }
    .location-block { grid-template-columns: 1fr; }
    .form-band .wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    :root { --fs-body: 16px; }
    .primary-nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .header-phone-link { display: none; }
    .section { padding: 3rem 0; }
    .hero { padding: 3rem 0; }
    .form-band { padding: 3rem 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-bottom { justify-content: center; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .review-cards { grid-template-columns: 1fr; }
    .stat-row { gap: 0.75rem; }
}
@media (max-width: 520px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .wrap { padding-left: 1rem; padding-right: 1rem; }
    .hero-form-card, .form-band-card { padding: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
