/* ============================================================
   Guardian Medical Services — Stylesheet
   Brand: Star-of-life shield. Navy + medical blue.
   Pure CSS, no frameworks.
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- Design Tokens ---------- */
:root {
    /* Brand palette (from logo) */
    --navy:        #143041;  /* deep shield navy */
    --navy-deep:   #0e2532;  /* darkest backgrounds */
    --navy-mid:    #1d4257;  /* mid navy accents */
    --blue:        #2c87a8;  /* primary medical blue */
    --blue-light:  #3ba6cb;  /* hover / lighter accent */
    --blue-dim:    #246f8c;  /* muted blue */
    --sky:         #e9f4f8;  /* light tinted section bg */
    --sky-soft:    #f3f9fb;  /* softest tinted bg */

    /* Neutrals */
    --white:       #ffffff;
    --off-white:   #f7fafb;
    --text-dark:   #21323c;  /* headings / strong text */
    --text:        #3f5560;  /* body text */
    --text-light:  #5d6d77;  /* muted text (AA contrast on white) */
    --border:      #dde7eb;

    /* System */
    --shadow-sm: 0 2px 8px rgba(20, 48, 65, 0.06);
    --shadow:    0 6px 24px rgba(20, 48, 65, 0.10);
    --shadow-lg: 0 16px 48px rgba(20, 48, 65, 0.16);
    --radius:    14px;
    --radius-sm: 10px;
    --maxw:      1200px;
    --nav-h:     84px;
    --ease:      cubic-bezier(0.4, 0, 0.2, 1);

    --font-display: 'Poppins', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

a { color: var(--blue); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--blue-light); }

img { max-width: 100%; display: block; }

section { position: relative; }

/* ---------- Layout helpers ---------- */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5.5rem 0;
}
.section--tight { padding: 4rem 0; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}
.section-head.left { text-align: left; margin-left: 0; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.9rem;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
}
.section-head p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.accent-line {
    width: 56px;
    height: 4px;
    background: var(--blue);
    border-radius: 2px;
    margin: 1.1rem auto 0;
}
.section-head.left .accent-line { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.02rem;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(44, 135, 168, 0.30);
}
.btn-primary:hover {
    background: var(--blue-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(44, 135, 168, 0.42);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.1rem; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.nav-logo-icon { height: 46px; width: auto; }
.nav-logo .logo-fallback {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1;
    color: var(--navy);
}
.nav-logo .logo-fallback .lf-main { font-size: 1.2rem; letter-spacing: 0.02em; }
.nav-logo .logo-fallback .lf-sub {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: var(--blue);
    font-weight: 600;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
    padding: 0.4rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--blue);
    transition: width 0.25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    color: var(--navy);
}
.nav-phone:hover { color: var(--blue); }
.nav-phone svg { width: 18px; height: 18px; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    background:
        radial-gradient(900px 500px at 80% -10%, rgba(59, 166, 203, 0.22), transparent 60%),
        linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
    color: #fff;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}
.hero-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 5.5rem 1.5rem 6rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 166, 203, 0.16);
    border: 1px solid rgba(59, 166, 203, 0.4);
    color: #cfeaf3;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.6rem;
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25);
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    margin-bottom: 1.3rem;
}
.hero h1 .hl { color: var(--blue-light); }
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust {
    margin-top: 2.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem 2rem;
}
.hero-trust .ht {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
    font-weight: 500;
}
.hero-trust .ht svg { width: 20px; height: 20px; color: var(--blue-light); flex-shrink: 0; }

.hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-art .logo-glow {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 26px;
    padding: 2.6rem 2.9rem;
    box-shadow: 0 26px 64px rgba(0,0,0,0.38);
}
.hero-art .hero-logo { width: 300px; height: auto; display: block; }
.hero-art .shield-svg { width: 200px; height: auto; }

/* ============================================================
   Trust bar
   ============================================================ */
.trustbar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.85);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.trustbar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.5rem;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
}
.trustbar .ti {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
    font-size: 0.98rem;
}
.trustbar .ti svg { width: 26px; height: 26px; color: var(--blue-light); }

/* ============================================================
   Service cards
   ============================================================ */
.grid {
    display: grid;
    gap: 1.6rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.1rem;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
    position: relative;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--sky);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all 0.28s var(--ease);
}
.card:hover .card-icon { background: var(--blue); color: #fff; }
.card-icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.card p { color: var(--text-light); font-size: 1.02rem; }

/* Service detail card with number */
.service-card { padding-top: 2.4rem; }
.service-card .num {
    position: absolute;
    top: 1.3rem; right: 1.6rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--sky);
    line-height: 1;
}
.service-card:hover .num { color: #e0eff4; }

/* Feature list */
.feature-list { list-style: none; margin-top: 1rem; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: var(--text);
}
.feature-list li svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   Why us / feature strip
   ============================================================ */
.why {
    background: var(--navy-deep);
    color: #fff;
    background-image:
        radial-gradient(700px 400px at 90% 110%, rgba(44,135,168,0.20), transparent 60%);
}
.why .section-head h2 { color: #fff; }
.why .section-head p { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.why-item {
    padding: 1.8rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    transition: background 0.25s var(--ease);
}
.why-item:hover { background: rgba(255,255,255,0.07); }
.why-item .wi-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(59,166,203,0.18);
    color: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
}
.why-item .wi-icon svg { width: 26px; height: 26px; }
.why-item h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.5rem; }
.why-item p { color: rgba(255,255,255,0.72); font-size: 0.98rem; }

/* ============================================================
   Steps / How it works
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .step-num {
    width: 64px; height: 64px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(44,135,168,0.30);
    position: relative;
    z-index: 1;
}
.step h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-light); font-size: 0.98rem; }
/* connecting line */
.steps .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px; left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

/* ============================================================
   Service area
   ============================================================ */
.area-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.county-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
}
.county-grid .county {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s var(--ease);
}
.county-grid .county:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.county-grid .county svg { width: 18px; height: 18px; color: var(--blue); }

/* ============================================================
   Booking form
   ============================================================ */
.book-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
}
.book-aside { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.book-aside h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.book-aside p { color: var(--text-light); margin-bottom: 1.8rem; }
.aside-card {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.8rem;
    margin-top: 1.5rem;
}
.aside-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.aside-card ul { list-style: none; }
.aside-card li {
    display: flex; align-items: flex-start; gap: 0.7rem;
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.96rem;
}
.aside-card li svg { width: 20px; height: 20px; color: var(--blue-light); flex-shrink: 0; margin-top: 3px; }

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.privacy-note {
    display: flex;
    gap: 0.7rem;
    background: var(--sky);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.8rem;
    font-size: 0.9rem;
    color: var(--navy-mid);
}
.privacy-note svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

.form-group { margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.form-group label .req { color: var(--blue); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(44, 135, 168, 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: 0.85rem; color: var(--text-light); margin-top: 0.35rem; }

.success-message {
    display: none;
    background: #e7f6ec;
    border: 1px solid #b6e0c4;
    color: #1c6b3a;
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.success-message.show { display: flex; gap: 0.7rem; align-items: flex-start; }
.success-message svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================
   Team
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem;
    text-align: center;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar {
    width: 96px; height: 96px;
    margin: 0 auto 1.3rem;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--navy), var(--blue));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.team-avatar svg { width: 44px; height: 44px; }
.team-card h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.team-card .role { color: var(--blue); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.9rem; }
.team-card p { color: var(--text-light); font-size: 0.98rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.2s var(--ease);
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--blue); }
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--text-dark);
    list-style: none;
}
.faq-q:hover { color: var(--blue); }
.faq-q .chev {
    width: 24px; height: 24px;
    flex-shrink: 0;
    color: var(--blue);
    transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s var(--ease);
}
.faq-a-inner { padding: 0 1.5rem 1.4rem; color: var(--text-light); }

/* ============================================================
   CTA banner
   ============================================================ */
.cta {
    background:
        radial-gradient(700px 360px at 15% 120%, rgba(59,166,203,0.30), transparent 60%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    text-align: center;
}
.cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 560px; margin: 0 auto 2.2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Sub-page hero (banner)
   ============================================================ */
.page-hero {
    background:
        radial-gradient(700px 380px at 85% -20%, rgba(59,166,203,0.20), transparent 60%),
        linear-gradient(150deg, var(--navy-deep), var(--navy));
    color: #fff;
    padding: 4rem 0 4.2rem;
    text-align: center;
}
.page-hero .eyebrow { color: var(--blue-light); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.5vw, 3rem); margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 620px; margin: 0 auto; }
.breadcrumb {
    margin-top: 1.4rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
}
.breadcrumb a { color: rgba(255,255,255,0.95); }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem;
    text-align: center;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-card .cc-icon {
    width: 58px; height: 58px;
    margin: 0 auto 1.1rem;
    border-radius: 14px;
    background: var(--sky);
    color: var(--blue);
    display: flex; align-items: center; justify-content: center;
}
.contact-card .cc-icon svg { width: 28px; height: 28px; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.contact-card p { color: var(--text-light); }
.contact-card a { font-weight: 600; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.72);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.1rem; }
.footer-logo-icon { height: 54px; width: auto; }
.footer-brand .logo-fallback { color: #fff; }
.footer-brand .logo-fallback .lf-main { font-size: 1.25rem; }
.footer-brand .logo-fallback .lf-sub { color: var(--blue-light); }
.footer-brand p { font-size: 0.96rem; max-width: 320px; }
.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.1rem;
    font-family: var(--font-display);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.96rem; }
.footer-col a:hover { color: var(--blue-light); }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.96rem;
    margin-bottom: 0.8rem;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--blue-light); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom .disclaimer { max-width: 760px; margin: 0 auto 0.6rem; line-height: 1.6; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .reveal.d1, .reveal.d2, .reveal.d3 { transition-delay: 0s; }
    .faq-q .chev { transition: none; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   Keyboard focus indicators (visible only for keyboard users)
   ============================================================ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-links a:focus-visible,
.nav-phone:focus-visible,
.nav-toggle:focus-visible,
.faq-q:focus-visible,
.county:focus-visible {
    outline: 3px solid var(--blue-light);
    outline-offset: 2px;
    border-radius: 6px;
}
/* On dark backgrounds, use a lighter ring for contrast */
.hero a:focus-visible,
.cta a:focus-visible,
.why a:focus-visible,
.site-footer a:focus-visible,
.page-hero a:focus-visible {
    outline-color: #ffffff;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-art { order: -1; }
    .hero-art img, .hero-art .shield-svg { width: 170px; }
    .book-layout { grid-template-columns: 1fr; gap: 2rem; }
    .book-aside { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 820px) {
    :root { --nav-h: 72px; }
    .nav-links {
        position: fixed;
        top: var(--nav-h); right: 0;
        height: calc(100vh - var(--nav-h));
        width: min(78vw, 320px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 1.8rem;
        box-shadow: -8px 0 30px rgba(0,0,0,0.12);
        transform: translateX(100%);
        transition: transform 0.32s var(--ease);
        border-left: 1px solid var(--border);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { width: 100%; padding: 0.7rem 0; font-size: 1.08rem; border-bottom: 1px solid var(--border); }
    .nav-links a::after { display: none; }
    .nav-toggle { display: flex; }
    .nav-phone span { display: none; }
    .grid-3, .why-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .steps .step::after { display: none; }
    .area-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
    .section { padding: 4rem 0; }
    .form-row { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions, .cta-actions { flex-direction: column; }
    .hero-actions .btn, .cta-actions .btn { width: 100%; }
    .form-card { padding: 1.6rem; }
    .county-grid { grid-template-columns: 1fr; }
}
