:root {
    --bg: #070b14;
    --bg-elevated: #0c1220;
    --surface: #0f172a;
    --surface-hover: #152238;
    --panel: #111c33;
    --text: #f1f5f9;
    --muted: #b8c5d6;
    --primary: #2dd4bf;
    --primary-dark: #14b8a6;
    --primary-glow: rgba(45, 212, 191, 0.45);
    --accent-blue: #7dd3fc;
    --accent-blue-glow: rgba(125, 211, 252, 0.5);
    --border: #1e293b;
    --border-bright: #334155;
    --radius: 16px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --container-max: 1440px;
    --container-wide: min(96vw, 1600px);
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
}
body.site-shell {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    font-family: var(--font);
    font-size: var(--fluid-base, 1rem);
    color: var(--text);
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(45, 212, 191, 0.08), transparent 60%),
        var(--bg);
    line-height: 1.65;
}
.site-main {
    flex: 1 0 auto;
    width: 100%;
}
h1, h2, h3, p, li, strong { color: var(--text); }
a { color: var(--primary); }

.container {
    width: min(var(--container-max), calc(100% - 2.5rem));
    margin: 0 auto;
}

.container-wide {
    width: var(--container-wide);
    margin: 0 auto;
    padding-inline: 1.25rem;
}

.site-header {
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 20;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 3.75rem);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
/* White container behind the logo (logo is resized to fit, never cropped) */
.brand-logo,
.brand-name {
    height: 52px;
    box-sizing: border-box;
}
.brand-logo {
    width: auto;
    display: block;
    flex: 0 0 auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 5px;
    object-fit: contain;
}
/* Wordmark beside the logo — white container, colours matched to lclogo.png */
.brand-name {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.08rem;
    background: #ffffff;
    border-radius: 10px;
    padding: 4px 10px;
    line-height: 1.05;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}
.brand-name-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.45ch;
    font-weight: 800;
    font-size: clamp(0.78rem, 2.2vw, 1.05rem);
    letter-spacing: 0.02em;
}
.brand-name .bn-blue,
.brand-name .bn-red {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.brand-name .bn-blue {
    background-image: linear-gradient(to bottom, #3772b8 0%, #142a52 100%);
}
.brand-name .bn-red {
    background-image: linear-gradient(to bottom, #e6212a 0%, #891018 100%);
}
.brand-name-llc {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
}
.brand-name .bn-llc-line {
    flex: 1 1 auto;
    height: 1px;
    min-width: 0.75rem;
    background: #000000;
}
.brand-name .bn-llc {
    flex: 0 0 auto;
    color: #000000;
    font-weight: 600;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
}

.hero { padding: 3.5rem 0 2rem; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    margin: 0.5rem 0 1rem;
}
.lead { color: var(--muted); font-size: var(--fluid-lg); max-width: 52ch; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-card {
    background: linear-gradient(145deg, var(--panel), var(--surface));
    border: 1px solid var(--border-bright);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.hero-booking-slideshow {
    position: relative;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(45, 212, 191, 0.12), transparent 55%),
        linear-gradient(145deg, var(--panel), var(--surface));
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.hero-booking-slideshow:hover {
    border-color: rgba(45, 212, 191, 0.45);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45), 0 0 0 1px rgba(45, 212, 191, 0.08);
}
.hero-slideshow-viewport {
    display: grid;
    grid-template-columns: 1fr;
    isolation: isolate;
}
.hero-slide {
    grid-row: 1;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem 1rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
    transition: opacity var(--hero-fade-duration, 1s) ease, visibility var(--hero-fade-duration, 1s) ease;
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}
.hero-slide.is-leaving {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    z-index: 2;
}
.hero-slide.is-entering {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    z-index: 1;
}
.hero-slide.is-entering.is-active {
    opacity: 1;
    pointer-events: auto;
}
.hero-slide-title {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.3;
    max-width: 100%;
    text-wrap: balance;
}
.hero-slide-intro .hero-slide-title {
    font-size: clamp(0.98rem, 1.9vw, 1.28rem);
}
.hero-slide-options {
    list-style: none;
    margin: 0.25rem 0 0;
    padding: 0;
    width: 100%;
    max-width: 20rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hero-slide-options li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0.55rem 0.7rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(45, 212, 191, 0.14);
    opacity: 0;
    transform: translateY(16px);
}
.hero-slide-options li strong {
    color: var(--primary);
    font-size: 0.95rem;
}
.hero-slide-options li span {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.35;
    text-wrap: balance;
}
.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.22), rgba(20, 184, 166, 0.08));
    border: 1px solid rgba(45, 212, 191, 0.35);
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(12px);
}
.hero-slide-detail .hero-slide-title {
    opacity: 0;
    transform: translateY(14px);
}
.hero-slide-text {
    margin: 0;
    max-width: 32ch;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(14px);
    text-wrap: balance;
}
.hero-slide-cta {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(45, 212, 191, 0.85);
    opacity: 0;
    transform: translateY(10px);
}
.hero-slide.is-animated .hero-slide-title {
    animation: heroSlideInTitle 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-slide.is-animated .hero-slide-options li:nth-child(1) { animation: heroSlideInOption 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both; }
.hero-slide.is-animated .hero-slide-options li:nth-child(2) { animation: heroSlideInOption 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both; }
.hero-slide.is-animated .hero-slide-options li:nth-child(3) { animation: heroSlideInOption 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both; }
.hero-slide-detail.is-animated .hero-slide-badge { animation: heroSlideInOption 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both; }
.hero-slide-detail.is-animated .hero-slide-title { animation: heroSlideInOption 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both; }
.hero-slide-detail.is-animated .hero-slide-text { animation: heroSlideInOption 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both; }
.hero-slide-detail.is-animated .hero-slide-cta,
.hero-slide-intro.is-animated .hero-slide-cta { animation: heroSlideInOption 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both; }
.hero-slideshow-footer {
    position: relative;
    padding: 0 1rem 0.85rem;
}
.hero-slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
}
.hero-slideshow-dot {
    width: 0.55rem;
    height: 0.55rem;
    border: none;
    border-radius: 999px;
    padding: 0;
    cursor: pointer;
    background: rgba(148, 163, 184, 0.35);
    transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}
.hero-slideshow-dot.is-active {
    width: 1.35rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.hero-slideshow-dot:hover { transform: scale(1.08); }
.hero-slideshow-progress {
    height: 3px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    overflow: hidden;
}
.hero-slideshow-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    transform-origin: left center;
}
.hero-booking-slideshow.is-playing .hero-slideshow-progress-bar {
    animation: heroSlideshowProgress var(--slideshow-cycle, 8s) linear forwards;
}
@keyframes heroSlideInTitle {
    from { opacity: 0; transform: translateX(-24px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideInOption {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideshowProgress {
    from { width: 0; }
    to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide-options li,
    .hero-slide-badge,
    .hero-slide-detail .hero-slide-title,
    .hero-slide-text,
    .hero-slide-cta {
        transition: none;
        animation: none !important;
        opacity: 1;
        transform: none;
    }
    .hero-booking-slideshow.is-playing .hero-slideshow-progress-bar {
        animation: none;
        width: 100%;
    }
}

.pricing-modes { margin: 0; padding-left: 1.1rem; }
.pricing-modes li { margin-bottom: 0.5rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #042f2e;
    box-shadow: 0 0 0 0 var(--primary-glow);
}
.btn-primary:hover {
    color: #022c22;
    transform: translateY(-1px);
    box-shadow: 0 0 28px var(--primary-glow);
}
.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-bright);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.15);
}
.btn-lg { padding: 1rem 1.5rem; font-size: 1.05rem; }

.map-section {
    padding: 2rem 0 4rem;
    width: 100%;
}

.section-glow-rule {
    display: block;
    width: min(92%, 1400px);
    height: 0;
    margin: 0 auto;
    padding: 0;
    border: 0;
    position: relative;
    clear: both;
}

.section-glow-rule::before {
    content: "";
    display: block;
    height: 2px;
    border-radius: 999px;
}

.section-glow-rule--green::before {
    background: linear-gradient(90deg, transparent 0%, var(--primary) 18%, var(--primary) 82%, transparent 100%);
    box-shadow:
        0 0 8px var(--primary-glow),
        0 0 20px rgba(45, 212, 191, 0.35),
        0 0 36px rgba(45, 212, 191, 0.15);
}

.section-glow-rule--blue::before {
    background: linear-gradient(90deg, transparent 0%, var(--accent-blue) 18%, var(--accent-blue) 82%, transparent 100%);
    box-shadow:
        0 0 8px var(--accent-blue-glow),
        0 0 20px rgba(125, 211, 252, 0.35),
        0 0 36px rgba(125, 211, 252, 0.15);
}

.section-header {
    width: min(var(--container-max), calc(100% - 2.5rem));
    margin: 0 auto 1.5rem;
}
.section-header h2 { margin: 0 0 0.35rem; font-size: 1.8rem; }
.section-header p { margin: 0; color: var(--muted); }

.map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 1.25rem;
    align-items: start;
}

.us-map-wrap {
    background: linear-gradient(180deg, var(--panel) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius);
    padding: 0.75rem 0.5rem 0.5rem;
    box-shadow: var(--shadow);
    min-height: min(72vh, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.us-map {
    width: 100%;
    height: auto;
    max-height: min(70vh, 680px);
    display: block;
}

.state-shape {
    fill: #16324a;
    stroke: #2dd4bf;
    stroke-width: 0.75;
    vector-effect: non-scaling-stroke;
    transition: fill 0.18s ease, filter 0.18s ease, stroke 0.18s ease;
}

.state-link {
    cursor: pointer;
    outline: none;
}

.state-link:hover .state-shape,
.state-link:focus-visible .state-shape,
.state-link.is-active .state-shape {
    fill: #0d9488;
    stroke: #5eead4;
    filter: drop-shadow(0 0 8px var(--primary-glow)) drop-shadow(0 0 18px rgba(45, 212, 191, 0.35));
}

.map-tooltip {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--primary);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 0 20px var(--primary-glow);
    opacity: 0;
    transform: translate(-50%, -120%);
    transition: opacity 0.12s ease;
}
.map-tooltip.is-visible { opacity: 1; }

.state-list-panel {
    background: var(--panel);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius);
    padding: 1rem;
    max-height: min(72vh, 720px);
    overflow: auto;
    box-shadow: var(--shadow);
}
.state-list-panel label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
.state-list-panel input {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    background: var(--surface);
    color: var(--text);
}
.state-list-panel input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.2);
}
.state-list { list-style: none; margin: 0; padding: 0; }
.state-list a {
    display: block;
    padding: 0.45rem 0.5rem;
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}
.state-list a:hover,
.state-list a.is-active {
    background: rgba(45, 212, 191, 0.12);
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.35);
}

.features { padding: 1rem 0 4rem; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.feature-grid article {
    background: var(--panel);
    border: 1px solid rgba(45, 212, 191, 0.22);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 0 18px rgba(45, 212, 191, 0.06);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.feature-grid article h3 {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
    color: var(--primary);
    text-shadow: 0 0 16px var(--primary-glow);
}
.feature-grid article:hover {
    border-color: rgba(45, 212, 191, 0.45);
    box-shadow: 0 0 24px rgba(45, 212, 191, 0.14);
}

.state-hero { padding: 2.5rem 0 1rem; }
.state-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}
.meta-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}
.meta-card span { display: block; color: var(--muted); font-size: 0.85rem; }
.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.5rem 0 2rem; }

.seo-keywords {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.seo-redirect {
    min-height: 60vh;
    display: grid;
    place-items: center;
    text-align: center;
}
.seo-redirect-page {
    cursor: pointer;
}
.seo-redirect-page.seo-redirect-paused {
    cursor: default;
}
.seo-redirect-hint {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.seo-redirect-page.seo-redirect-paused .seo-redirect-hint {
    color: var(--primary);
}
.seo-redirect-page.seo-redirect-paused .seo-keywords {
    position: static;
    width: auto;
    height: auto;
    margin: 0 auto 2rem;
    padding: 1.25rem 1.5rem;
    overflow: visible;
    clip: auto;
    white-space: normal;
    max-width: 960px;
    text-align: left;
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--muted);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.seo-redirect-page.seo-redirect-paused .seo-keywords span {
    display: inline-block;
    margin: 0.12rem 0.3rem 0.12rem 0;
    padding: 0.15rem 0.45rem;
    background: var(--panel);
    border-radius: 4px;
    color: var(--text);
}
.seo-redirect-page.seo-redirect-paused .seo-redirect {
    min-height: auto;
    padding-top: 1.5rem;
}
.seo-redirect .spinner {
    width: 42px;
    height: 42px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.site-footer {
    flex-shrink: 0;
    margin-top: auto;
    border-top: 1px solid var(--border-bright);
    background: var(--bg-elevated);
    padding: clamp(1.35rem, 1rem + 1vw, 2.25rem) 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 0.65rem + 1vw, 1.75rem);
    flex-wrap: wrap;
    color: var(--text);
    font-size: var(--footer-text);
}
.footer-legal {
    display: grid;
    gap: clamp(0.45rem, 0.3rem + 0.35vw, 0.75rem);
}
.footer-legal p {
    margin: 0;
    color: var(--text);
    font-weight: 500;
}
.footer-inner nav {
    display: flex;
    gap: clamp(0.75rem, 0.5rem + 0.65vw, 1.25rem);
    flex-wrap: wrap;
}
.footer-legal nav a,
.footer-inner a {
    color: #dbe7f5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}
.footer-inner a:hover,
.footer-inner a:focus-visible { color: var(--primary); }
.footer-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.55rem, 0.35rem + 0.55vw, 0.9rem);
}
.footer-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--primary) !important;
    line-height: 0;
    box-shadow: none;
    transition: color 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}
.footer-icon-svg {
    display: block;
    width: var(--footer-icon-size);
    height: var(--footer-icon-size);
    flex-shrink: 0;
    color: var(--primary);
}
iconify-icon.footer-icon-svg {
    display: block;
    width: var(--footer-icon-size);
    height: var(--footer-icon-size);
    line-height: 1;
    vertical-align: middle;
}
.footer-icon-link iconify-icon[icon^="logos:"] {
    width: calc(var(--footer-icon-size) * 1.08);
    height: calc(var(--footer-icon-size) * 1.08);
}
.footer-icon-link:hover,
.footer-icon-link:focus-visible {
    color: #5eead4 !important;
    transform: translateY(-2px);
    text-decoration: none;
    background: transparent;
    box-shadow: none;
    border: none;
}
.footer-icon-link:hover iconify-icon,
.footer-icon-link:focus-visible iconify-icon {
    color: #5eead4;
}

.legal-page { padding: 2rem 0 4rem; }
.legal-page h1 { margin-top: 0; }
.legal-page h2 { margin-top: 2rem; }

.legal-full { max-width: 880px; }
.legal-header { border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.legal-meta { color: var(--muted); margin: 0.25rem 0; }
.legal-links a { color: var(--primary); }
.legal-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.legal-toc {
    background: var(--panel);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}
.legal-toc-title { margin: 0 0 0.75rem; font-size: 1.05rem; }
.legal-toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.legal-toc li { margin: 0; }
.legal-toc a {
    display: flex;
    gap: 0.55rem;
    align-items: baseline;
    color: var(--text);
    text-decoration: none;
    padding: 0.3rem 0.4rem;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
}
.legal-toc a:hover { background: var(--surface-hover); color: var(--primary); }
.legal-toc-num { color: var(--primary); font-weight: 700; min-width: 1.6rem; }

.legal-section { scroll-margin-top: 90px; padding-top: 0.5rem; }
.legal-section h2 { display: flex; gap: 0.5rem; align-items: baseline; }
.legal-section-num { color: var(--primary); font-weight: 700; }
.legal-section p, .legal-section li { color: var(--text); }
.legal-section ul { padding-left: 1.25rem; display: grid; gap: 0.4rem; }
.legal-backtop { margin: 1rem 0 0; }
.legal-backtop a { color: var(--muted); font-size: 0.85rem; text-decoration: none; }
.legal-backtop a:hover { color: var(--primary); }

.state-news-panel { margin: 1.5rem 0; }
.news-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.news-list li { border-bottom: 1px solid var(--border); padding-bottom: 0.65rem; }
.news-list a { color: var(--text); text-decoration: none; font-weight: 600; }
.news-list a:hover { color: var(--primary); }
.news-list time { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
.meta-weather small { display: block; font-weight: 400; color: var(--muted); font-size: 0.82rem; margin-top: 0.2rem; }
.weather-attribution { font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }
.weather-attribution a { color: var(--primary); }

.state-hero.has-hero-image {
    background: linear-gradient(rgba(7, 11, 20, 0.88), rgba(7, 11, 20, 0.94)), var(--hero-image) center/cover no-repeat;
    border-bottom: 1px solid var(--border);
}
.state-pitch { font-size: 1.1rem; color: var(--muted); max-width: 42rem; margin: 0.5rem 0 1rem; }
.state-testimonial { margin: 1.5rem 0; font-style: italic; }
.state-testimonial footer { font-style: normal; font-weight: 600; margin-top: 0.75rem; color: var(--muted); }

.map-error {
    color: var(--muted);
    padding: 2rem;
    text-align: center;
}

@media (max-width: 1100px) {
    .map-layout { grid-template-columns: 1fr; }
    .state-list-panel { max-height: 320px; }
    .us-map-wrap { min-height: 50vh; }
}

@media (max-width: 900px) {
    .hero-grid, .feature-grid, .state-meta { grid-template-columns: 1fr; }
    .container { width: min(var(--container-max), calc(100% - 1.25rem)); }
    .header-inner { padding: 0.65rem 0; }
    .brand { gap: 0.5rem; min-width: 0; }
    .brand-name { padding: 4px 8px; }
    .footer-inner { flex-direction: column; text-align: center; gap: 1.1rem; }
    .footer-icons { justify-content: center; }
    .state-hero .state-actions { flex-direction: column; align-items: stretch; }
    .checklist-services-grid {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        width: max-content;
        min-width: 100%;
        gap: 1rem;
    }
    .checklist-card {
        flex: 0 0 min(88vw, 340px);
        width: min(88vw, 340px);
        max-width: none;
    }
    .checklist-stamps {
        grid-template-columns: 1fr;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }
    .checklist-table-wrap { overflow-x: auto; }
}

@media (min-width: 641px) and (max-width: 1100px) {
    .checklist-services-grid {
        display: flex;
        flex-direction: row;
        width: max-content;
        min-width: 100%;
        gap: 1rem;
    }
    .checklist-card {
        flex: 0 0 min(72vw, 340px);
        width: min(72vw, 340px);
    }
    .checklist-stamps {
        grid-template-columns: 1fr;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .brand-logo,
    .brand-name { height: 46px; }
    .brand-name-main { font-size: 0.72rem; }
    .hero { padding: 2rem 0 1.25rem; }
}

@media (min-width: 1600px) {
    :root { --container-max: 1680px; }
    .hero-grid { gap: 3rem; }
    .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

/* --- Localized per-state content --- */
.state-services { margin: 1.75rem 0; }
.state-services h2 { margin: 0 0 0.75rem; font-size: 1.45rem; }
.state-services-lead { color: var(--muted); max-width: 72ch; margin: 0 0 1.25rem; line-height: 1.65; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.services-grid article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.15rem;
}
.services-grid h3 { margin: 0 0 0.65rem; font-size: 1rem; color: var(--primary); }
.services-grid ul { margin: 0; padding-left: 1.1rem; color: var(--text); }
.services-grid li { margin: 0.35rem 0; line-height: 1.45; }
.state-services-cta { margin-top: 0.5rem; }
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
}

.state-local { margin: 1.5rem 0; }
.state-local h2 { margin: 0 0 0.5rem; font-size: 1.4rem; }
.state-local-intro { color: var(--muted); max-width: 70ch; margin: 0 0 1.5rem; }
.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.local-block h3 { font-size: 1.05rem; margin: 0 0 0.75rem; color: var(--primary); }
.challenge-list, .idea-list { list-style: none; margin: 0; padding: 0; }
.challenge-list li, .idea-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.6rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.challenge-list li::before {
    content: "!";
    position: absolute;
    left: 0; top: 0.45rem;
    width: 1.05rem; height: 1.05rem;
    line-height: 1.05rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.72rem;
    color: #061018;
    background: var(--primary);
    border-radius: 50%;
}
.idea-list li::before {
    content: "";
    position: absolute;
    left: 0.2rem; top: 0.95rem;
    width: 0.5rem; height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-glow);
}
.hook-row { margin-top: 1.5rem; }
.hook-row h3 { font-size: 1.05rem; margin: 0 0 0.75rem; }
.hook-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.hook-chip {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    background: var(--surface-hover);
    border: 1px solid var(--border-bright);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text);
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.hook-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 16px var(--primary-glow);
}
@media (max-width: 900px) {
    .local-grid { grid-template-columns: 1fr; }
}

/* --- Service area map (Leaflet needs an explicit height or it renders invisible) --- */
.state-map-panel { margin: 1.5rem 0; }
.service-map {
    height: 360px;
    border-radius: 14px;
    margin: 0.75rem 0;
    border: 1px solid var(--border-bright);
    overflow: hidden;
    background: var(--surface);
}
.service-map .leaflet-container { height: 100%; width: 100%; }

/* --- State news ticker (scrolling banner) --- */
.state-news-ticker {
    display: flex;
    align-items: stretch;
    background: linear-gradient(90deg, var(--bg-elevated), var(--surface));
    border-bottom: 1px solid var(--border-bright);
    overflow: hidden;
}
.state-news-ticker .ticker-label {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #061018;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    white-space: nowrap;
    z-index: 1;
}
.ticker-viewport {
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
}
.ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}
.ticker-track.is-running {
    animation-name: ticker-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.ticker-viewport:hover .ticker-track.is-running { animation-play-state: paused; }
.ticker-item {
    display: inline-block;
    padding: 0.55rem 1.5rem;
    color: var(--text);
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
}
.ticker-item::after {
    content: "•";
    position: absolute;
    right: -0.2rem;
    color: var(--primary);
    opacity: 0.6;
}
.ticker-item:hover { color: var(--primary); }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-1 * var(--ticker-distance, 50%))); }
}
@media (prefers-reduced-motion: reduce) {
    .ticker-track.is-running { animation: none; }
}

/* --- Checklist page --- */
.page-hero.checklist-hero {
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(55, 114, 184, 0.08), transparent 70%);
}
.checklist-hero-sub { color: var(--muted); max-width: 62ch; margin: 0.75rem 0 0; }
.checklist-page { padding: 2rem 0 4rem; }
.checklist-services-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-bright) transparent;
}
.checklist-services-scroll::-webkit-scrollbar {
    height: 8px;
}
.checklist-services-scroll::-webkit-scrollbar-thumb {
    background: var(--border-bright);
    border-radius: 999px;
}
.checklist-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.checklist-card {
    background: linear-gradient(145deg, var(--panel), var(--surface));
    border: 1px solid var(--border-bright);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.checklist-card:hover {
    border-color: rgba(55, 114, 184, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 24px rgba(45, 212, 191, 0.08);
    transform: translateY(-2px);
}
.checklist-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.25rem;
    color: var(--primary);
}
.checklist-service-lead { color: var(--muted); margin: 0 0 1rem; }
.checklist-task-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.checklist-task-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.35rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.checklist-task-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
.checklist-comparison { margin-top: 3rem; }
.checklist-section-title { font-size: 1.75rem; margin: 0 0 1rem; }
.checklist-note p { margin: 0; color: var(--muted); line-height: 1.7; }
.checklist-table-wrap { overflow-x: auto; padding: 0; }
.checklist-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}
.checklist-table th,
.checklist-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.checklist-table th[scope="row"] {
    text-align: left;
    font-weight: 600;
    color: var(--text);
}
.checklist-table thead th {
    background: var(--surface-hover);
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.checklist-yes { color: var(--primary); font-weight: 800; font-size: 1.1rem; }
.checklist-no { color: var(--muted); }
.checklist-stamps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}
.checklist-stamp {
    text-align: center;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.checklist-stamp-seal {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.75rem;
    color: var(--primary);
}
.checklist-stamp-seal svg { width: 100%; height: 100%; }
.checklist-stamp-seal--satisfaction { color: #3772b8; }
.checklist-stamp-seal--insured { color: #e6212a; }
.checklist-stamp-seal--stars { color: #fbbc04; }
.checklist-stamp-label { margin: 0; font-weight: 700; font-size: 0.95rem; }
.checklist-stamp-sub { margin: 0.35rem 0 0; font-size: 0.82rem; color: var(--muted); }
.checklist-footnote { margin-top: 2rem; color: var(--muted); font-size: 0.85rem; line-height: 1.65; }
.checklist-star { color: var(--primary); }

