/* ============================================================
   GlobalHome USA, Heritage Navy & Gold
   Brand: Heritage Navy #1A3A5C, Heritage Gold #C9A961
          Deep Navy #0E2A47, Bronze #8A7A4C, Paper #FFFFFF
   ============================================================ */

/* ─── Self-hosted Inter (no external font requests) ───────── */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/inter/inter-latin-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/inter/inter-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/inter/inter-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/inter/inter-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/inter/inter-latin-800.woff2') format('woff2');
}

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
    --navy:         #1A3A5C;
    --navy-deep:    #0E2A47;
    --navy-soft:    #2A4A6F;
    --gold:         #C9A961;
    --gold-deep:    #B8954A;
    --gold-soft:    #E5D4A1;
    --bronze:       #8A7A4C;
    --paper:        #FFFFFF;
    --ink:          #1F2937;
    --ink-soft:     #4B5563;
    --ink-faint:    #6B7280;
    --line:         #E5E7EB;
    --line-strong:  #CBD5E1;
    --bg:           #FFFFFF;
    --bg-alt:       #F7F9FC;
    --bg-deep:      #0E2A47;

    --radius:       10px;
    --radius-sm:    6px;
    --radius-lg:    18px;
    --shadow-sm:    0 2px 8px rgba(14, 42, 71, 0.06);
    --shadow:       0 8px 28px rgba(14, 42, 71, 0.10);
    --shadow-lg:    0 16px 56px rgba(14, 42, 71, 0.16);
    --shadow-gold:  0 8px 24px rgba(201, 169, 97, 0.30);

    --font:         'Inter', 'Helvetica Neue', Arial, sans-serif;

    --container:    1200px;
    --pad-x:        clamp(20px, 4vw, 32px);

    --header-h:     96px;
    --topbar-h:     38px;

    --easing:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: var(--navy); text-decoration: none; transition: color 0.15s var(--easing); }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--navy-deep);
    margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: 0.35em; color: var(--ink-soft); }

::selection { background: var(--gold-soft); color: var(--navy-deep); }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
}
section { padding: clamp(56px, 8vw, 96px) 0; }
section.bg-alt    { background: var(--bg-alt); }
section.bg-navy   { background: var(--navy-deep); color: #fff; }
section.bg-navy h1, section.bg-navy h2, section.bg-navy h3 { color: #fff; }
section.bg-navy p { color: rgba(255,255,255,0.82); }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--gold); color: var(--navy-deep); padding: 10px 16px;
    font-weight: 700; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ─── Topbar ─────────────────────────────────────────────── */
.topbar {
    background: var(--navy-deep);
    color: #fff;
    font-size: 13px;
    line-height: 1;
}
.topbar-inner {
    height: var(--topbar-h);
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar-link { color: #fff; }
.topbar-link:hover { color: var(--gold); }
.topbar-link strong { color: var(--gold); font-weight: 600; margin-right: 4px; }
.topbar-divider { opacity: 0.35; }
.topbar-badge {
    display: inline-block; background: var(--gold); color: var(--navy-deep);
    padding: 3px 9px; border-radius: 999px; font-weight: 700; font-size: 11.5px;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.topbar-lang { display: inline-flex; align-items: center; gap: 8px; }
.topbar-lang-active { color: var(--gold); font-weight: 700; }

/* On phones the topbar collapses to just the language toggle to keep the
   bar a single line. Phone numbers are still in the header CTA, hero,
   contact page, and footer, so we are not losing access to them. */
@media (max-width: 720px) {
    .topbar-left { display: none; }
    .topbar-right > .topbar-link,
    .topbar-right > .topbar-divider { display: none; }
    .topbar-inner { justify-content: center; gap: 0; }
    .topbar { font-size: 12px; }
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.2s var(--easing);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    height: var(--header-h);
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 64px; width: auto; flex-shrink: 0; }
@media (max-width: 980px) { .logo-img { height: 60px; } }
@media (max-width: 480px) { .logo-img { height: 52px; } }

.nav-desktop { display: flex; }
.nav-list {
    display: flex; gap: 2px; list-style: none; margin: 0; padding: 0;
    align-items: center;
}
.nav-list li { margin: 0; }
.nav-link {
    display: inline-block; padding: 8px 10px;
    color: var(--navy-deep); font-weight: 600; font-size: 14.5px;
    border-radius: var(--radius-sm); position: relative;
    white-space: nowrap;
}
.nav-link:hover { color: var(--gold-deep); background: var(--bg-alt); }
.nav-link.active { color: var(--gold-deep); }
.nav-link.active::after {
    content: ''; position: absolute; left: 12px; right: 12px; bottom: 2px;
    height: 2px; background: var(--gold); border-radius: 2px;
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
    display: none; background: none; border: 0;
    width: 44px; height: 44px; padding: 10px;
    flex-direction: column; justify-content: space-between; align-items: center;
}
.hamburger-line {
    display: block; width: 24px; height: 2px; background: var(--navy-deep);
    border-radius: 2px; transition: transform 0.2s var(--easing), opacity 0.2s var(--easing);
}

.nav-mobile {
    background: #fff; border-top: 1px solid var(--line);
    padding: 12px 0 24px;
}
.mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.mobile-nav-list li { margin: 0; }
.mobile-nav-link {
    display: block; padding: 12px var(--pad-x);
    color: var(--navy-deep); font-weight: 600; border-bottom: 1px solid var(--line);
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--bg-alt); color: var(--gold-deep); }
.mobile-cta {
    margin: 12px var(--pad-x) 0; background: var(--gold); color: var(--navy-deep) !important;
    text-align: center; border-radius: var(--radius-sm); border: 0 !important;
}

@media (max-width: 980px) {
    .nav-desktop { display: none !important; }
    .nav-cta { display: none !important; }
    .nav-toggle { display: flex; }
    .header-inner { gap: 12px; }
    :root { --header-h: 80px; }
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 15px; line-height: 1;
    border: 2px solid transparent; cursor: pointer; text-decoration: none !important;
    transition: transform 0.15s var(--easing), box-shadow 0.2s var(--easing), background 0.2s var(--easing), color 0.2s var(--easing);
    white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--navy-deep); color: #fff;
}
.btn-primary:hover { background: var(--navy); color: #fff; box-shadow: var(--shadow); }

.btn-gold {
    background: var(--gold); color: var(--navy-deep);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-deep); color: #fff; }

.btn-outline-navy {
    background: transparent; color: var(--navy-deep); border-color: var(--navy-deep);
}
.btn-outline-navy:hover { background: var(--navy-deep); color: #fff; }

.btn-outline-white {
    background: transparent; color: #fff; border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: #fff; color: var(--navy-deep); }

.btn-white {
    background: #fff; color: var(--navy-deep);
}
.btn-white:hover { box-shadow: var(--shadow); }

/* ─── Eyebrow & section heading ─────────────────────────── */
.eyebrow {
    display: inline-block; font-size: 12.5px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--bronze); margin-bottom: 12px;
}
.eyebrow-gold { color: var(--gold); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-heading p { font-size: 1.05rem; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold-deep); }

/* Visually hidden but available to assistive tech (screen readers, voice control). */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* Button group, used wherever 2+ buttons sit side-by-side. Wraps cleanly
   on small screens and stacks full-width below 520px for tappability. */
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 0;
}
.text-center .btn-row { justify-content: center; }
@media (max-width: 520px) {
    .btn-row { flex-direction: column; align-items: stretch; }
    .btn-row .btn { width: 100%; }
    /* Catch standalone buttons across all page contexts on mobile */
    .hero-ctas .btn,
    .plan-card .btn,
    .audience-tile .btn,
    .footer-cta-actions .btn,
    .card > .btn,
    .card > p > .btn,
    p > .btn:only-child { width: 100%; justify-content: center; }
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
    color: #fff;
    padding: clamp(72px, 10vw, 132px) 0 clamp(80px, 11vw, 144px);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(900px 480px at 80% -10%, rgba(201,169,97,0.18), transparent 60%),
        radial-gradient(700px 400px at 0% 100%, rgba(201,169,97,0.10), transparent 60%);
}
.hero::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 64px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,169,97,0.18); color: var(--gold);
    padding: 6px 14px; border-radius: 999px;
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 20px; border: 1px solid rgba(201,169,97,0.32);
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .accent { color: var(--gold); }
.hero-sub {
    color: rgba(255,255,255,0.86); font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.65; max-width: 580px; margin-bottom: 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 22px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-trust-item {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
}
.hero-trust-item svg { color: var(--gold); flex: 0 0 auto; }

.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-lg);
}
.hero-card-shield {
    width: 84px; height: 84px; margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gold); border-radius: 999px; color: var(--navy-deep);
    box-shadow: 0 12px 32px rgba(201,169,97,0.4);
}
.hero-card h3 { color: #fff; text-align: center; margin-bottom: 6px; }
.hero-card-h2 { font-size: 1.4rem; font-weight: 800; margin: 0 0 8px; line-height: 1.25; color: #fff; text-align: center; letter-spacing: -0.01em; }
.hero-card .lead { color: rgba(255,255,255,0.78); text-align: center; margin-bottom: 24px; }
.hero-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-stat {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius); padding: 18px; text-align: center;
}
.hero-stat-num {
    display: block; font-size: 1.9rem; font-weight: 800; color: var(--gold);
    line-height: 1; margin-bottom: 6px;
}
.hero-stat-label { font-size: 12.5px; color: rgba(255,255,255,0.78); }

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-card { max-width: 460px; margin: 0 auto; }
}

/* ─── Reveal animation ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s var(--easing), transform 0.55s var(--easing); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ─── Grids ──────────────────────────────────────────────── */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing), border-color 0.2s var(--easing);
    height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-soft); }

.icon-wrap {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: var(--gold); margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(14,42,71,0.18);
}

/* ─── How It Works (steps) ──────────────────────────────── */
.steps { display: grid; gap: 24px; counter-reset: step; }
.step-card {
    position: relative;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 32px 28px 28px;
    box-shadow: var(--shadow-sm);
}
.step-num {
    position: absolute; top: -22px; left: 28px;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--gold); color: var(--navy-deep);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px;
    box-shadow: var(--shadow-gold);
}
.step-card h3 { margin-top: 4px; }

/* ─── Plan cards (Gold/Platinum/Elite) ──────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
@media (max-width: 980px) { .plan-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

.plan-card {
    position: relative;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 36px 30px 30px; display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm); transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing);
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan-card .plan-badge {
    display: inline-block; background: var(--bg-alt); color: var(--bronze);
    font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 11px; border-radius: 999px; margin-bottom: 16px;
}
.plan-card h3 { font-size: 1.6rem; margin-bottom: 4px; }
.plan-card .plan-line { color: var(--ink-faint); font-size: 14px; margin-bottom: 22px; }

.plan-card.is-featured {
    border-color: var(--gold); box-shadow: 0 18px 48px rgba(201,169,97,0.22);
    transform: translateY(-6px);
}
.plan-card.is-featured .plan-badge { background: var(--gold); color: var(--navy-deep); }
.plan-card.is-featured::before {
    content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--navy-deep); color: var(--gold);
    font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow);
    white-space: nowrap;
}
[lang="es"] .plan-card.is-featured::before { content: 'Más Popular'; }

.plan-list { list-style: none; padding: 0; margin: 0 0 24px; }
.plan-list li {
    position: relative; padding: 8px 0 8px 28px; border-bottom: 1px dashed var(--line);
    color: var(--ink); font-size: 14.5px; margin-bottom: 0;
}
.plan-list li:last-child { border-bottom: 0; }
.plan-list li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 18px; height: 18px; border-radius: 999px;
    background: var(--gold) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230E2A47' stroke-width='2.5'><polyline points='3 8 6.5 11.5 13 4.5'/></svg>") center/12px no-repeat;
}
.plan-list li.muted { color: var(--ink-faint); }
.plan-list li.muted::before { background: var(--bg-alt); }

.plan-card .btn { margin-top: auto; }

/* ─── Stat strip ─────────────────────────────────────────── */
.stat-strip {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    padding: 36px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: #fff; border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.stat-strip .stat { text-align: center; }
.stat-strip .stat-num {
    display: block; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800;
    color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-strip .stat-label { font-size: 13.5px; color: rgba(255,255,255,0.85); }
@media (max-width: 800px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ─── Audience tiles (buyers/sellers/agents) ────────────── */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .audience { grid-template-columns: 1fr; } }
.audience-tile {
    padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--line);
    background: #fff; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.audience-tile .tile-eyebrow {
    color: var(--gold-deep); font-weight: 700; font-size: 12px;
    letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px;
}
.audience-tile .tile-stat {
    display: block; font-size: 2.4rem; font-weight: 800; color: var(--navy-deep);
    line-height: 1.1; margin-bottom: 6px;
}
.audience-tile p { flex: 1; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section { max-width: 880px; margin: 0 auto 48px; }
.faq-section:last-child { margin-bottom: 0; }
.faq-section-title {
    font-size: 1.4rem;
    color: var(--navy-deep);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden;
    transition: border-color 0.2s var(--easing), box-shadow 0.2s var(--easing);
}
.faq-item.is-open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%; text-align: left; background: transparent; border: 0;
    padding: 18px 22px; font-weight: 700; color: var(--navy-deep);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: 1rem;
}
.faq-q::after {
    content: '+'; font-size: 1.4rem; color: var(--gold-deep); font-weight: 600;
    transition: transform 0.2s var(--easing);
}
.faq-item.is-open .faq-q::after { content: '−'; transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s var(--easing), padding 0.3s var(--easing);
    padding: 0 22px;
}
.faq-item.is-open .faq-a { max-height: 600px; padding: 0 22px 18px; }
.faq-a p { margin: 0; color: var(--ink-soft); }

/* ─── Forms ──────────────────────────────────────────────── */
.form-card {
    background: #fff; padding: 36px; border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field label { font-weight: 600; font-size: 14px; color: var(--navy-deep); margin-bottom: 6px; }
.field input, .field select, .field textarea {
    font: inherit; padding: 12px 14px; border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm); background: #fff; color: var(--ink);
    transition: border-color 0.15s var(--easing), box-shadow 0.15s var(--easing);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: 0; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,97,0.22);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-help { font-size: 12.5px; color: var(--ink-faint); margin-top: 6px; }

.alert {
    padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 22px;
    font-size: 14.5px; border: 1px solid transparent;
}
.alert-success { background: #ECFDF5; color: #065F46; border-color: #A7F3D0; }
.alert-error   { background: #FEF2F2; color: #991B1B; border-color: #FECACA; }

/* ─── Page header ────────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: #fff; padding: clamp(72px, 9vw, 120px) 0 clamp(56px, 7vw, 88px);
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(700px 320px at 100% 0%, rgba(201,169,97,0.18), transparent 60%);
    pointer-events: none;
}
.page-header .container { position: relative; }

/* Hero photo modifier. Pages set --hero-bg to the image URL inline; the
   navy gradient overlay sits above the photo so the white H1/copy stay
   AAA-readable regardless of how busy the photo is. */
.page-header.has-hero {
    background:
        linear-gradient(120deg, rgba(14,42,71,0.88) 0%, rgba(14,42,71,0.72) 45%, rgba(26,58,92,0.55) 100%),
        var(--hero-bg) center / cover no-repeat;
}
.page-header.has-hero::before {
    background: radial-gradient(700px 320px at 100% 0%, rgba(201,169,97,0.22), transparent 60%);
}

/* Home hero photo (full-bleed background, keeps the existing 2-col layout). */
.hero.has-hero {
    background:
        linear-gradient(120deg, rgba(14,42,71,0.92) 0%, rgba(14,42,71,0.78) 50%, rgba(26,58,92,0.62) 100%),
        var(--hero-bg) center / cover no-repeat;
}
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 720px; }
.page-header-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-header-img::before { display: none; }
.breadcrumbs { color: rgba(255,255,255,0.7); font-size: 13.5px; margin-bottom: 14px; }
.breadcrumbs a { color: var(--gold); }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.85); margin-top: 0; }

.footer-cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.footer-cta-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(600px 200px at 80% 50%, rgba(201,169,97,0.16), transparent 60%);
    pointer-events: none;
}
.footer-cta-inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 32px; position: relative;
}
.footer-cta-text { max-width: 580px; }
.footer-cta-text h2 { color: #fff; margin: 6px 0; }
.footer-cta-text p { color: rgba(255,255,255,0.82); margin: 0; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.footer-main { padding: 56px 0 32px; }
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo-img { height: 57px; width: auto; margin-bottom: 14px; }
.footer-tagline {
    color: var(--gold); font-size: 14px; font-weight: 600;
    letter-spacing: 0.02em; margin-bottom: 18px;
}
.footer-contact-info {
    font-style: normal; font-size: 14px; color: rgba(255,255,255,0.78);
}
.footer-contact-info p { margin: 0 0 12px; color: inherit; }
.footer-contact-info strong { color: #fff; font-weight: 600; }
.footer-contact-info a { color: rgba(255,255,255,0.92); }
.footer-contact-info a:hover { color: var(--gold); }

.footer-heading {
    color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; margin: 0 0 14px;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: rgba(255,255,255,0.78); font-size: 14px; }
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0; font-size: 13px;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-copyright, .footer-legal { margin: 0; color: rgba(255,255,255,0.66); }
.footer-legal a { color: rgba(255,255,255,0.85); }
.footer-legal a:hover { color: var(--gold); }

/* ─── Misc utilities ─────────────────────────────────────── */
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.muted { color: var(--ink-faint); }
.divider { height: 1px; background: var(--line); margin: 32px 0; border: 0; }
.pill {
    display: inline-block; background: var(--bg-alt); color: var(--bronze);
    padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.pill-gold { background: var(--gold-soft); color: var(--navy-deep); }

/* ─── Phone directory (contact page) ────────────────────── */
.contact-aside { display: flex; flex-direction: column; }
.contact-aside > .eyebrow { margin-bottom: 6px; }
.contact-aside h2 { margin: 0 0 18px; }
.contact-aside > .card + .card { margin-top: 20px; }
.phone-directory.card {
    display: flex;
    flex-direction: column;
    padding: 0;
}
.mail-address {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-deep);
    text-align: right;
    line-height: 1.35;
    letter-spacing: -0.005em;
}
.phone-row {
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.phone-row:last-child { border-bottom: 0; }

.aside-card { padding: 22px 24px; }
.aside-card-h {
    font-size: 1.15rem;
    margin: 6px 0 14px;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
}
.aside-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span { color: var(--ink-faint); }
.hours-list li strong { color: var(--navy-deep); font-weight: 700; }
.trust-list li {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
}
.trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(-45deg);
}

/* Mobile: phone rows in natural block flow so the row-top can wrap. */
@media (max-width: 600px) {
    .phone-row-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }
}
.phone-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}
.phone-row .pill { font-size: 10.5px; padding: 4px 9px; flex-shrink: 0; }
.phone-number {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
    line-height: 1.1;
    white-space: nowrap;
}
.phone-number:hover { color: var(--gold-deep); }
.phone-note { margin: 0; font-size: 12.5px; color: var(--ink-faint); line-height: 1.45; }

/* ─── Tables (compare) ──────────────────────────────────── */
.compare {
    width: 100%; min-width: 580px; border-collapse: collapse; background: #fff;
    border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); font-size: 14.5px;
}
.compare th, .compare td {
    padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line);
}
.compare thead th {
    background: var(--navy-deep); color: #fff; font-weight: 700; font-size: 13px;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.compare tbody td.check {
    color: var(--gold-deep); font-weight: 800; text-align: center;
}
.compare tbody td.no { color: var(--line-strong); text-align: center; }
.compare tr:last-child td { border-bottom: 0; }
.compare tr:hover td { background: var(--bg-alt); }

/* ─── Testimonials ──────────────────────────────────────── */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing), border-color 0.2s var(--easing);
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--gold-soft);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    line-height: 1;
}
.testimonial-quote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 22px;
    flex: 1;
    position: relative;
}
.testimonial-quote::before {
    content: '\201C';
    position: absolute;
    top: -16px;
    left: -8px;
    font-size: 56px;
    color: var(--gold-soft);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.testimonial-author {
    border-top: 1px solid var(--line);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testimonial-name {
    font-weight: 700;
    color: var(--navy-deep);
    font-size: 14px;
}
.testimonial-role {
    font-size: 12.5px;
    color: var(--ink-faint);
}

/* ─── Blog grid + cards ─────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; gap: 22px; } }
.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing), border-color 0.2s var(--easing);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold-soft);
}
.blog-card-image-link {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.blog-card-image-link img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform 0.4s var(--easing);
}
.blog-card:hover .blog-card-image-link img { transform: scale(1.04); }
.blog-card-image-placeholder {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.blog-card-shield {
    width: 64px; height: 64px;
    background: var(--gold);
    clip-path: polygon(50% 0, 100% 25%, 100% 70%, 50% 100%, 0 70%, 0 25%);
    opacity: 0.85;
}
.blog-card-body {
    padding: 22px 22px 24px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.blog-card-meta {
    display: flex; gap: 14px; align-items: center;
    font-size: 12px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.blog-card-body h2,
.blog-card-body h3 {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.3;
}
.blog-card-body h2 a,
.blog-card-body h3 a {
    color: var(--navy-deep);
    text-decoration: none;
}
.blog-card-body h2 a:hover,
.blog-card-body h3 a:hover { color: var(--gold-deep); }
.blog-card-body p {
    color: var(--ink-faint);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.blog-card .read-more {
    color: var(--gold-deep);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    text-decoration: none;
}
.blog-card .read-more:hover { color: var(--navy-deep); }

/* ─── Pagination ────────────────────────────────────────── */
.pagination {
    display: flex; gap: 8px; justify-content: center; align-items: center;
    margin-top: 48px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: var(--navy-deep);
    border: 1px solid var(--line);
    background: #fff;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold-deep); }
.pagination .current { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }
.pagination .dots { border: 0; background: transparent; }

/* ─── Post detail page ──────────────────────────────────── */
.post-hero {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: #fff;
    padding: 64px 0 56px;
}
.post-hero .breadcrumbs,
.post-hero .breadcrumbs a { color: rgba(255,255,255,0.7); }
.post-hero .breadcrumbs a:hover { color: var(--gold); }
.post-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.18;
    margin: 8px 0 14px;
    max-width: 880px;
}
.post-hero-excerpt {
    color: rgba(255,255,255,0.88);
    font-size: 17px;
    line-height: 1.55;
    max-width: 760px;
    margin: 0 0 18px;
}
.post-hero-meta {
    display: flex; gap: 22px;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.post-featured {
    background: var(--bg-alt);
    padding: 0;
}
.post-featured .container {
    margin-top: -36px;
    margin-bottom: -36px;
    position: relative;
    z-index: 1;
}
.post-featured img {
    width: 100%; max-width: 1000px; margin: 0 auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.post-section { padding-top: 64px; }
.post-body {
    max-width: 760px; margin: 0 auto;
    font-size: 17px; line-height: 1.75; color: var(--ink);
}
.post-body h2 { font-size: 1.55rem; margin: 36px 0 14px; color: var(--navy-deep); }
.post-body h3 { font-size: 1.2rem;  margin: 28px 0 12px; color: var(--navy-deep); }
.post-body h4 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--navy-deep); }
.post-body p  { margin: 0 0 18px; }
.post-body ul, .post-body ol { margin: 0 0 22px 1.4em; padding: 0; }
.post-body li { margin-bottom: 8px; }
.post-body a {
    color: var(--gold-deep);
    border-bottom: 1px solid currentColor;
    text-decoration: none;
}
.post-body a:hover { color: var(--navy-deep); }
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
}
.post-body blockquote {
    border-left: 4px solid var(--gold);
    margin: 26px 0;
    padding: 4px 0 4px 22px;
    color: var(--ink-faint);
    font-style: italic;
}
.post-body hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

/* ─── Add-on tile grid (plans page optional add-ons) ────── */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 980px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .addon-grid { grid-template-columns: 1fr; } }
.addon-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing), border-color 0.2s var(--easing);
}
.addon-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--gold-soft);
}
.addon-tile .addon-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(201, 169, 97, 0.14);
    color: var(--gold-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.addon-tile .addon-icon svg { width: 22px; height: 22px; }
.addon-tile h3 {
    font-size: 1.02rem;
    margin: 0;
    color: var(--navy-deep);
}
.addon-tile p {
    font-size: 13.5px;
    color: var(--ink-faint);
    line-height: 1.5;
    margin: 0;
}

/* ─── Testimonial carousel (horizontal scroll-snap) ─────── */
.testimonial-carousel {
    position: relative;
    margin: 0 -8px;
}
.tc-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 12px 8px 28px;
    -webkit-overflow-scrolling: touch;
}
.tc-viewport::-webkit-scrollbar { display: none; }
.tc-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: stretch;
}
.tc-track > .testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 0;
}
@media (max-width: 980px) {
    .tc-track > .testimonial-card { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
    .tc-track { gap: 16px; }
    .tc-track > .testimonial-card { flex-basis: 100%; }
}
.tc-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}
.tc-btn {
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--navy-deep);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.15s var(--easing), color 0.15s var(--easing), border-color 0.15s var(--easing), transform 0.15s var(--easing);
    box-shadow: var(--shadow-sm);
}
.tc-btn:hover { background: var(--navy-deep); color: var(--gold); border-color: var(--navy-deep); }
.tc-btn:active { transform: scale(0.96); }
.tc-btn[disabled] { opacity: 0.35; cursor: default; }
.tc-btn svg { width: 18px; height: 18px; }
.tc-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.tc-dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: var(--line-strong); border: 0; padding: 0; cursor: pointer;
    transition: background 0.15s var(--easing), transform 0.15s var(--easing);
}
.tc-dot.is-active { background: var(--gold); transform: scale(1.25); }
.bg-alt .tc-btn { background: #fff; }

/* ─── Rating banner (4.86 star score card) ──────────────── */
.rating-banner {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 36px;
    align-items: center;
}
.rating-banner .rating-score {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.18);
    padding-right: 24px;
}
.rating-banner .rating-num {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.03em;
}
.rating-banner .rating-outof {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    margin-top: 6px;
}
.rating-banner .rating-stars {
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 4px;
    margin-top: 12px;
}
.rating-banner .rating-body { padding-left: 4px; }
.rating-banner .rating-body .eyebrow {
    color: var(--gold);
    margin-bottom: 6px;
}
.rating-banner .rating-body h2 {
    color: #fff;
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
}
.rating-banner .rating-body p {
    color: rgba(255,255,255,0.88);
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.55;
}
.rating-banner .rating-note {
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}
@media (max-width: 720px) {
    .rating-banner {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 20px;
    }
    .rating-banner .rating-score {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.18);
        padding-right: 0;
        padding-bottom: 18px;
    }
    .rating-banner .rating-body { padding-left: 0; text-align: center; }
}

/* ─── States directory ──────────────────────────────────── */
.states-region { margin-bottom: 36px; }
.states-region-h3 {
    font-size: 1.05rem;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
    display: inline-block;
}
.states-grid {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.states-grid li { margin: 0; }
.states-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--navy-deep);
    font-weight: 500;
    transition: border-color 0.15s var(--easing), background 0.15s var(--easing), transform 0.1s var(--easing);
}
.states-link:hover {
    border-color: var(--gold);
    background: var(--bg-alt);
    color: var(--navy-deep);
    transform: translateY(-1px);
}
.states-abbr {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 32px; height: 32px;
    background: var(--navy-deep);
    color: var(--gold);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.06em;
    border-radius: 6px;
    flex-shrink: 0;
}
.states-link:hover .states-abbr { background: var(--gold); color: var(--navy-deep); }
.states-name { font-size: 14.5px; }

/* ─── Print ──────────────────────────────────────────────── */
@media print {
    .topbar, .site-header, .nav-toggle, .footer-cta-band, .nav-mobile { display: none !important; }
    a { color: var(--ink); text-decoration: underline; }
    body { background: #fff; }
}
