/* ==========================================================================
   A CLASS CARS — Main Stylesheet
   Brand pivots (--ink --charcoal --graphite --slate --platinum --font) are
   defined by the Customizer inline block (wp_head prio 5) — NOT here.
   Derivative/design-system tokens only in this :root.
   ========================================================================== */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
    --line: #dcdfe2;
    --mist: #f4f5f6;
    --paper: #ffffff;
    --focus: #4c9ffe; /* stays light-blue: accent navy is invisible against the dark header */
    --header-h: 84px;
    --radius: 3px;
    --wrap: 1200px;
    --wrap-narrow: 720px;
    --gutter: 2.5rem;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 640px) {
    :root { --header-h: 70px; --gutter: 1.25rem; }
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Anchored targets scroll clear of the fixed header */
[id] { scroll-margin-top: calc(var(--header-h, 84px) + 1.5rem); }
body {
    font-family: var(--font);
    font-size: var(--fs-base, 16px); /* Customizer → Brand → Typography */
    line-height: 1.7;
    color: var(--graphite);
    background: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
body.no-scroll { overflow: hidden; }

/* ---------- ACCESSIBILITY ---------- */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.skip-link {
    left: 1rem;
    top: -70px;
    z-index: 400;
    background: var(--paper);
    color: var(--ink);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: top 0.2s ease;
}
.skip-link:focus {
    position: fixed;
    top: 1rem;
    clip: auto;
    clip-path: none;
    width: auto;
    height: auto;
}
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--fw-head, 600); /* Customizer → Brand → Typography */
    color: inherit; /* lesson #13 — dark sections pass colour down */
    letter-spacing: -0.01em;
    line-height: 1.18;
}
body { color: var(--graphite); }
/* Default heading colour with ZERO specificity (:where) — so any component's
   own heading colour (hero, banners, dark/accent schemes) always wins. */
:where(.site-main) h1, :where(.site-main) h2, :where(.site-main) h3 { color: var(--ink); }
a { color: inherit; }
p a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 12px 26px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn--primary { background: var(--accent, var(--ink)); color: #fff; border-color: var(--accent, var(--ink)); }
.btn--primary:hover { background: var(--ink); border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.75); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

.text-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: gap 0.25s ease;
    border-bottom: 1px solid var(--platinum);
    padding-bottom: 3px;
}
.text-link::after { content: '\2192'; color: var(--slate); transition: transform 0.25s ease; }
.text-link:hover { gap: 0.85rem; }
.text-link:hover::after { transform: translateX(3px); }

/* ---------- FORMS (base) ---------- */
input[type="text"], input[type="email"], input[type="tel"], input[type="search"], select, textarea {
    font-family: var(--font);
    font-size: 1rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--slate); }

/* ---------- UTILITY CLASSES ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }

/* Block spacing selects (ACF Style tab) — single source for all blocks */
.pt-none { padding-top: 0; }
.pt-sm   { padding-top: 3rem; }
.pt-md   { padding-top: 6rem; }
.pt-lg   { padding-top: 7.5rem; }
.pb-none { padding-bottom: 0; }
.pb-sm   { padding-bottom: 3rem; }
.pb-md   { padding-bottom: 6rem; }
.pb-lg   { padding-bottom: 7.5rem; }
@media (max-width: 900px) {
    .pt-md { padding-top: 4rem; }
    .pt-lg { padding-top: 5rem; }
    .pb-md { padding-bottom: 4rem; }
    .pb-lg { padding-bottom: 5rem; }
}

/* Scheme surfaces — shared by blocks via --{scheme} modifier */
[class*="--mist"] { background: var(--mist); }
[class*="--dark"] { background: var(--ink); color: rgba(255, 255, 255, 0.85); }
[class*="--dark"] h1, [class*="--dark"] h2, [class*="--dark"] h3 { color: #fff; }

/* ---------- SITE NAV ---------- */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 var(--gutter);
    transition: box-shadow 0.4s ease;
}
.site-nav.is-scrolled { box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35); }
.nav-inner {
    position: relative;
    z-index: 210; /* above the scrim — drawer must stay tappable */
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 2rem;
}

/* Custom logo (lesson #16 — style WP's generated classes) */
.custom-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.custom-logo { max-height: 62px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; height: var(--header-h); display: flex; align-items: center; list-style: none; margin: 0 0.925rem; padding: 0; }
.nav-link {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.25s ease;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: #fff; }
.nav-item--active > .nav-link { color: #fff; }
.chev {
    width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    opacity: 0.65;
    transition: transform 0.25s ease, margin 0.25s ease;
}
.nav-item:hover .chev, .nav-item:focus-within .chev { transform: rotate(225deg); margin-top: 2px; }

.dropdown {
    position: absolute;
    top: 100%;
    left: -1.1rem;
    background: var(--paper);
    border-radius: 4px;
    box-shadow: 0 24px 55px rgba(20, 22, 24, 0.22);
    padding: 0.6rem 0;
    min-width: 244px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 60;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { list-style: none; margin: 0; padding: 0; }
.dropdown a {
    display: block;
    padding: 0.62rem 1.4rem;
    color: var(--graphite);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.dropdown a:hover { background: var(--mist); color: var(--ink); padding-left: 1.65rem; }

.nav-actions { display: flex; align-items: center; gap: 1.25rem; }
.nav-cta { font-size: 0.9rem; padding: 11px 22px; }

/* ---------- HAMBURGER & MOBILE MENU ---------- */
.nav-burger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
}
.nav-burger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.mobile-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
.mobile-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(20, 22, 24, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    backdrop-filter: blur(2px);
}
.mobile-open .nav-scrim { opacity: 1; visibility: visible; }

@media (max-width: 1040px) {
    .nav-item { margin: 0 0.7rem; }
    .nav-link { font-size: 0.85rem; }
}
@media (max-width: 960px) {
    .nav-burger { display: flex; }
    .nav-actions .nav-cta { display: none; }
    .nav-menu {
        position: fixed;
        top: var(--header-h);
        right: 0;
        bottom: 0;
        width: min(90vw, 400px);
        background: var(--ink);
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1.75rem 2.5rem;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.34s var(--ease);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        /* The drawer and the logo are siblings inside .nav-inner, so without
           an explicit order the logo can paint over the panel. */
        z-index: 220;
        box-shadow: -18px 0 40px rgba(0, 0, 0, 0.32);
    }
    .site-nav.mobile-open .nav-menu { transform: translateX(0); }
    .nav-item {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateX(18px);
    }
    /* Items settle in sequence behind the panel, which reads calmer than the
       whole list appearing at once. Delays are capped so a long menu never
       leaves the last item hanging. */
    .site-nav.mobile-open .nav-item,
    .site-nav.mobile-open .nav-menu__extras {
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
        transition-delay: 0.16s;
    }
    .site-nav.mobile-open .nav-item:nth-child(2)  { transition-delay: 0.21s; }
    .site-nav.mobile-open .nav-item:nth-child(3)  { transition-delay: 0.26s; }
    .site-nav.mobile-open .nav-item:nth-child(4)  { transition-delay: 0.31s; }
    .site-nav.mobile-open .nav-item:nth-child(5)  { transition-delay: 0.36s; }
    .site-nav.mobile-open .nav-item:nth-child(6)  { transition-delay: 0.41s; }
    .site-nav.mobile-open .nav-item:nth-child(7)  { transition-delay: 0.46s; }
    .site-nav.mobile-open .nav-item:nth-child(n+8) { transition-delay: 0.5s; }
    .nav-menu__extras { opacity: 0; transform: translateX(18px); }
    .site-nav.mobile-open .nav-menu__extras { transition-delay: 0.54s; }
    .nav-link { padding: 1.05rem 0; justify-content: space-between; font-size: 1.02rem; min-height: 44px; }
    .chev { width: 8px; height: 8px; }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .nav-item.open .dropdown { max-height: 640px; padding-bottom: 0.6rem; }
    .dropdown a { color: rgba(255, 255, 255, 0.72); padding: 0.7rem 0 0.7rem 1rem; min-height: 40px; }
    .dropdown a:hover { background: transparent; color: #fff; padding-left: 1.3rem; }
}

/* ---------- STICKY QUOTE ---------- */
.sticky-quote {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 150;
    background: #fff;
    color: var(--ink);
    border-color: #fff;
    box-shadow: 0 12px 30px rgba(20, 22, 24, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.35s ease;
}
.sticky-quote.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.sticky-quote:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
@media (max-width: 600px) {
    .sticky-quote { right: 1rem; bottom: 1rem; left: 1rem; }
}

/* ---------- SITE MAIN / FIXED-NAV OFFSET ---------- */
.site-main { padding-top: var(--header-h); }

/* ---------- BLOCK: HERO (ROTATING) ---------- */
.block-hero {
    position: relative;
    min-height: calc(90vh);
    margin-top: calc(-1 * var(--header-h)); /* pull behind fixed nav (lesson #4) */
    padding-top: var(--header-h);
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}
.block-hero__slides { position: absolute; inset: 0; z-index: 0; }
.block-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.block-hero__slide.is-active { opacity: 1; }
.block-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.block-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20, 22, 24, 0.42) 0%, rgba(20, 22, 24, 0.28) 45%, rgba(20, 22, 24, 0.86) 100%);
}
.block-hero__content { position: relative; z-index: 2; width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 var(--gutter) 6.5rem; }
.block-hero__inner { max-width: 730px; }
.block-hero__heading { font-size: clamp(2.15rem, 4.8vw, 3.8rem); color: #fff; margin-bottom: 1.5rem; line-height: 1.14; }
.block-hero__lede { font-size: clamp(1rem, 1.6vw, 1.12rem); color: rgba(255, 255, 255, 0.92); line-height: 1.7; max-width: 580px; margin-bottom: 2.25rem; font-weight: 300; }
.block-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
/* Defensive: hero CTA colours must never inherit from content resets */
.block-hero .btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.block-hero .btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.block-hero .btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.block-hero__pause {
    position: absolute;
    z-index: 3;
    left: var(--gutter);
    bottom: 2rem;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(20, 22, 24, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
}
.block-hero__pause:hover { background: rgba(20, 22, 24, 0.7); }

/* Light hero scheme — for bright footage: light overlay, ink text */
.block-hero--light .block-hero__overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.35) 45%, rgba(244, 245, 246, 0.92) 100%);
}
.block-hero--light .block-hero__heading { color: var(--ink); }
.block-hero--light .block-hero__lede { color: var(--graphite); }
.block-hero--light .block-hero__ctas .btn--light { background: var(--ink); color: #fff; border-color: var(--ink); }
.block-hero--light .block-hero__ctas .btn--light:hover { background: var(--accent); border-color: var(--accent); }
.block-hero--light .block-hero__ctas .btn--ghost-light { color: var(--ink); border-color: rgba(20, 22, 24, 0.5); }
.block-hero--light .block-hero__ctas .btn--ghost-light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
@media (max-width: 900px) { .block-hero { min-height: 82vh; } }
@media (max-width: 380px) {
    .block-hero__ctas { flex-direction: column; align-items: stretch; }
    .block-hero__ctas .btn { width: 100%; }
}

/* ---------- BLOCK: PAGE BANNER ---------- */
.block-banner { background: var(--ink); color: rgba(255, 255, 255, 0.85); padding-top: 4.5rem; padding-bottom: 4.5rem; }
/* Breadcrumb bar sits BELOW the banner (light strip), not inside it. */
.crumb-bar { background: var(--mist); border-bottom: 1px solid var(--line); font-size: 0.82rem; color: var(--slate); }
.crumb-bar__inner { padding-top: 0.7rem; padding-bottom: 0.7rem; }
.crumb-bar a { color: var(--graphite); text-decoration: none; }
.crumb-bar a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.crumb-bar .breadcrumb_last { color: var(--ink); font-weight: 500; }
@media (max-width: 600px) {
    /* Route trails run five deep — keep them tidy on small screens */
    .crumb-bar { font-size: 0.76rem; }
}
.block-banner__heading { font-size: clamp(2rem, 4vw, 3rem); color: #fff; }
.block-banner__sub { margin-top: 1rem; max-width: 640px; font-weight: 300; font-size: 1.05rem; }
.block-banner__cta { margin-top: 1.75rem; }
.block-banner--default, .block-banner--mist { color: var(--graphite); }
.block-banner--default { background: var(--paper); }
.block-banner--default .block-banner__heading, .block-banner--mist .block-banner__heading { color: var(--ink); }

/* Photographic banner — image behind, dark overlay for contrast */
.block-banner--photo { position: relative; overflow: hidden; padding-top: 6.5rem; padding-bottom: 6.5rem; }
/* Height variants (banner_height field) */
.block-banner--short { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.block-banner--tall { padding-top: 7.5rem; padding-bottom: 7.5rem; }
/* Custom height: min-height set inline; content vertically centred */
.block-banner--flex { display: flex; align-items: center; }
.block-banner--flex .block-banner__inner { width: 100%; }
.block-banner--photo.block-banner--short { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.block-banner--photo.block-banner--tall { padding-top: 10rem; padding-bottom: 10rem; }
.block-banner__bg { position: absolute; inset: 0; z-index: 0; }
.block-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.block-banner__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 22, 24, 0.66), rgba(20, 22, 24, 0.78)); }
.block-banner__inner { position: relative; z-index: 1; }
.block-banner--photo .block-banner__heading { color: #fff; }
.block-banner--photo { color: rgba(255, 255, 255, 0.85); }

/* ---------- BLOCK: AIRPORT MODULE ---------- */
.block-airport--mist { background: var(--mist); }
.block-airport__heading { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 2.25rem; }
.block-airport__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.block-airport__item { padding-top: 1.25rem; border-top: 2px solid var(--accent, var(--ink)); }
.block-airport__item h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.block-airport__item p { color: var(--slate); font-size: 0.95rem; line-height: 1.75; }
@media (max-width: 900px) { .block-airport__grid { grid-template-columns: 1fr; gap: 1.75rem; } }

/* ---------- BLOCK: TOWN MODULE ---------- */
.block-town__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: center; }
.block-town--img-right .block-town__grid { grid-template-columns: 1.15fr 0.85fr; }
.block-town--img-right .block-town__media { order: 2; }
.block-town__grid--no-image { grid-template-columns: 1fr; max-width: var(--wrap-narrow); }
.block-town__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.block-town__copy h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.block-town__copy p { font-size: 1.02rem; line-height: 1.85; font-weight: 300; }
.block-town__copy p + p { margin-top: 1rem; }
@media (max-width: 900px) {
    .block-town__grid, .block-town--img-right .block-town__grid { grid-template-columns: 1fr; gap: 2rem; }
    .block-town__media, .block-town--img-right .block-town__media { order: -1; }
}

/* ---------- BLOCK: VEHICLE STRIP ---------- */
.block-vstrip__heading { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 0.75rem; }
.block-vstrip__intro { color: var(--slate); font-weight: 300; margin-bottom: 2.25rem; max-width: 640px; }
.block-vstrip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.block-vstrip__card {
    display: block;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.block-vstrip__card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(20, 22, 24, 0.08); }
.block-vstrip__card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.block-vstrip__name { display: block; font-weight: 600; color: var(--ink); padding: 1.1rem 1.25rem 0.15rem; }
.block-vstrip__note { display: block; font-size: 0.88rem; color: var(--slate); font-weight: 300; padding: 0 1.25rem 0.35rem; }
/* Shared capacity row (vehicle strip, fleet cards, vehicle page banner) */
.veh-cap { display: flex; gap: 1.1rem; align-items: center; font-size: 0.88rem; color: var(--graphite); }
.veh-cap__item { display: inline-flex; align-items: center; gap: 0.35rem; }
.veh-cap__item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; }
.block-vstrip__meta { padding: 0 1.25rem 1.2rem; }
.post-card__cap { margin-top: 0.75rem; }
/* On the dark banner the accent navy would disappear */
.block-banner__cap { margin-top: 1.1rem; color: rgba(255, 255, 255, 0.85); }
.block-banner__cap svg { fill: #fff; }
@media (max-width: 900px) { .block-vstrip__grid { grid-template-columns: 1fr; } }

/* ---------- BLOCK: SPLIT SECTION ---------- */
.block-split__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; align-items: center; }
.block-split--img-left .block-split__grid { grid-template-columns: 0.95fr 1.05fr; }
.block-split--img-left .block-split__copy { order: 2; }
.block-split--img-left .block-split__media { order: 1; }
.block-split__media { position: relative; }
.block-split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.block-split__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 3rem 1.75rem 1.5rem;
    color: #fff;
    font-size: 0.9rem;
    background: linear-gradient(180deg, transparent, rgba(20, 22, 24, 0.78));
}
.block-split__copy > * + *,
.block-split__copy > .acf-innerblocks-container > * + * { margin-top: 1.15rem; }
.block-split__copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.55rem); }
.block-split__copy p { font-size: 1.03rem; line-height: 1.85; font-weight: 300; }
@media (max-width: 900px) {
    .block-split__grid, .block-split--img-left .block-split__grid { grid-template-columns: 1fr; gap: 2.75rem; }
    .block-split__media, .block-split--img-left .block-split__media { order: -1; }
    .block-split__media img { aspect-ratio: 16 / 10; }
}

/* ---------- BLOCK: FEATURE GRID ---------- */
.block-features__heading { font-size: clamp(1.75rem, 3.2vw, 2.45rem); margin-bottom: 2.75rem; max-width: 730px; }
.block-features__grid { display: grid; gap: 3.5rem; }
.block-features--cols-2 .block-features__grid { grid-template-columns: repeat(2, 1fr); }
.block-features--cols-3 .block-features__grid { grid-template-columns: repeat(3, 1fr); }
.block-features--cols-4 .block-features__grid { grid-template-columns: repeat(4, 1fr); }
.block-features__item { padding-top: 1.5rem; border-top: 2px solid var(--ink); }
.block-features--dark .block-features__item { border-top-color: rgba(255, 255, 255, 0.4); }
.block-features__item h3 { font-size: 1.25rem; margin-bottom: 0.7rem; }
.block-features__item p { color: var(--slate); font-size: 0.96rem; line-height: 1.75; }
.block-features--dark .block-features__item p { color: rgba(255, 255, 255, 0.7); }
@media (max-width: 900px) {
    .block-features--cols-2 .block-features__grid,
    .block-features--cols-3 .block-features__grid,
    .block-features--cols-4 .block-features__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- BLOCK: CTA BAND ---------- */
.block-cta { position: relative; background: var(--charcoal); color: rgba(255, 255, 255, 0.85); text-align: center; overflow: hidden; }
.block-cta--default { background: var(--paper); color: var(--graphite); }
.block-cta__bg { position: absolute; inset: 0; z-index: 0; }
.block-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.block-cta__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 22, 24, 0.74), rgba(20, 22, 24, 0.84)); }
.block-cta__inner { position: relative; z-index: 2; }
.block-cta__heading { font-size: clamp(1.9rem, 3.8vw, 2.9rem); color: #fff; margin-bottom: 1.25rem; }
.block-cta--default .block-cta__heading { color: var(--ink); }
.block-cta__body { font-size: 1.08rem; line-height: 1.75; margin-bottom: 2.25rem; font-weight: 300; max-width: 660px; margin-left: auto; margin-right: auto; }
.block-cta__phone { margin-top: 2rem; font-size: 0.96rem; color: rgba(255, 255, 255, 0.72); }
.block-cta__or { margin: 0 0.15rem; }
@media (max-width: 480px) { .block-cta__or { display: block; margin: 0.35rem 0 0; } }
.block-cta--default .block-cta__phone { color: var(--slate); }
.block-cta__phone a { color: #fff; font-weight: 600; text-decoration: none; margin-left: 0.35rem; }
.block-cta--default .block-cta__phone a { color: var(--ink); }

/* ---------- BLOCK: CONTAINER ---------- */
.block-container--narrow .wrap--narrow { max-width: var(--wrap-narrow); }
.block-container--photo { position: relative; overflow: hidden; color: rgba(255, 255, 255, 0.88); }
.block-container--photo h2, .block-container--photo h3 { color: #fff; }
.block-container__bg { position: absolute; inset: 0; z-index: 0; }
.block-container__bg img { width: 100%; height: 100%; object-fit: cover; }
.block-container__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 22, 24, 0.7), rgba(20, 22, 24, 0.8)); }
.block-container__inner { position: relative; z-index: 1; }
/* Prose flow inside containers — matches the approved demo's rhythm */
/* ACF 6.8.8+ wraps InnerBlocks output in .acf-innerblocks-container on the
   frontend; older versions do not. Match both so prose rhythm survives an
   ACF update. */
.block-container__inner > * + *,
.block-container__inner > .acf-innerblocks-container > * + * { margin-top: 1.25rem; }
.block-container__inner p { line-height: 1.85; }
.block-container__inner h2, .block-container__inner h3 { margin-top: 2rem; }
.block-container__inner > h2:first-child,
.block-container__inner > h3:first-child,
.block-container__inner > .acf-innerblocks-container > h2:first-child,
.block-container__inner > .acf-innerblocks-container > h3:first-child { margin-top: 0; }
.block-container--photo > :not(.block-container__bg) { position: relative; z-index: 1; }

/* ---------- BLOCK: SERVICE DIRECTORY ---------- */
.block-services__head { max-width: 730px; margin-bottom: 3.25rem; }
.block-services__head h2 { font-size: clamp(1.75rem, 3.2vw, 2.45rem); margin-bottom: 1rem; }
.block-services__head p { color: var(--slate); font-size: 1.03rem; line-height: 1.7; font-weight: 300; }
.block-services__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 4rem; border-top: 1px solid var(--line); }
.block-services__list li { list-style: none; margin: 0; }
.block-services__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: padding-left 0.3s ease;
}
.block-services__row:hover { padding-left: 0.75rem; }
.block-services__name { font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.block-services__desc { font-size: 0.92rem; color: var(--slate); text-align: right; line-height: 1.5; font-weight: 400; }
.block-services__arrow { color: var(--platinum); transition: transform 0.25s ease, color 0.25s ease; }
.block-services__row:hover .block-services__arrow { transform: translateX(4px); color: var(--ink); }
.block-services__foot { margin-top: 2.75rem; }
@media (max-width: 900px) { .block-services__list { grid-template-columns: 1fr; column-gap: 0; } }
@media (max-width: 600px) { .block-services__desc { display: none; } }

/* ---------- BLOCK: VEHICLE LIST ---------- */
.block-vehicles__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.block-vehicles__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); }
/* image_fill: image becomes a full-height background matching the list column */
.block-vehicles__media--fill { position: relative; align-self: stretch; min-height: 320px; }
.block-vehicles__media--fill img { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; }
.block-vehicles__copy h2 { font-size: clamp(1.75rem, 3.2vw, 2.45rem); margin-bottom: 1rem; }
.block-vehicles__intro { font-size: 1.03rem; line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }
.block-vehicles__list { list-style: none; margin: 0 0 2rem; padding: 0; border-top: 1px solid var(--line); }
.block-vehicles__list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    list-style: none;
    margin: 0;
}
.block-vehicles__name { font-size: 1.08rem; font-weight: 600; color: var(--ink); text-decoration: none; transition: color 0.2s ease; }
.block-vehicles__name:hover { color: var(--slate); }
.block-vehicles__note { font-size: 0.9rem; color: var(--slate); font-weight: 400; white-space: nowrap; }
@media (max-width: 900px) {
    .block-vehicles__grid { grid-template-columns: 1fr; gap: 2.75rem; }
    .block-vehicles__media img { aspect-ratio: 16 / 10; }
}

/* ---------- BLOCK: ROUTE INDEX ---------- */
.block-rindex__heading { font-size: clamp(1.55rem, 2.8vw, 2.05rem); margin-bottom: 0.75rem; }
.block-rindex__intro { font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 1.75rem; max-width: 620px; }
.block-rindex__list { list-style: none; margin: 0; padding: 0; }
.block-rindex__foot { margin-top: 1.5rem; font-size: 0.88rem; color: var(--slate); font-weight: 300; }

/* Columns: compact multi-column link list */
.block-rindex--columns .block-rindex__list { columns: 4; column-gap: 2.5rem; }
.block-rindex--columns.block-rindex--cols-2 .block-rindex__list { columns: 2; }
.block-rindex--columns.block-rindex--cols-3 .block-rindex__list { columns: 3; }
.block-rindex--columns .block-rindex__item { break-inside: avoid; margin-bottom: 0.55rem; }
.block-rindex--columns .block-rindex__item a {
    font-size: 0.95rem; font-weight: 300; color: var(--graphite); text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease; display: inline-block;
}
.block-rindex--columns .block-rindex__item a:hover { color: var(--accent); padding-left: 0.3rem; }

/* Rows: hairline grid with the journey spelled out */
.block-rindex--rows .block-rindex__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2.5rem; }
.block-rindex--rows.block-rindex--cols-1 .block-rindex__list { grid-template-columns: 1fr; }
.block-rindex--rows.block-rindex--cols-3 .block-rindex__list { grid-template-columns: repeat(3, 1fr); }
.block-rindex--rows.block-rindex--cols-4 .block-rindex__list { grid-template-columns: repeat(4, 1fr); }
.block-rindex--rows .block-rindex__item { border-bottom: 1px solid var(--line); }
.block-rindex--rows .block-rindex__item a {
    display: flex; flex-direction: column; gap: 0.2rem;
    padding: 0.85rem 0; text-decoration: none; transition: padding-left 0.2s ease;
}
.block-rindex--rows .block-rindex__item a:hover { padding-left: 0.35rem; }
.block-rindex--rows .block-rindex__label { font-size: 1rem; font-weight: 600; color: var(--ink); }
.block-rindex--rows .block-rindex__note { font-size: 0.84rem; color: var(--slate); font-weight: 300; }
.block-rindex--rows .block-rindex__item a:hover .block-rindex__label { color: var(--accent); }

/* Pills: inline tags, good for a short list like airports-from-a-town */
.block-rindex--pills .block-rindex__list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.block-rindex--pills .block-rindex__item a {
    display: inline-flex; padding: 0.55rem 1.05rem; border-radius: 999px;
    border: 1px solid var(--line); background: var(--paper);
    font-size: 0.92rem; color: var(--graphite); text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.block-rindex--pills .block-rindex__item a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Dark and accent schemes */
.block-rindex--dark .block-rindex__item a, .block-rindex--accent .block-rindex__item a { color: rgba(255, 255, 255, 0.82); }
.block-rindex--dark .block-rindex__item a:hover, .block-rindex--accent .block-rindex__item a:hover { color: #fff; }
.block-rindex--dark .block-rindex__label, .block-rindex--accent .block-rindex__label { color: #fff; }
.block-rindex--dark .block-rindex__item, .block-rindex--accent .block-rindex__item { border-color: rgba(255, 255, 255, 0.18); }
.block-rindex--dark .block-rindex__foot, .block-rindex--accent .block-rindex__foot { color: rgba(255, 255, 255, 0.7); }
.block-rindex--dark.block-rindex--pills .block-rindex__item a,
.block-rindex--accent.block-rindex--pills .block-rindex__item a { background: transparent; border-color: rgba(255, 255, 255, 0.28); }

@media (max-width: 900px) {
    .block-rindex--columns .block-rindex__list { columns: 2; }
    .block-rindex--rows .block-rindex__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .block-rindex--columns .block-rindex__list { columns: 1; }
    .block-rindex--rows .block-rindex__list { grid-template-columns: 1fr; }
}

/* ---------- BLOCK: LINK COLUMNS ---------- */
.block-links__heading { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 2rem; }
.block-links__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.block-links--cols-1 .block-links__grid { grid-template-columns: 1fr; }
.block-links--cols-2 .block-links__grid { grid-template-columns: repeat(2, 1fr); }
.block-links--cols-3 .block-links__grid { grid-template-columns: repeat(3, 1fr); }
.block-links__col-heading {
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink); margin-bottom: 1.1rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}
.block-links__list { list-style: none; margin: 0; padding: 0; }
.block-links__list li { margin-bottom: 0.55rem; }
.block-links__list a { font-size: 0.94rem; font-weight: 300; color: var(--graphite); text-decoration: none; transition: color 0.2s ease, padding-left 0.2s ease; }
.block-links__list a:hover { color: var(--accent); padding-left: 0.3rem; }
.block-links__more a { font-weight: 500; color: var(--accent); }
.block-links--dark .block-links__col-heading, .block-links--accent .block-links__col-heading { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.4); }
.block-links--dark .block-links__list a, .block-links--accent .block-links__list a { color: rgba(255, 255, 255, 0.78); }
.block-links--dark .block-links__list a:hover, .block-links--accent .block-links__list a:hover { color: #fff; }
.block-links--dark .block-links__more a, .block-links--accent .block-links__more a { color: #fff; }
@media (max-width: 900px) { .block-links__grid, .block-links--cols-3 .block-links__grid, .block-links--cols-4 .block-links__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 560px) { .block-links__grid, .block-links--cols-2 .block-links__grid, .block-links--cols-3 .block-links__grid, .block-links--cols-4 .block-links__grid { grid-template-columns: 1fr; } }

/* ---------- SOCIAL ICONS ---------- */
.social-links { list-style: none; display: flex; gap: 0.6rem; margin: 1.5rem 0 0; padding: 0; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.4rem; height: 2.4rem; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22); color: rgba(255, 255, 255, 0.82);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social-links a:hover, .social-links a:focus-visible { background: var(--accent); border-color: var(--accent); color: #fff; }
.social-links--drawer { margin-top: 1.25rem; justify-content: flex-start; }

/* ---------- BLOG: TOPIC PILLS + COUNT ---------- */
.topic-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.topic-pill {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.5rem 1rem; border-radius: 999px;
    border: 1px solid var(--line); background: var(--paper);
    color: var(--graphite); text-decoration: none;
    font-size: 0.88rem; line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.topic-pill:hover { border-color: var(--accent); color: var(--accent); }
.topic-pill.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.topic-pill__count {
    font-size: 0.76rem; color: var(--slate);
    background: var(--mist); border-radius: 999px; padding: 0.1rem 0.42rem;
}
.topic-pill.is-active .topic-pill__count { background: rgba(255, 255, 255, 0.22); color: #fff; }
.blog-index__summary { font-size: 0.88rem; color: var(--slate); margin-bottom: 1.75rem; }

/* ---------- BLOCK: KEY FACTS ---------- */
.block-facts__head { max-width: 620px; margin-bottom: 2.5rem; }
.block-facts__heading { font-size: clamp(1.75rem, 3.2vw, 2.45rem); margin-bottom: 0.85rem; }
/* Hairline accent rule under the heading — quieter than an eyebrow label */
.block-facts__heading::after {
    content: ""; display: block; width: 3rem; height: 2px;
    background: var(--accent); margin-top: 1rem;
}
.block-facts__intro { font-size: 1.03rem; line-height: 1.8; font-weight: 300; }
.block-facts__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.block-facts--cols-1 .block-facts__grid { grid-template-columns: 1fr; }
.block-facts--cols-3 .block-facts__grid { grid-template-columns: repeat(3, 1fr); }
/* Hairline grid: cells sit on the container's line colour with 1px gaps */
.block-facts__item { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.75rem 1.9rem; background: var(--paper); }
.block-facts--panel .block-facts__grid { box-shadow: 0 10px 30px rgba(20, 22, 24, 0.06); }
.block-facts__icon {
    flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
    width: 2.6rem; height: 2.6rem; border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: var(--accent);
}
.block-facts__text { display: block; }
.block-facts__title { display: block; font-weight: 600; font-size: 1.04rem; color: var(--ink); margin-bottom: 0.35rem; }
.block-facts__body { display: block; font-size: 0.94rem; line-height: 1.7; font-weight: 300; color: var(--slate); }
.block-facts__footnote { margin-top: 1.5rem; font-size: 0.92rem; color: var(--slate); font-weight: 300; }
/* Mist scheme: cells lift off the tinted background */
.block-facts--mist .block-facts__item { background: var(--paper); }
/* Dark + accent schemes: invert the hairline grid */
.block-facts--dark .block-facts__grid, .block-facts--accent .block-facts__grid { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.16); }
.block-facts--dark .block-facts__item { background: var(--charcoal); }
.block-facts--accent .block-facts__item { background: transparent; backdrop-filter: brightness(1.06); }
.block-facts--dark .block-facts__icon, .block-facts--accent .block-facts__icon { background: rgba(255, 255, 255, 0.14); color: #fff; }
.block-facts--dark .block-facts__title, .block-facts--accent .block-facts__title { color: #fff; }
.block-facts--dark .block-facts__body, .block-facts--accent .block-facts__body,
.block-facts--dark .block-facts__footnote, .block-facts--accent .block-facts__footnote { color: rgba(255, 255, 255, 0.78); }
.block-facts--dark .block-facts__heading::after, .block-facts--accent .block-facts__heading::after { background: rgba(255, 255, 255, 0.55); }
.block-facts--accent .block-facts__grid { box-shadow: none; }
@media (max-width: 900px) {
    .block-facts__grid, .block-facts--cols-3 .block-facts__grid { grid-template-columns: 1fr; }
    .block-facts__item { padding: 1.4rem 1.5rem; }
}

/* ---------- BLOCK: POPULAR ROUTES ---------- */
.block-routes__heading { font-size: clamp(1.75rem, 3.2vw, 2.45rem); margin-bottom: 0.75rem; }
.block-routes__intro { font-size: 1.03rem; line-height: 1.8; font-weight: 300; margin-bottom: 2.25rem; max-width: 560px; }
.block-routes__heading + .block-routes__grid { margin-top: 1.5rem; }
.block-routes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.block-routes--cols-2 .block-routes__grid { grid-template-columns: repeat(2, 1fr); }
.block-routes--cols-3 .block-routes__grid { grid-template-columns: repeat(3, 1fr); }
.block-routes__card {
    position: relative; display: flex; align-items: flex-end;
    min-height: 220px; border-radius: var(--radius); overflow: hidden;
    background: var(--charcoal); color: #fff; text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.block-routes__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.block-routes--photo .block-routes__card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20, 22, 24, 0.05) 35%, rgba(20, 22, 24, 0.82) 100%);
}
.block-routes__card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(20, 22, 24, 0.18); }
.block-routes__card:hover img { transform: scale(1.05); }
.block-routes__body { position: relative; z-index: 2; width: 100%; padding: 1.3rem 1.4rem; }
.block-routes__pair { display: flex; align-items: center; flex-wrap: wrap; gap: 0.55rem; font-weight: 600; font-size: 1.1rem; line-height: 1.3; }
.block-routes__swap {
    display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
    width: 1.5rem; height: 1.5rem; border-radius: 50%;
    background: var(--accent); color: #fff;
}
.block-routes__go { display: block; margin-top: 0.4rem; font-size: 0.84rem; font-weight: 300; color: rgba(255, 255, 255, 0.72); transition: color 0.2s ease; }
.block-routes__card:hover .block-routes__go { color: #fff; }
/* Accent tiles: no imagery, navy panels with the swap chip inverted */
.block-routes--tint .block-routes__card { background: var(--accent); min-height: 150px; align-items: center; }
.block-routes--tint .block-routes__swap { background: #fff; color: var(--accent); }
.block-routes--tint .block-routes__go { color: rgba(255, 255, 255, 0.78); }
@media (max-width: 1000px) { .block-routes__grid, .block-routes--cols-3 .block-routes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .block-routes__grid, .block-routes--cols-2 .block-routes__grid, .block-routes--cols-3 .block-routes__grid { grid-template-columns: 1fr; }
    .block-routes__card { min-height: 170px; }
}

/* ---------- BLOCK: COVERAGE & JOURNEYS ---------- */
.block-coverage__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; align-items: start; }
.block-coverage__intro h2 { font-size: clamp(1.75rem, 3.2vw, 2.45rem); margin-bottom: 1.25rem; }
.block-coverage__intro p { font-size: 1.01rem; line-height: 1.85; margin-bottom: 1.25rem; max-width: 420px; font-weight: 300; }
.block-coverage__counties { color: var(--slate); font-size: 0.96rem; line-height: 1.95; font-weight: 400; }
.block-coverage__journeys h3 { font-size: 1.02rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.block-coverage__list { list-style: none; margin: 0; padding: 0; }
.block-coverage__list li { list-style: none; margin: 0; }
.block-coverage__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 500;
    transition: padding-left 0.25s ease;
}
.block-coverage__list a:hover { padding-left: 0.5rem; }
.block-coverage__via { font-size: 0.88rem; color: var(--slate); font-weight: 400; }
/* Layouts: split (default), image beside, or full-width journeys */
.block-coverage--full .block-coverage__grid { display: block; }
.block-coverage--full .block-coverage__intro { max-width: 640px; margin-bottom: 2.25rem; }
.block-coverage--full .block-coverage__intro p { max-width: none; }
.block-coverage--listcols-2 .block-coverage__list { columns: 2; column-gap: 3rem; }
.block-coverage--listcols-3 .block-coverage__list { columns: 3; column-gap: 2.5rem; }
/* Keep each row intact when the list flows into columns */
.block-coverage--full .block-coverage__list li { break-inside: avoid; -webkit-column-break-inside: avoid; }
.block-coverage__media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius); }
.block-coverage--image .block-coverage__grid { align-items: stretch; }
@media (max-width: 900px) {
    .block-coverage__grid { grid-template-columns: 1fr; gap: 2.75rem; }
    .block-coverage--listcols-2 .block-coverage__list, .block-coverage--listcols-3 .block-coverage__list { columns: 1; }
    .block-coverage__media img { max-height: 320px; }
}

/* ---------- BLOCK: ACCORDION / FAQ ---------- */
.block-accordion__heading { font-size: clamp(1.75rem, 3.2vw, 2.45rem); margin-bottom: 2.5rem; }
.block-accordion__item { border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.block-accordion__item summary {
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    list-style: none;
    position: relative;
    padding-right: 2.5rem;
    line-height: 1.4;
    transition: color 0.25s ease;
}
.block-accordion__item summary::-webkit-details-marker { display: none; }
.block-accordion__item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: -4px;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--slate);
    transition: transform 0.35s ease;
}
.block-accordion__item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.block-accordion__item summary:hover { color: var(--accent); }
.block-accordion__item[open] summary { color: var(--accent); }
.block-accordion__body { margin-top: 1rem; color: var(--slate); line-height: 1.8; font-size: 0.95rem; }
.block-accordion__body a { color: var(--ink); }

/* ---------- ACCENT SCHEME (navy) ----------
   Available on section blocks via Style tab → Colour scheme.
   Solid var(--accent) first: fallback where color-mix is unsupported. */
.block-container--accent, .block-cta--accent, .block-accordion--accent,
.block-airport--accent, .block-features--accent, .block-coverage--accent,
.block-banner--accent {
    background: var(--accent);
    background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 78%, #000));
    color: rgba(255, 255, 255, 0.85);
}
.block-container--accent h2, .block-container--accent h3,
.block-cta--accent h2, .block-accordion--accent .block-accordion__heading,
.block-airport--accent h2, .block-features--accent h2, .block-coverage--accent h2,
.block-banner--accent .block-banner__heading {
    color: #fff;
}
.block-container--accent a, .block-cta--accent a, .block-accordion--accent a { color: #fff; }
.block-accordion--accent .block-accordion__item { border-color: rgba(255, 255, 255, 0.25); }
.block-accordion--accent summary, .block-accordion--accent .block-accordion__body { color: rgba(255, 255, 255, 0.88); }
.block-accordion--accent .block-accordion__item[open] summary,
.block-accordion--accent .block-accordion__item summary:hover { color: #fff; }
.block-accordion--accent .block-accordion__item[open] summary::after { color: #fff; }
.block-airport--accent .block-airport__item { border-top-color: rgba(255, 255, 255, 0.55); }
.block-airport--accent .block-airport__item p { color: rgba(255, 255, 255, 0.78); }

/* Accent as a CONTENT PANEL on image blocks: the photo stays clean, the copy
   side becomes the navy card — image-beside-colour without a new block. */
.block-split--accent, .block-town--accent { background: var(--paper); }
.block-split--accent .block-split__copy,
.block-town--accent .block-town__copy {
    background: var(--accent);
    background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 78%, #000));
    color: rgba(255, 255, 255, 0.88);
    padding: 2.75rem;
    border-radius: var(--radius);
}
.block-split--accent .block-split__copy h2, .block-split--accent .block-split__copy h3,
.block-town--accent .block-town__copy h2, .block-town--accent .block-town__copy h3 { color: #fff; }
.block-split--accent .block-split__copy a, .block-town--accent .block-town__copy a { color: #fff; }
.block-split--accent .block-split__copy .btn--primary,
.block-town--accent .block-town__copy .btn--primary { background: #fff; color: var(--accent); border-color: #fff; }
@media (max-width: 768px) {
    .block-split--accent .block-split__copy, .block-town--accent .block-town__copy { padding: 1.75rem; }
}

/* Accent on testimonials: full navy band, translucent quote cards */
.block-testimonials--accent {
    background: var(--accent);
    background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 78%, #000));
    color: rgba(255, 255, 255, 0.88);
}
.block-testimonials--accent .block-testimonials__heading { color: #fff; }
.block-testimonials--accent .block-testimonials__item { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius); padding: 1.75rem; color: rgba(255, 255, 255, 0.9); }
.block-testimonials--accent .block-testimonials__detail { color: var(--platinum); }

/* ---------- PHOTO STRIP ---------- */
.block-photos { --photo-gap: 1.25rem; --photo-ratio: 3 / 2; }
.block-photos--gap-none { --photo-gap: 0; }
.block-photos--gap-sm { --photo-gap: 0.5rem; }
.block-photos--gap-lg { --photo-gap: 2.25rem; }
.block-photos--ratio-4-3 { --photo-ratio: 4 / 3; }
.block-photos--ratio-16-9 { --photo-ratio: 16 / 9; }
.block-photos--ratio-1-1 { --photo-ratio: 1 / 1; }
.block-photos--ratio-3-4 { --photo-ratio: 3 / 4; }
.block-photos--ratio-auto { --photo-ratio: auto; }
.block-photos__grid { display: grid; gap: var(--photo-gap); }
.block-photos--cols-1 .block-photos__grid { grid-template-columns: 1fr; }
.block-photos--cols-2 .block-photos__grid { grid-template-columns: repeat(2, 1fr); }
.block-photos--cols-3 .block-photos__grid { grid-template-columns: repeat(3, 1fr); }
.block-photos--cols-4 .block-photos__grid { grid-template-columns: repeat(4, 1fr); }
.block-photos--cols-5 .block-photos__grid { grid-template-columns: repeat(5, 1fr); }
.block-photos__item { margin: 0; }
.block-photos__item img { width: 100%; aspect-ratio: var(--photo-ratio); object-fit: cover; border-radius: var(--radius); display: block; }
.block-photos--gap-none .block-photos__item img { border-radius: 0; }
.block-photos--ratio-auto .block-photos__item img { aspect-ratio: auto; height: auto; object-fit: fill; }
.block-photos__item figcaption { font-size: 0.85rem; color: var(--slate); margin-top: 0.5rem; }

/* Masonry: CSS columns keep natural heights and avoid a JS layout pass */
.block-photos--masonry .block-photos__grid { display: block; columns: 3; column-gap: var(--photo-gap); }
.block-photos--masonry.block-photos--cols-2 .block-photos__grid { columns: 2; }
.block-photos--masonry.block-photos--cols-4 .block-photos__grid { columns: 4; }
.block-photos--masonry.block-photos--cols-5 .block-photos__grid { columns: 5; }
.block-photos--masonry .block-photos__item { break-inside: avoid; -webkit-column-break-inside: avoid; margin-bottom: var(--photo-gap); }

/* Carousel: native scroll-snap, so touch and keyboard work without JS */
.block-photos__carousel { position: relative; }
.block-photos--carousel .block-photos__grid {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--photo-gap) * 2)) / 3);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}
.block-photos--carousel .block-photos__grid::-webkit-scrollbar { display: none; }
.block-photos--carousel.block-photos--cols-2 .block-photos__grid { grid-auto-columns: calc((100% - var(--photo-gap)) / 2); }
.block-photos--carousel.block-photos--cols-4 .block-photos__grid { grid-auto-columns: calc((100% - (var(--photo-gap) * 3)) / 4); }
.block-photos--carousel.block-photos--cols-5 .block-photos__grid { grid-auto-columns: calc((100% - (var(--photo-gap) * 4)) / 5); }
.block-photos--carousel .block-photos__item { scroll-snap-align: start; }
.block-photos__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 2.9rem; height: 2.9rem; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--paper); color: var(--ink);
    box-shadow: 0 4px 16px rgba(20, 22, 24, 0.22);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.block-photos__nav:hover { background: var(--accent); color: #fff; }
.block-photos__nav--prev { left: -1.2rem; }
.block-photos__nav--next { right: -1.2rem; }
.block-photos__nav[disabled] { opacity: 0.35; cursor: default; }
.block-photos__nav[disabled]:hover { background: var(--paper); color: var(--ink); }

/* Zoom trigger wraps the image without changing its box */
.block-photos__zoom { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; position: relative; }
.block-photos__zoom img { transition: transform 0.5s var(--ease), filter 0.3s ease; }
.block-photos--lightbox .block-photos__item { overflow: hidden; border-radius: var(--radius); }
.block-photos__zoom:hover img { transform: scale(1.04); filter: brightness(1.05); }

/* Lightbox */
.acc-lightbox {
    position: fixed; inset: 0; z-index: 500;
    display: flex; align-items: center; justify-content: center;
    background: rgba(12, 13, 15, 0.92);
    padding: clamp(1rem, 4vw, 3rem);
    opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s;
}
.acc-lightbox.is-open { opacity: 1; visibility: visible; }
.acc-lightbox__img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--radius); }
.acc-lightbox__caption { color: rgba(255, 255, 255, 0.82); font-size: 0.9rem; text-align: center; margin-top: 1rem; font-weight: 300; }
.acc-lightbox__figure { margin: 0; display: flex; flex-direction: column; align-items: center; max-width: 100%; }
.acc-lightbox button {
    position: absolute; border: 0; cursor: pointer; border-radius: 50%;
    width: 3rem; height: 3rem; background: rgba(255, 255, 255, 0.12); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
}
.acc-lightbox button:hover { background: var(--accent); }
.acc-lightbox__close { top: 1.25rem; right: 1.25rem; }
.acc-lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.acc-lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.acc-lightbox__count { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; }
@media (max-width: 640px) {
    .acc-lightbox__prev { left: 0.5rem; }
    .acc-lightbox__next { right: 0.5rem; }
    .block-photos__nav--prev { left: -0.5rem; }
    .block-photos__nav--next { right: -0.5rem; }
}
@media (max-width: 900px) {
    /* Carousel keeps scrolling and masonry keeps its columns; only the
       wrapping layouts collapse. */
    .block-photos:not(.block-photos--carousel):not(.block-photos--masonry).block-photos--cols-3 .block-photos__grid,
    .block-photos:not(.block-photos--carousel):not(.block-photos--masonry).block-photos--cols-4 .block-photos__grid,
    .block-photos:not(.block-photos--carousel):not(.block-photos--masonry).block-photos--cols-5 .block-photos__grid { grid-template-columns: repeat(2, 1fr); }
    .block-photos--masonry.block-photos--cols-3 .block-photos__grid,
    .block-photos--masonry.block-photos--cols-4 .block-photos__grid,
    .block-photos--masonry.block-photos--cols-5 .block-photos__grid { columns: 2; }
    .block-photos--carousel .block-photos__grid { grid-auto-columns: calc((100% - var(--photo-gap)) / 2) !important; }
}
@media (max-width: 560px) {
    .block-photos:not(.block-photos--carousel):not(.block-photos--masonry) .block-photos__grid { grid-template-columns: 1fr !important; }
    .block-photos--masonry .block-photos__grid { columns: 1; }
    .block-photos--carousel .block-photos__grid { grid-auto-columns: 86% !important; }
}

/* ---------- DIVIDER ---------- */
.block-divider__bar {
    border: 0;
    margin: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--ink), var(--accent));
    border-radius: 999px;
}
.block-divider__bar--half { width: 50%; }
.block-divider__bar--short { width: 120px; }
.block-divider__bar--center { margin-left: auto; margin-right: auto; }
.block-divider__bar--hairline { height: 2px; }
.block-divider__bar--bold { height: 5px; }

/* Lead paragraph — registered block style on core/paragraph */
p.is-style-lead { font-size: 1.16rem; line-height: 1.8; }

/* ---------- BLOCK: ROUTE FACTS ---------- */
.block-route-facts { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.block-route-facts__list { display: flex; gap: 4rem; flex-wrap: wrap; padding: 1.75rem 0; margin: 0; }
.block-route-facts__list dt { font-size: 0.82rem; font-weight: 600; color: var(--slate); margin-bottom: 0.2rem; }
.block-route-facts__list dd { font-size: 1.25rem; font-weight: 600; color: var(--ink); margin: 0; }
@media (max-width: 600px) { .block-route-facts__list { gap: 2rem; } }

/* ---------- BLOCK: TESTIMONIALS ---------- */
.block-testimonials__heading { font-size: clamp(1.75rem, 3.2vw, 2.45rem); margin-bottom: 2.75rem; max-width: 730px; }
.block-testimonials__grid { display: grid; gap: 2rem; }
.block-testimonials--cols-2 .block-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
.block-testimonials--cols-3 .block-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
.block-testimonials__item {
    background: var(--mist);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 0;
}
[class*="--mist"] .block-testimonials__item, .block-testimonials--mist .block-testimonials__item { background: var(--paper); border: 1px solid var(--line); }
.block-testimonials__item p { font-size: 1.02rem; line-height: 1.75; color: var(--graphite); margin-bottom: 1.25rem; }
.block-testimonials__item cite { font-style: normal; font-weight: 600; color: var(--ink); font-size: 0.92rem; display: block; }
.block-testimonials__detail { font-size: 0.82rem; color: var(--slate); }
@media (max-width: 900px) {
    .block-testimonials--cols-2 .block-testimonials__grid,
    .block-testimonials--cols-3 .block-testimonials__grid { grid-template-columns: 1fr; }
}

/* ---------- BLOCK: POST CARDS / CARD GRIDS ---------- */
.block-cards__heading { font-size: clamp(1.75rem, 3.2vw, 2.45rem); margin-bottom: 2.75rem; max-width: 730px; }
.block-cards__grid { display: grid; gap: 2rem; }
.block-cards--cols-2 .block-cards__grid, .block-cards__grid.block-cards--cols-2 { grid-template-columns: repeat(2, 1fr); }
.block-cards--cols-3 .block-cards__grid, .block-cards__grid.block-cards--cols-3 { grid-template-columns: repeat(3, 1fr); }
.block-cards--cols-4 .block-cards__grid, .block-cards__grid.block-cards--cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .block-cards__grid, .block-cards--cols-2 .block-cards__grid, .block-cards--cols-3 .block-cards__grid, .block-cards--cols-4 .block-cards__grid,
    .block-cards__grid.block-cards--cols-2, .block-cards__grid.block-cards--cols-3, .block-cards__grid.block-cards--cols-4 { grid-template-columns: 1fr; }
}

.post-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(20, 22, 24, 0.08); }
.post-card__image { display: block; }
.post-card__image img { width: 100%; aspect-ratio: var(--card-ratio, 3 / 2); object-fit: cover; }
.post-card__body { padding: 1.5rem 1.5rem 1.75rem; }
.post-card__date { font-size: 0.8rem; color: var(--slate); display: block; margin-bottom: 0.4rem; }
.post-card__title { font-size: 1.12rem; line-height: 1.35; margin-bottom: 0.6rem; }
.post-card__title a { color: var(--ink); text-decoration: none; }
.post-card__title a:hover { color: var(--slate); }
.post-card__excerpt { font-size: 0.92rem; color: var(--slate); line-height: 1.65; }

/* ---------- BLOG INDEX / PAGINATION ---------- */
.pagination { margin-top: 3rem; }
.pagination .nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.92rem;
}
.pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--ink); }

/* ---------- SINGLE POST ---------- */
.entry-content > * + * { margin-top: 1.25rem; }
.entry-content h2 { font-size: 1.6rem; margin-top: 2.5rem; }
.entry-content h3 { font-size: 1.25rem; margin-top: 2rem; }
.entry-content ul, .entry-content ol { padding-left: 1.4rem; }
.entry-content li { margin-bottom: 0.4rem; }
.entry-content a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--accent); }
.entry-content blockquote { border-left: 3px solid var(--platinum); padding-left: 1.25rem; color: var(--slate); }

/* Imported classic markup: legacy captions carry inline width styles
   (style="width: 1920px") that outrank any stylesheet — hence !important. */
.entry-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.entry-content figure,
.entry-content .wp-caption { max-width: 100% !important; width: auto !important; margin: 2rem 0; }
.entry-content figcaption,
.entry-content .wp-caption-text { font-size: 0.85rem; color: var(--slate); margin-top: 0.6rem; }
.entry-content iframe,
.entry-content video { max-width: 100%; }
.entry-content table { display: block; overflow-x: auto; border-collapse: collapse; }
.entry-content th, .entry-content td { border: 1px solid var(--platinum); padding: 0.5rem 0.75rem; text-align: left; }
.entry-content .aligncenter { margin-left: auto; margin-right: auto; }
.entry-content a.btn { text-decoration: none; }
.entry-content .lead { font-size: 1.1rem; }
@media (min-width: 720px) {
    .entry-content .alignleft { float: left; margin: 0.4rem 1.5rem 1rem 0; max-width: 50%; }
    .entry-content .alignright { float: right; margin: 0.4rem 0 1rem 1.5rem; max-width: 50%; }
}

/* ---------- POST SIDEBAR ---------- */
.single-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 3.5rem; align-items: start; }
.post-sidebar { display: grid; gap: 1.5rem; position: sticky; top: calc(var(--header-h, 80px) + 1.5rem); }
.sidebar-card { background: var(--mist); border-radius: var(--radius); padding: 1.75rem; }
.sidebar-card__heading { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.75rem; }
.sidebar-card--cta { background: var(--ink); color: #fff; }
.sidebar-card--cta .sidebar-card__body { color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; margin-bottom: 1.25rem; }
.sidebar-card__phone { margin-top: 1rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.82); }
.sidebar-card__phone a { color: #fff; font-weight: 600; text-decoration: none; }
.sidebar-card__phone a:hover { text-decoration: underline; }
.sidebar-card__links { list-style: none; padding: 0; margin: 0; }
.sidebar-card__links li + li { border-top: 1px solid var(--platinum); }
.sidebar-card__links a { display: block; padding: 0.6rem 0; color: var(--ink); text-decoration: none; font-size: 0.95rem; }
.sidebar-card__links a:hover { text-decoration: underline; text-underline-offset: 3px; }
/* Stock widgets dropped into the Blog Sidebar area inherit the card look. */
.post-sidebar .widget ul { list-style: none; padding: 0; margin: 0; }
.post-sidebar .widget ul li + li { border-top: 1px solid var(--platinum); }
.post-sidebar .widget ul a { display: block; padding: 0.6rem 0; color: var(--ink); text-decoration: none; font-size: 0.95rem; }
.post-sidebar .widget ul a:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 899px) {
    .single-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .post-sidebar { position: static; }
}

/* ---------- SEARCH ---------- */
.search-form { display: flex; gap: 0.75rem; max-width: 480px; margin: 1.5rem 0; }
.search-form__input {
    flex: 1;
    min-width: 0;
    padding: 0.7rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    background: #fff;
    color: var(--ink);
}
.search-form__input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(29, 53, 87, 0.15);
}

/* Header search (icon toggle + strip under the header) */
.nav-search-toggle {
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 10px;
}
.nav-search-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.nav-search-toggle:hover { color: var(--platinum); }
.header-search {
    /* The nav is position:fixed, so the panel must be too — pinned directly
       beneath it (above content, below the nav's z-index 200). */
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 195;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.header-search__inner { padding-top: 1rem; padding-bottom: 1rem; }
.header-search .search-form { margin: 0; max-width: 640px; }

/* Mobile drawer extras: quote CTA + search (options-driven, from the header) */
.nav-menu__extras { display: none; }
@media (max-width: 960px) {
    .nav-menu__extras {
        display: block;
        list-style: none;
        margin-top: 1.5rem;
        padding: 1.5rem 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    /* Full width for the quote CTA only — the search form's submit button
       keeps its natural width beside the input. */
    .nav-menu__extras > .btn { width: 100%; margin-bottom: 1rem; }
    .nav-menu__extras .search-form { margin: 0; max-width: none; }
    .nav-menu__extras .search-form .btn { width: auto; margin-bottom: 0; }
}

/* Accordion type-to-filter (block option; revealed by JS) */
.block-accordion__filter { margin-bottom: 1.5rem; }
.block-accordion__filter input[type="search"] {
    width: 100%;
    max-width: 420px;
    padding: 0.7rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    background: #fff;
    color: var(--ink);
}
.block-accordion__filter input[type="search"]:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(29, 53, 87, 0.15);
}
.block-accordion__filter-empty { margin-top: 0.75rem; color: var(--slate); font-size: 0.95rem; }

/* ---------- 404 ---------- */
.error-404__cta { margin: 1.75rem 0 0.5rem; }
.error-404__links { margin-top: 1.5rem; }
.error-404__links li { display: inline-block; list-style: none; }
.error-404__list { list-style: none; margin: 0; padding: 0; display: inline; }
.error-404__links a { color: var(--ink); font-weight: 600; margin-right: 1.25rem; text-decoration: underline; text-underline-offset: 3px; }
.error-404__links a:hover { color: var(--accent); }

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--ink);
    color: var(--platinum);
    padding: 5rem var(--gutter) 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer__column .custom-logo, .footer__column img { max-height: 64px; width: auto; }
.footer-widget { font-weight: 300; font-size: 0.9rem; line-height: 1.75; }
.footer__heading { font-size: 0.92rem; font-weight: 600; color: #fff; margin: 0 0 1.1rem; }
.footer-widget a { display: block; color: var(--platinum); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.55rem; transition: color 0.2s ease; font-weight: 300; }
/* The seeded link lists use bare <a>…</a><br> markup, where the <br> doubles the
   gap on top of the anchor's own margin. Kill ONLY that br — a hand-written <br>
   anywhere else is intentional and must survive. */
.footer-widget a + br { display: none; }
/* Links inside real prose or lists behave normally; only the bare link lists stack. */
.footer-widget p a,
.footer-widget li a,
.footer-widget span a { display: inline; margin-bottom: 0; }
.footer-widget a:hover { color: #fff; }
.footer-widget ul { list-style: none; margin: 0; padding: 0; }
.footer-bottom {
    max-width: var(--wrap);
    margin: 3.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer__legal-list { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.footer__legal a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.footer__legal a:hover { color: #fff; }
.footer__legal li { list-style: none; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; } }
@media (max-width: 600px) {
    .footer-inner { grid-template-columns: 1fr; gap: 2.25rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- WIDGETS ---------- */
/* POWERED-BY-ZONKEY WIDGET */
.zonkey-powered-by-widget p { margin: 0; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; }
.zonkey-powered-by-widget a { display: inline-flex; align-items: center; gap: 0.34rem; transition: color 0.3s var(--ease); text-decoration: none; }
.zonkey-powered-by-widget svg { display: block; vertical-align: middle; }
.zonkey-powered-by-widget strong { font-weight: 700; color: inherit; }
.zonkey-powered-by-widget--light p { color: rgba(255, 255, 255, 0.5); }
.zonkey-powered-by-widget--light a { color: rgba(255, 255, 255, 0.78); }
.zonkey-powered-by-widget--light a:hover { color: #fff; }
.zonkey-powered-by-widget--dark p { color: var(--slate); }
.zonkey-powered-by-widget--dark a { color: var(--graphite); }
.zonkey-powered-by-widget--dark a:hover { color: var(--ink); }

/* ---------- GRAVITY FORMS ---------- */
.gform_wrapper .gfield { margin-bottom: 1.25rem; }
.gform_wrapper label.gfield_label { font-weight: 600; color: var(--ink); font-size: 0.92rem; margin-bottom: 0.4rem; display: inline-block; }
.gform_wrapper .gform_button { background: var(--ink); color: #fff; border: 1px solid var(--ink); border-radius: var(--radius); min-height: 44px; padding: 12px 26px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: background 0.25s ease; }
.gform_wrapper .gform_button:hover { background: var(--charcoal); }
.gform_wrapper .gform_validation_errors, .gform_wrapper .gfield_validation_message { color: #a4262c; }

/* ---------- ANIMATIONS ---------- */
/* html.js gate: navigation.js stamps the class, so no-JS users always see content */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
/* Reveal variants (reveal_style field) — the .in state resets them all */
html.js .reveal--fade { transform: none; }
html.js .reveal--left { transform: translateX(-28px); }
html.js .reveal--right { transform: translateX(28px); }
html.js .reveal--zoom { transform: scale(0.955); }
html.js .reveal.in { opacity: 1; transform: none; }

/* Stagger (reveal_stagger field): navigation.js tags children with
   .stagger-item and per-child transition delays before observing */
html.js .stagger-item { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
html.js .reveal-stagger.in .stagger-item { opacity: 1; transform: none; }

/* Banner/hero LOAD entrance: title -> sub -> CTA in sequence. Pure CSS on
   paint (html.js-gated, so the editor and no-JS visitors see static text;
   the reduced-motion block's animation kill covers it). */
@keyframes accEnterUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes accEnterFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes accEnterLeft { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: none; } }
@keyframes accEnterRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
html.js .banner-animate .block-banner__heading,
html.js .banner-animate .block-banner__sub,
html.js .banner-animate .block-banner__cta { animation: accEnterUp 0.65s ease both; }
html.js .banner-animate .block-banner__sub { animation-delay: 0.12s; }
html.js .banner-animate .block-banner__cta { animation-delay: 0.24s; }
html.js .banner-animate--fade .block-banner__heading,
html.js .banner-animate--fade .block-banner__sub,
html.js .banner-animate--fade .block-banner__cta { animation-name: accEnterFade; }
html.js .banner-animate--left .block-banner__heading,
html.js .banner-animate--left .block-banner__sub,
html.js .banner-animate--left .block-banner__cta { animation-name: accEnterLeft; }
html.js .banner-animate--right .block-banner__heading,
html.js .banner-animate--right .block-banner__sub,
html.js .banner-animate--right .block-banner__cta { animation-name: accEnterRight; }
html.js .block-hero .block-hero__heading,
html.js .block-hero .block-hero__lede,
html.js .block-hero .block-hero__ctas { animation: accEnterUp 0.7s ease both; }
html.js .block-hero .block-hero__lede { animation-delay: 0.14s; }
html.js .block-hero .block-hero__ctas { animation-delay: 0.28s; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal, .block-hero__slide { transition: none !important; }
    .reveal, .stagger-item { opacity: 1 !important; transform: none !important; transition: none !important; }
    /* Drawer opens instantly; items are present rather than sequenced in */
    .nav-menu { transition: none !important; }
    .nav-item, .nav-menu__extras { opacity: 1 !important; transform: none !important; transition: none !important; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- RESPONSIVE (cross-cutting only) ---------- */
/* Per-component responsive rules live with their component sections above. */
