/* =============================================================
   J.E Revêtement — Home page styles
   Patterns specific to front-page sections that aren't part of
   the global design system. Built on the je-* tokens.
   ============================================================= */

/* ─── Generic helpers used across sections ─────────────────── */
.je-microcopy {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-light);
    font-size: var(--je-fs-micro);
    color: var(--je-color-ink-muted);
    letter-spacing: var(--je-ls-wide);
    margin-bottom: var(--je-space-3);
}
.je-microcopy--on-dark {
    color: rgba(255, 255, 255, 0.78);
}

.je-section__head {
    margin-bottom: var(--je-space-15);
}
.je-section__head--center {
    text-align: center;
}
.je-section__head .je-h2 {
    margin-bottom: var(--je-space-6);
}

/* Section titles on light surfaces always render ink (#111), not muted.
   Sections on dark backgrounds (.je-services, .je-cta-band-v2, .je-section-hero)
   set their own white colour on more specific selectors below. */
.je-urgency .je-h2,
.je-trust .je-h2,
.je-stats-section .je-h2,
.je-steps__title,
.je-testimonials__title,
.je-locations .je-h2,
.je-home-about__title {
    color: var(--je-color-ink);
}
.je-section__sub {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-quote);
    color: var(--je-color-ink-muted);
    max-width: 660px;
    margin: 0 auto;
}

.je-eyebrow--soft {
    background: var(--je-color-blue-light);
    color: var(--je-color-navy);
    font-weight: var(--je-fw-medium);
    font-size: var(--je-fs-meta);
    text-transform: none;
    letter-spacing: var(--je-ls-wide);
    padding: 6px 14px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 16px;
}
.je-eyebrow--soft::before {
    display: none;
}

/* ─── HEADER ────────────────────────────────────────────────── */
.je-body {
    padding-top: 0;
}

.je-header__logo-link,
.je-header .custom-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0; /* prevent stray inline-baseline gap under the img */
}
.je-header__logo-link img,
.je-header .custom-logo {
    width: 100px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.je-header__cta {
    margin-left: auto;
    flex-shrink: 0;
}
.je-header__cta-label-short {
    display: none;
}

.je-header__hamburger {
    display: none;
    background: transparent;
    color: var(--je-color-ink);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition:
        background var(--je-dur-fast) var(--je-ease),
        color var(--je-dur-fast) var(--je-ease);
}
.je-header__hamburger:hover {
    background: var(--je-tint-navy-04);
}
.je-header__hamburger-close {
    display: none;
}

/* Desktop dropdowns ─ hover + focus-within + .is-open (JS click toggle) */
.je-header__nav {
    position: relative;
}
.je-header__nav-item-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.je-header__nav-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.je-header__chevron,
.je-header__chevron-right {
    transition: transform var(--je-dur-fast) var(--je-ease);
    flex-shrink: 0;
}

.je-header__dropdown,
.je-header__subdropdown {
    position: absolute;
    background: var(--je-color-surface);
    border-radius: var(--je-radius-2xl);
    padding: 10px;
    box-shadow: var(--je-shadow-lg);
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
        opacity var(--je-dur-fast) var(--je-ease),
        transform var(--je-dur-fast) var(--je-ease);
    z-index: 50;
}
.je-header__dropdown {
    top: 100%;
    left: 0;
    margin-top: 8px;
}
.je-header__dropdown-group {
    position: relative;
}
.je-header__subdropdown {
    top: -10px;
    left: calc(100% + 8px);
    transform: translateX(-6px);
}

/* Invisible hover bridges — keep :hover alive while the cursor crosses
   the gap between the trigger and the dropdown (and between dropdown
   and subdropdown). */
.je-header__dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
.je-header__subdropdown::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    width: 10px;
}

.je-header__nav-item-wrap.je-has-dropdown:hover > .je-header__dropdown,
.je-header__nav-item-wrap.je-has-dropdown:focus-within > .je-header__dropdown,
.je-header__nav-item-wrap.je-has-dropdown.is-open > .je-header__dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.je-header__dropdown-group.je-has-subdropdown:hover > .je-header__subdropdown,
.je-header__dropdown-group.je-has-subdropdown:focus-within
    > .je-header__subdropdown,
.je-header__dropdown-group.je-has-subdropdown.is-open
    > .je-header__subdropdown {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.je-header__nav-item-wrap.je-has-dropdown:hover
    > .je-header__nav-item
    .je-header__chevron,
.je-header__nav-item-wrap.je-has-dropdown:focus-within
    > .je-header__nav-item
    .je-header__chevron,
.je-header__nav-item-wrap.je-has-dropdown.is-open
    > .je-header__nav-item
    .je-header__chevron {
    transform: rotate(180deg);
}

.je-header__dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body-sm);
    font-weight: var(--je-fw-regular);
    color: var(--je-color-ink);
    text-decoration: none;
    border-radius: var(--je-radius-md);
    white-space: nowrap;
    transition:
        background var(--je-dur-fast) var(--je-ease),
        color var(--je-dur-fast) var(--je-ease);
}
.je-header__dropdown-link > span {
    flex: 1;
    min-width: 0;
}
.je-header__dropdown-link:hover,
.je-header__dropdown-link:focus-visible {
    background: var(--je-tint-navy-04);
    color: var(--je-color-navy);
    outline: none;
}
.je-header__dropdown-group.je-has-subdropdown
    > .je-header__dropdown-link:hover
    .je-header__chevron-right,
.je-header__dropdown-group.je-has-subdropdown.is-open
    > .je-header__dropdown-link
    .je-header__chevron-right {
    color: var(--je-color-navy);
}

/* Disable hover-driven dropdowns on touch (avoids hover-trap on tablet);
   click toggles via .is-open instead. */
@media (hover: none) {
    .je-header__nav-item-wrap.je-has-dropdown:hover > .je-header__dropdown,
    .je-header__dropdown-group.je-has-subdropdown:hover
        > .je-header__subdropdown {
        opacity: 0;
        transform: translateY(-6px);
        pointer-events: none;
    }
    .je-header__nav-item-wrap.je-has-dropdown.is-open > .je-header__dropdown,
    .je-header__dropdown-group.je-has-subdropdown.is-open
        > .je-header__subdropdown {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
}

body.je-drawer-open .je-header__hamburger {
    background: var(--je-color-navy);
    color: #fff;
}
body.je-drawer-open .je-header__hamburger-open {
    display: none;
}
body.je-drawer-open .je-header__hamburger-close {
    display: block;
}

/* Drawer — sits ABOVE the header so the mobile menu fully covers the navbar */
.je-drawer {
    position: fixed;
    inset: 0;
    z-index: 150; /* > --je-z-header (100) */
    background: rgba(2, 26, 112, 0.55); /* navy-tinted scrim */
    display: flex;
    justify-content: flex-end;
    animation: je-fade-in 0.18s var(--je-ease);
}
.je-drawer[hidden] {
    display: none;
}
.je-drawer__inner {
    background: #fff;
    width: 85%;
    max-width: 360px;
    height: 100%;
    padding: 24px 24px 32px; /* tighter top — no longer space for header */
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    animation: je-slide-up 0.22s var(--je-ease); /* subtle slide-in */
}

/* Drawer close button (replaces the hamburger when drawer is on top) */
.je-drawer__close {
    position: absolute;
    top: 18px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: var(--je-color-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1; /* above the panel */
    transition:
        background var(--je-dur-fast) var(--je-ease),
        transform var(--je-dur-fast) var(--je-ease);
}
.je-drawer__close:hover {
    background: var(--je-color-blue);
}
.je-drawer__close:active {
    transform: scale(0.96);
}
.je-drawer__item,
.je-drawer__row {
    padding: 0 0;
    font-family: var(--je-font-sans);
    font-size: 18px;
    font-weight: var(--je-fw-medium);
    color: var(--je-color-ink);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}
.je-drawer__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px;
    text-decoration: none;
    transition: color var(--je-dur-fast) var(--je-ease);
}
.je-drawer__item:hover {
    color: var(--je-color-navy);
}
.je-drawer__cta {
    margin-top: 24px;
}

/* Drawer accordion (items with children) */
.je-drawer__row {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.je-drawer__row .je-drawer__link {
    flex: 1;
    padding: 16px 12px;
    color: inherit;
    text-decoration: none;
    transition: color var(--je-dur-fast) var(--je-ease);
}
.je-drawer__row .je-drawer__link:hover {
    color: var(--je-color-navy);
}
.je-drawer__toggle {
    width: 48px;
    background: transparent;
    border: none;
    color: var(--je-color-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-left: 0.5px solid rgba(0, 0, 0, 0.06);
    transition:
        background var(--je-dur-fast) var(--je-ease),
        color var(--je-dur-fast) var(--je-ease);
}
.je-drawer__toggle:hover {
    background: var(--je-tint-navy-04);
    color: var(--je-color-navy);
}
.je-drawer__chevron {
    transition: transform var(--je-dur-fast) var(--je-ease);
}
.je-drawer__toggle[aria-expanded="true"] .je-drawer__chevron {
    transform: rotate(180deg);
}
.je-drawer__toggle[aria-expanded="true"] {
    color: var(--je-color-navy);
    background: var(--je-tint-navy-04);
}

.je-drawer__sub {
    padding: 4px 0 4px 16px;
    margin-left: 12px;
    border-left: 2px solid var(--je-tint-navy-08);
    display: flex;
    flex-direction: column;
}
.je-drawer__sub[hidden] {
    display: none;
}
.je-drawer__sub .je-drawer__item,
.je-drawer__sub .je-drawer__row {
    font-size: 16px;
    font-weight: var(--je-fw-regular);
}
.je-drawer__sub .je-drawer__sub .je-drawer__item,
.je-drawer__sub .je-drawer__sub .je-drawer__row {
    font-size: 15px;
    opacity: 0.85;
}
.je-drawer__item--sub,
.je-drawer__row.je-drawer__item--sub {
    color: var(--je-color-ink-muted);
}
.je-drawer__item--subsub,
.je-drawer__row.je-drawer__item--subsub {
    color: var(--je-color-ink-muted);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.je-section-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 var(--je-radius-3xl) var(--je-radius-3xl);
}
.je-section-hero__bg,
.je-section-hero__overlay {
    position: absolute;
    inset: 0;
    border-radius: 0 0 var(--je-radius-3xl) var(--je-radius-3xl);
}
.je-section-hero__bg {
    background-size: cover;
    background-position: center;
}
.je-section-hero__overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.15) 75%,
        rgba(0, 0, 0, 0) 100%
    );
}
.je-section-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--je-section-pad-x);
    max-width: 1165px;
}
.je-section-hero__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-semibold);
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: var(--je-ls-tight);
    color: #fff;
    margin: 0 0 var(--je-space-6);
    text-wrap: pretty;
}
.je-section-hero__sub {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-quote);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 36px;
    max-width: 643px;
}
.je-section-hero__actions {
    display: flex;
    gap: var(--je-space-3);
    align-items: center;
    margin-bottom: var(--je-space-4);
    flex-wrap: wrap;
    justify-content: center;
}
.je-section-hero__btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 1);
}
.je-section-hero__btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}
.je-section-hero__microcopy {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-light);
    font-size: var(--je-fs-micro);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: var(--je-ls-wide);
    margin: 0;
}

/* ─── URGENCY ───────────────────────────────────────────────── */
.je-urgency__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--je-space-20);
    align-items: start;
}
.je-urgency__sub {
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-quote);
    color: var(--je-color-ink-muted);
    margin: 20px 0 var(--je-space-10);
}
.je-urgency__list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
    border-left: 2px solid rgba(174, 174, 174, 0.4);
}
.je-urgency__item {
    padding: 14px 0;
    border-bottom: 0.5px solid rgba(174, 174, 174, 0.3);
    font-size: var(--je-fs-body);
    font-weight: var(--je-fw-medium);
    color: var(--je-color-ink);
    line-height: var(--je-lh-base);
    display: flex;
    align-items: center;
    gap: 14px;
}
.je-urgency__item:last-child {
    border-bottom: none;
}
.je-urgency__num {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-body);
    color: var(--je-color-navy);
    min-width: 32px;
}
.je-urgency__cta {
    margin-top: var(--je-space-10);
}
.je-urgency__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.je-urgency__media-tile {
    border-radius: var(--je-radius-2xl);
    height: 280px;
    background-size: cover;
    background-position: center;
}

/* ─── SERVICES (dark navy) ──────────────────────────────────── */
.je-services {
    background: var(--je-color-navy);
    color: #fff;
}
.je-services .je-section__head {
    text-align: center;
}
.je-services__title {
    color: #fff;
}
.je-services__sub {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-quote);
    color: rgba(199, 199, 199, 1);
    max-width: 660px;
    margin: 0 auto;
}
.je-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: var(--je-space-15);
}
.je-services__card {
    display: block;
    color: inherit;
    text-decoration: none;
}
.je-services__card-media {
    width: 100%;
    height: 342px;
    border-radius: var(--je-radius-2xl);
    background-size: cover;
    background-position: center;
    transition: transform var(--je-dur-slow) var(--je-ease);
}
a.je-services__card:hover .je-services__card-media {
    transform: translateY(-4px);
}
.je-services__card-title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h3);
    color: #fff;
    margin-top: var(--je-space-4);
    line-height: 1.2;
}
.je-services__footer {
    text-align: center;
}

/* ─── TRUST ─────────────────────────────────────────────────── */
.je-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.je-trust__card {
    background: var(--je-color-surface);
    border-radius: var(--je-radius-2xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 240px;
}
.je-trust__icon {
    width: 80px;
    height: 64px;
    object-fit: contain;
}
.je-trust__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h6);
    color: var(--je-color-navy);
    margin: 8px 0 0;
}
.je-trust__desc {
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-quote);
    color: var(--je-color-ink-muted);
}

/* ─── STATS SECTION ─────────────────────────────────────────── */
.je-stats-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--je-space-20);
    align-items: start;
}
.je-stats-section__copy {
    display: flex;
    flex-direction: column;
    gap: var(--je-space-12);
}
.je-stats-section__intro .je-h2 {
    margin: 0 0 20px;
}
.je-stats-section__sub {
    margin: 0;
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-quote);
    color: var(--je-color-ink-muted);
}

/* Stats row inside the half-column — match the mockup: equal-share items,
   no wrap, dividers as 1px separators (overrides design-system defaults). */
.je-stats-section .je-stats {
    gap: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.je-stats-section .je-stats__item {
    min-width: 0;
}
.je-stats-section .je-stats__divider {
    height: 90px;
    margin-inline: 12px;
}

/* Compact tier — shrink the stat numbers and the tall right image so
   the stats column doesn't push the layout out of balance. */
@media (max-width: 1280px) {
    .je-stats-section .je-stats__value {
        font-size: clamp(32px, 3.4vw, 48px);
    }
    .je-stats-section__hero {
        height: 580px;
    }
    .je-stats-section .je-stats__divider {
        height: 72px;
        margin-inline: 8px;
    }
}
.je-stats-section__pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.je-stats-section__pair-tile {
    border-radius: var(--je-radius-2xl);
    height: 180px;
    background-size: cover;
    background-position: center;
}
.je-stats-section__hero {
    border-radius: var(--je-radius-2xl);
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* ─── STEPS ─────────────────────────────────────────────────── */
.je-steps__title {
    text-align: center;
    margin-bottom: var(--je-space-15);
}
.je-steps__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--je-space-6); /* 60px */
    align-items: stretch; /* equal-height columns */
}
.je-steps__media {
    border-radius: var(--je-radius-3xl);
    height: 600px;
    background-size: cover;
    background-position: center;
}
.je-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%; /* fill column → matches image height */
    display: flex;
    flex-direction: column;
    gap: var(--je-space-3); /* 12px */
}
.je-steps__card {
    background: var(--je-color-surface);
    border-radius: var(--je-radius-2xl);
    padding: 20px 24px;
    flex: 1; /* split column height evenly across cards */
    display: flex;
    flex-direction: column;
    justify-content: center; /* center content vertically inside card */
}
.je-steps__num {
    display: inline-block;
    background: var(--je-color-blue-light);
    color: var(--je-color-navy);
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-medium);
    font-size: var(--je-fs-meta);
    padding: 4px 10px;
    border-radius: 10px;
    letter-spacing: var(--je-ls-wide);
    margin-bottom: 10px;
    width: fit-content;
}
.je-steps__card-title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h6); /* 20px (was 32) */
    color: var(--je-color-navy);
    margin: 0 0 6px;
}
.je-steps__card-desc {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-quote);
    color: var(--je-color-ink-muted);
    margin: 0;
}
.je-steps__footer {
    text-align: center;
    margin-top: var(--je-space-15);
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.je-testimonials__title {
    color: var(--je-color-ink);
}
.je-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.je-testimonial {
    background: var(--je-color-surface);
    border: 1px solid var(--je-tint-navy-08);
    border-radius: var(--je-radius-2xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 16px -6px rgba(2, 26, 112, 0.08);
    height: 100%;
}
.je-testimonial--featured {
    background: var(--je-color-navy);
    border: none;
    box-shadow: 0 12px 32px -8px rgba(2, 26, 112, 0.35);
    color: #fff;
}
.je-testimonial__quote-mark {
    fill: rgba(2, 26, 112, 0.2);
    flex-shrink: 0;
}
.je-testimonial--featured .je-testimonial__quote-mark {
    fill: rgba(166, 222, 255, 0.5);
}
.je-testimonial__quote {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-quote);
    color: var(--je-color-ink-muted);
    flex: 1;
    margin: 0;
}
.je-testimonial--featured .je-testimonial__quote {
    color: rgba(255, 255, 255, 0.92);
}
.je-testimonial__person {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--je-tint-navy-08);
}
.je-testimonial--featured .je-testimonial__person {
    border-top-color: rgba(255, 255, 255, 0.15);
}
.je-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 2px solid var(--je-color-bg);
}
.je-testimonial--featured .je-testimonial__avatar {
    border-color: rgba(166, 222, 255, 0.5);
}
.je-testimonial__name {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: 18px;
    line-height: 1.2;
    color: var(--je-color-ink);
}
.je-testimonial--featured .je-testimonial__name {
    color: #fff;
}
.je-testimonial__role {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-meta);
    line-height: 1.35;
    color: var(--je-color-ink-muted);
    margin-top: 4px;
}
.je-testimonial--featured .je-testimonial__role {
    color: var(--je-color-blue-light);
}

/* ─── LOCATIONS ─────────────────────────────────────────────── */
.je-locations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}
a.je-loc-card {
    color: inherit;
    text-decoration: none;
}
.je-loc-card {
    gap: 24px;
}

/* Simplified location card — only the pin icon and area name, centered */
.je-loc-card.je-loc-card--simple {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--je-space-4);
    min-height: 180px;
    padding: 32px 20px;
}
.je-loc-card.je-loc-card--simple .je-loc-card__pin {
    width: 56px;
    height: 56px;
    border-radius: var(--je-radius-lg);
}
.je-loc-card.je-loc-card--simple .je-loc-card__name {
    margin: 0;
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h4);
    line-height: var(--je-lh-tight);
    letter-spacing: var(--je-ls-snug);
    color: var(--je-color-ink);
}
.je-loc-card__rings {
    position: absolute;
    top: -30px;
    right: -30px;
    opacity: 0.08;
    pointer-events: none;
}
.je-loc-card__top,
.je-loc-card__body,
.je-loc-card__footer {
    position: relative;
    z-index: 1;
}
.je-loc-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.je-loc-card__pin {
    width: 40px;
    height: 40px;
    border-radius: var(--je-radius-md);
    background: var(--je-gradient-pin);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--je-shadow-md);
}
.je-locations__footer {
    text-align: center;
}

/* ─── HOME ABOUT BLOCK ──────────────────────────────────────── */
.je-home-about__inner {
    text-align: center;
    padding: 0 60px;
}
.je-home-about__title {
    margin-bottom: var(--je-space-15);
}
.je-home-about__quote {
    margin: 0 auto var(--je-space-15);
    max-width: 980px;
}
.je-home-about__strip {
    display: flex;
    gap: 24px;
    justify-content: center;
}
.je-home-about__strip-tile {
    flex: 1;
    height: 135px;
    border-radius: var(--je-radius-2xl);
    background-size: cover;
    background-position: center;
}

/* ─── CTA BAND v2 (with image + glass overlay) ──────────────── */
.je-cta-band-wrap {
    padding-top: var(--je-section-pad-y);
    padding-bottom: var(--je-section-pad-y-b);
}
.je-cta-band-v2 {
    position: relative;
    overflow: hidden;
    background: var(--je-gradient-navy);
    border-radius: var(--je-radius-4xl);
    padding: 72px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 580px;
    box-shadow: var(--je-shadow-cta);
    color: #fff;
}
.je-cta-band-v2__bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(
        ellipse at top left,
        black 30%,
        transparent 70%
    );
    mask-image: radial-gradient(
        ellipse at top left,
        black 30%,
        transparent 70%
    );
    pointer-events: none;
}
.je-cta-band-v2__bg-glow {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(166, 222, 255, 0.18) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.je-cta-band-v2__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--je-space-8);
}
.je-cta-band-v2__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-medium);
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: var(--je-ls-tighter);
    color: #fff;
    text-wrap: pretty;
    margin: 0;
}
.je-cta-band-v2__sub {
    font-family: var(--je-font-sans);
    font-size: 17px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 480px;
    margin: 0;
}
.je-cta-band-v2__assurances {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.je-cta-band-v2__assurances li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--je-font-sans);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
}
.je-cta-band-v2__check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(166, 222, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--je-color-blue-light);
    flex-shrink: 0;
}
.je-cta-band-v2__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.je-cta-band-v2__phone {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-medium);
    font-size: 15px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: border-color var(--je-dur-fast) var(--je-ease);
}
.je-cta-band-v2__phone:hover {
    border-color: var(--je-color-blue-light);
}

.je-cta-band-v2__media {
    position: relative;
    height: 480px;
}
.je-cta-band-v2__media-img {
    position: absolute;
    inset: 0;
    border-radius: var(--je-radius-2xl);
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.je-cta-band-v2__media-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    gap: 16px;
}
.je-cta-band-v2__media-stat {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: 13px;
    color: var(--je-color-navy);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}
.je-cta-band-v2__media-quote {
    font-family: var(--je-font-sans);
    font-size: 13px;
    color: var(--je-color-ink-muted);
}
.je-cta-band-v2__media-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.je-footer {
    background: var(--je-color-surface);
    padding: 160px var(--je-section-pad-x) 80px;
}
.je-footer__inner {
    max-width: var(--je-container);
    margin-inline: auto;
}
.je-footer__grid {
    display: grid;
    grid-template-columns: 474px 1fr 1fr 1fr;
    gap: 89px;
    margin-bottom: 48px;
    align-items: start;
}
.je-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.je-footer__logo-link,
.je-footer .custom-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.je-footer__logo-link img,
.je-footer .custom-logo,
.je-footer__logo {
    width: 100px;
    height: 64px;
    object-fit: contain;
    display: block;
}
.je-footer__intro {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-quote);
    color: var(--je-color-navy);
    margin: 0;
}
.je-footer__copy {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-meta);
    color: var(--je-color-ink-muted);
    margin: 0;
}
.je-footer__col-head {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: 18px;
    color: var(--je-color-navy);
    margin-bottom: 20px;
}
.je-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.je-footer__nav a,
.je-footer__nav span,
.je-footer__link,
.je-footer__sublink {
    font-family: var(--je-font-sans);
    font-size: 15px;
    color: var(--je-color-ink-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 22px;
    transition: color var(--je-dur-fast) var(--je-ease);
}
.je-footer__nav a:hover,
.je-footer__link:hover,
.je-footer__sublink:hover {
    color: var(--je-color-navy);
}
.je-footer__contact {
    line-height: 22px;
}

/* Footer sub-menu (one level under each top-level item) */
.je-footer__sub {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px 0 6px 14px;
    margin-left: 2px;
    border-left: 1px solid var(--je-tint-navy-08);
}
.je-footer__sublink {
    font-size: 14px;
    color: var(--je-color-ink-soft);
}
.je-footer__sublink:hover {
    color: var(--je-color-navy);
}

.je-footer__social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.je-footer__social__link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--je-tint-navy-06);
    color: var(--je-color-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background var(--je-dur-fast) var(--je-ease),
        color var(--je-dur-fast) var(--je-ease);
}
.je-footer__social__link:hover {
    background: var(--je-color-navy);
    color: #fff;
}

.je-footer__bottom {
    border-top: 0.5px solid var(--je-color-navy);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}
.je-footer__legal {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-medium);
    font-size: var(--je-fs-body);
    color: var(--je-color-navy);
    margin: 0;
}
.je-footer__license {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-meta);
    color: var(--je-color-ink-muted);
}

/* ─── MODAL extras ─────────────────────────────────────────── */
.je-modal-overlay[hidden] {
    display: none;
}
.je-modal__success-icon {
    width: 72px;
    height: 72px;
    background: var(--je-color-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.je-modal__body--success {
    text-align: center;
}
.je-modal__body--success .je-btn {
    margin: 0 auto;
}

/* ─── CREDIBILITY (slim trust strip — used on every page) ──── */
.je-credibility {
    padding-top: 56px;
    padding-bottom: 56px;
}
.je-credibility__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.je-credibility__item {
    text-align: center;
}
.je-credibility__value {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: 32px;
    line-height: 1;
    letter-spacing: var(--je-ls-tighter);
    color: var(--je-color-navy);
    margin-bottom: 6px;
}
.je-credibility__label {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-meta);
    color: var(--je-color-ink-muted);
}
.je-credibility__divider {
    width: 1px;
    height: 36px;
    background: var(--je-tint-divider-strong);
}
@media (max-width: 640px) {
    .je-credibility__inner {
        gap: 28px;
    }
    .je-credibility__divider {
        display: none;
    }
    .je-credibility__value {
        font-size: 26px;
    }
}

/* =============================================================
   SERVICES DETAIL (services index — 2-up cards on light)
   ============================================================= */

/* Pages without a leading hero (services index, contact) — give the first
   section enough top padding to clear the fixed navbar. */
.je-services-page > .je-section:first-child,
.je-contact-page  > .je-section:first-child {
    padding-top: 180px;
}
@media (max-width: 1024px) {
    .je-services-page > .je-section:first-child,
    .je-contact-page  > .je-section:first-child {
        padding-top: 160px;
    }
}
@media (max-width: 640px) {
    .je-services-page > .je-section:first-child,
    .je-contact-page  > .je-section:first-child {
        padding-top: 140px;
    }
}

.je-services-detail__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 2), 1fr);
    gap: var(--je-space-15); /* 60px */
    align-items: start;
    justify-content: center;
}
.je-services-detail__card {
    display: block;
    color: inherit;
    text-decoration: none;
}
.je-services-detail__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--je-radius-3xl);
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
    transition:
        transform var(--je-dur-slow) var(--je-ease),
        box-shadow var(--je-dur-slow) var(--je-ease);
}
a.je-services-detail__card:hover .je-services-detail__media {
    transform: translateY(-4px);
    box-shadow: var(--je-shadow-xl);
}
.je-services-detail__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h3); /* 32px */
    line-height: 1.2;
    letter-spacing: var(--je-ls-snug);
    color: var(--je-color-ink);
    margin: 0 0 12px;
}
.je-services-detail__desc {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-quote);
    color: var(--je-color-ink-muted);
    margin: 0;
    max-width: 520px;
}

@media (max-width: 1024px) {
    .je-services-detail__grid {
        gap: var(--je-space-10);
    }
    .je-services-detail__title {
        font-size: var(--je-fs-h4);
    }
}
@media (max-width: 768px) {
    .je-services-detail__grid {
        grid-template-columns: 1fr !important;
        gap: var(--je-space-10);
    }
    .je-services-detail__media {
        aspect-ratio: 4 / 3;
    }
}
@media (max-width: 480px) {
    .je-services-detail__title {
        font-size: var(--je-fs-h6);
    }
}

/* ─── Scroll variant ("related services" horizontal scroll-snap) ─── */
.je-services-detail--scroll .je-services-detail__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--je-space-6);
    padding-bottom: 8px;
    /* Bleed past the container edges so cards peek at both sides. */
    margin-left: calc(-1 * var(--je-section-pad-x));
    margin-right: calc(-1 * var(--je-section-pad-x));
    padding-left: var(--je-section-pad-x);
    padding-right: var(--je-section-pad-x);
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.je-services-detail--scroll .je-services-detail__grid::-webkit-scrollbar {
    display: none;
}
.je-services-detail--scroll .je-services-detail__card {
    flex: 0 0 clamp(260px, 30vw, 380px);
    scroll-snap-align: start;
}
.je-services-detail--scroll .je-services-detail__media {
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
}
.je-services-detail--scroll .je-services-detail__title {
    font-size: var(--je-fs-h4);
    margin-bottom: 8px;
}
.je-services-detail--scroll .je-services-detail__desc {
    color: var(--je-color-ink-soft);
}
@media (max-width: 640px) {
    .je-services-detail--scroll .je-services-detail__card {
        flex-basis: clamp(220px, 75vw, 300px);
    }
    .je-services-detail--scroll .je-services-detail__title {
        font-size: var(--je-fs-h6);
    }
}

/* =============================================================
   SECTION DIVIDER eyebrow ("— LABEL —" with flanking lines)
   Used on contact-page sections; reusable wherever a quieter,
   line-flanked eyebrow looks better than the navy pill.
   ============================================================= */
.je-section-divider {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-medium);
    font-size: var(--je-fs-caption);
    letter-spacing: var(--je-ls-eyebrow);
    text-transform: uppercase;
    color: var(--je-color-ink-muted);
    margin-bottom: 18px;
}
.je-section-divider__line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--je-tint-divider-strong);
}

/* =============================================================
   CONTACT — Inquiry block (form + photo, 2-col)
   ============================================================= */
.je-contact-inquiry__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--je-space-6);
    align-items: stretch;
}
.je-contact-inquiry__form {
    display: flex;
}
.je-contact-inquiry__form > .je-form-card {
    width: 100%;
    border-radius: var(--je-radius-2xl);
}
.je-contact-inquiry__media {
    border-radius: var(--je-radius-2xl);
    background-size: cover;
    background-position: center;
    min-height: 580px;
    box-shadow: var(--je-shadow-md);
}

@media (max-width: 1024px) {
    .je-contact-inquiry__grid { grid-template-columns: 1fr; }
    .je-contact-inquiry__media { min-height: 380px; }
}
@media (max-width: 640px) {
    .je-contact-inquiry__media { min-height: 300px; }
}

/* =============================================================
   CONTACT — 3 info cards (Adresse / Disponibilité / Téléphone)
   ============================================================= */
.je-contact-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--je-space-10);
}
.je-contact-info__card {
    text-align: center;
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
}
.je-contact-info__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.je-contact-info__icon svg {
    width: 56px;
    height: 56px;
}
.je-contact-info__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h6);
    color: var(--je-color-ink);
    margin: 0;
}
.je-contact-info__lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body-sm);
    line-height: var(--je-lh-relaxed);
    color: var(--je-color-ink-muted);
}
a.je-contact-info__card:hover .je-contact-info__title {
    color: var(--je-color-navy);
}

@media (max-width: 1024px) {
    .je-contact-info__grid { grid-template-columns: repeat(3, 1fr); gap: var(--je-space-6); }
}
@media (max-width: 768px) {
    .je-contact-info__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================================
   MAP (Google Maps embed — reusable)
   Used on single_service / single_location / location_service / contact.
   ============================================================= */
.je-map-section__embed {
    border-radius: var(--je-radius-3xl);
    overflow: hidden;
    box-shadow: var(--je-shadow-md);
    background: var(--je-color-surface);
}
.je-map-section__embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 768px) {
    .je-map-section__embed { border-radius: var(--je-radius-2xl); }
}

/* =============================================================
   HERO — SPLIT (centered intro on light + bottom hero image)
   Used on single_service / single_location / location_service / contact.
   ============================================================= */
.je-hero-split {
    padding-top: 180px; /* clear the fixed header */
}
.je-hero-split__intro {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 60px;
}
.je-hero-split__intro .je-eyebrow {
    margin-bottom: 24px;
}
.je-hero-split__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-medium);
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.15;
    letter-spacing: var(--je-ls-tight);
    color: var(--je-color-ink);
    text-wrap: balance;
    max-width: 1100px;
    margin: 0 auto 24px;
}
.je-hero-split__sub {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body-lg);
    line-height: var(--je-lh-relaxed);
    color: var(--je-color-ink-muted);
    max-width: 640px;
    margin: 0 auto 40px;
}
.je-hero-split__actions {
    display: flex;
    justify-content: center;
    gap: var(--je-space-3);
    flex-wrap: wrap;
}
.je-hero-split__btn-ghost {
    background: transparent;
    color: var(--je-color-ink);
    border: 1px solid var(--je-color-ink);
}
.je-hero-split__btn-ghost:hover {
    background: var(--je-color-ink);
    color: #fff;
}
.je-hero-split__microcopy {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-light);
    font-size: var(--je-fs-micro);
    color: var(--je-color-ink-muted);
    letter-spacing: var(--je-ls-wide);
    text-align: center;
    margin: 16px 0 0;
}
.je-hero-split__media {
    width: 100%;
    height: 580px;
    border-radius: var(--je-radius-3xl);
    background-size: cover;
    background-position: center;
    box-shadow: var(--je-shadow-hero);
}

@media (max-width: 1280px) {
    .je-hero-split__media {
        height: 520px;
    }
}
@media (max-width: 1024px) {
    .je-hero-split {
        padding-top: 160px;
    }
    .je-hero-split__media {
        height: 460px;
    }
}
@media (max-width: 768px) {
    .je-hero-split__intro {
        margin-bottom: 40px;
    }
    .je-hero-split__media {
        height: 380px;
    }
    .je-hero-split__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .je-hero-split__actions .je-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 640px) {
    .je-hero-split {
        padding-top: 140px;
    }
    .je-hero-split__media {
        height: 320px;
        border-radius: var(--je-radius-2xl);
    }
}
@media (max-width: 480px) {
    .je-hero-split__media {
        height: 260px;
    }
}

/* =============================================================
   SINGLE SERVICE — 2-col body (long description + sticky form)
   ============================================================= */
.je-single-service__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: var(--je-space-15);
    align-items: start;
}
.je-single-service__aside {
    position: sticky;
    top: 140px;
}

/* Long-form prose */
.je-long-description__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h3);
    line-height: 1.25;
    color: var(--je-color-ink);
    margin: 0 0 var(--je-space-6);
    text-wrap: pretty;
}
.je-long-description__prose {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-loose);
    color: var(--je-color-ink-muted);
}
.je-long-description__prose > * + * {
    margin-top: var(--je-space-4);
}
.je-long-description__prose h2,
.je-long-description__prose h3,
.je-long-description__prose h4 {
    color: var(--je-color-ink);
    font-weight: var(--je-fw-bold);
    margin-top: var(--je-space-10);
    margin-bottom: var(--je-space-4);
}
.je-long-description__prose h3 {
    font-size: var(--je-fs-h5);
}
.je-long-description__prose h4 {
    font-size: var(--je-fs-h6);
}
.je-long-description__prose strong {
    color: var(--je-color-ink);
    font-weight: var(--je-fw-bold);
}
.je-long-description__prose a {
    color: var(--je-color-blue);
    text-decoration: underline;
}

/* Arrow list (→ Title : description) */
.je-long-description__prose .je-arrow-list,
.je-long-description__prose ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.je-long-description__prose .je-arrow-list li,
.je-long-description__prose ul > li {
    position: relative;
    padding: 6px 0 6px 28px;
    line-height: var(--je-lh-relaxed);
}
.je-long-description__prose .je-arrow-list li::before,
.je-long-description__prose ul > li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--je-color-navy);
    font-weight: var(--je-fw-bold);
}

/* Numbered process list */
.je-long-description__prose .je-step-list,
.je-long-description__prose ol {
    list-style: none;
    counter-reset: step;
    margin: 0;
    padding: 0;
}
.je-long-description__prose .je-step-list li,
.je-long-description__prose ol > li {
    counter-increment: step;
    position: relative;
    padding: 8px 0 8px 36px;
    line-height: var(--je-lh-relaxed);
}
.je-long-description__prose .je-step-list li::before,
.je-long-description__prose ol > li::before {
    content: counter(step) ".";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--je-color-navy);
    font-weight: var(--je-fw-bold);
    min-width: 28px;
}

/* =============================================================
   FORM CARD (navy contact card — sticky on single_service body)
   ============================================================= */
.je-form-card {
    background: var(--je-color-navy);
    color: #fff;
    border-radius: var(--je-radius-2xl);
    padding: 32px;
    box-shadow: var(--je-shadow-cta);
}
.je-form-card--sticky {
    position: sticky;
    top: 140px;
}
.je-form-card__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h6);
    color: #fff;
    margin: 0 0 8px;
}
.je-form-card__sub {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body-sm);
    line-height: var(--je-lh-relaxed);
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 24px;
}
.je-form-card__success {
    background: rgba(166, 222, 255, 0.15);
    border: 1px solid rgba(166, 222, 255, 0.32);
    color: #fff;
    padding: 12px 14px;
    border-radius: var(--je-radius-md);
    margin: 0 0 16px;
    font-size: var(--je-fs-body-sm);
}

/* Form-field overrides for navy background */
.je-form-card .je-field {
    margin-bottom: 14px;
}
.je-form-card .je-field__label {
    color: #fff;
    font-size: var(--je-fs-meta);
    margin-bottom: 6px;
}
.je-form-card .je-field__input,
.je-form-card .je-field__select,
.je-form-card .je-field__textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: var(--je-radius-md);
}
.je-form-card .je-field__input::placeholder,
.je-form-card .je-field__textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.je-form-card .je-field__input:focus,
.je-form-card .je-field__select:focus,
.je-form-card .je-field__textarea:focus {
    border-color: var(--je-color-blue-light);
    background: rgba(255, 255, 255, 0.08);
}
.je-form-card .je-field__textarea {
    min-height: 120px;
}
.je-form-card .je-btn--white {
    margin-top: 8px;
    background: var(--je-color-blue);
    color: #fff;
}
.je-form-card .je-btn--white:hover {
    background: var(--je-color-blue-hover);
}

/* Single-service responsive */
@media (max-width: 1024px) {
    .je-single-service__grid {
        grid-template-columns: 1fr;
        gap: var(--je-space-10);
    }
    .je-single-service__aside,
    .je-form-card--sticky {
        position: static;
        top: auto;
    }
}
@media (max-width: 640px) {
    /* On phones, surface the quote form above the long description so
       visitors can convert without scrolling past the prose. DOM order
       stays content-first for desktop reading flow + SEO. */
    .je-single-service__aside  { order: 1; }
    .je-single-service__content { order: 2; }

    .je-form-card {
        padding: 24px;
    }
    .je-long-description__title {
        font-size: var(--je-fs-h4);
    }
    .je-long-description__prose .je-arrow-list li,
    .je-long-description__prose ul > li {
        padding-left: 22px;
    }
    .je-long-description__prose .je-step-list li,
    .je-long-description__prose ol > li {
        padding-left: 30px;
    }
}

/* =============================================================
   SINGLE POST (header + body)
   ============================================================= */
.je-post-header {
    padding-top: 180px; /* clear the fixed header */
    padding-bottom: 0;  /* media flows into the body section below */
}
.je-post-header__inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}
.je-post-header__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-meta);
    color: var(--je-color-ink-muted);
    margin-bottom: 20px;
}
.je-post-header__cat {
    color: var(--je-color-navy);
    font-weight: var(--je-fw-medium);
    text-decoration: none;
    background: var(--je-tint-navy-06);
    padding: 4px 12px;
    border-radius: var(--je-radius-pill);
    transition: background var(--je-dur-fast) var(--je-ease);
}
.je-post-header__cat:hover { background: var(--je-tint-navy-12); }
.je-post-header__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-medium);
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.15;
    letter-spacing: var(--je-ls-tight);
    color: var(--je-color-ink);
    text-wrap: balance;
    margin: 0 0 20px;
}
.je-post-header__lede {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body-lg);
    line-height: var(--je-lh-relaxed);
    color: var(--je-color-ink-muted);
    max-width: 720px;
    margin: 0 auto 40px;
}
.je-post-header__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--je-radius-3xl);
    background-size: cover;
    background-position: center;
    box-shadow: var(--je-shadow-hero);
}

.je-post-body {
    padding-top: var(--je-space-15);  /* tight to the hero image above */
}
.je-post-body .je-container--prose {
    max-width: 720px;
}
.je-post-body__pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: var(--je-space-10);
    font-family: var(--je-font-sans);
    color: var(--je-color-ink-muted);
}
.je-post-body__pagination a,
.je-post-body__pagination > span {
    padding: 6px 14px;
    border-radius: var(--je-radius-md);
    background: var(--je-tint-navy-06);
    color: var(--je-color-navy);
    text-decoration: none;
}

@media (max-width: 1024px) {
    .je-post-header { padding-top: 160px; }
}
@media (max-width: 640px) {
    .je-post-header { padding-top: 140px; }
    .je-post-header__media {
        aspect-ratio: 4 / 3;
        border-radius: var(--je-radius-2xl);
    }
}

/* =============================================================
   BLOG CARDS (used on the blog index, archives, and any custom listing)
   ============================================================= */
.je-blog-archive .je-blog-cards { padding-top: 180px; } /* clear fixed header */
@media (max-width: 1024px) {
    .je-blog-archive .je-blog-cards { padding-top: 160px; }
}
@media (max-width: 640px) {
    .je-blog-archive .je-blog-cards { padding-top: 140px; }
}

.je-blog-cards__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), 1fr);
    gap: var(--je-space-10);
    align-items: stretch;
}
.je-blog-card {
    display: flex;
    flex-direction: column;
    background: var(--je-color-surface);
    border-radius: var(--je-radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 16px -6px rgba(2, 26, 112, 0.08);
    transition:
        transform var(--je-dur-slow) var(--je-ease),
        box-shadow var(--je-dur-slow) var(--je-ease);
}
.je-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--je-shadow-xl);
}
.je-blog-card__media-link {
    display: block;
    line-height: 0;
}
.je-blog-card__media {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
}
.je-blog-card__body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.je-blog-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-meta);
    color: var(--je-color-ink-muted);
    letter-spacing: var(--je-ls-snug);
}
.je-blog-card__cat {
    color: var(--je-color-navy);
    text-decoration: none;
    font-weight: var(--je-fw-medium);
}
.je-blog-card__cat:hover { color: var(--je-color-blue); }
.je-blog-card__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h6);
    line-height: 1.25;
    color: var(--je-color-ink);
    margin: 0;
    text-wrap: pretty;
}
.je-blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--je-dur-fast) var(--je-ease);
}
.je-blog-card__title a:hover { color: var(--je-color-navy); }
.je-blog-card__excerpt {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body-sm);
    line-height: var(--je-lh-relaxed);
    color: var(--je-color-ink-muted);
    margin: 0;
    flex: 1;
}
.je-blog-card__more {
    margin-top: 4px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-medium);
    font-size: var(--je-fs-body-sm);
    color: var(--je-color-blue);
    text-decoration: none;
}
.je-blog-card__more:hover { color: var(--je-color-blue-hover); }

.je-blog-cards__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: var(--je-space-12);
    font-family: var(--je-font-sans);
}
.je-blog-cards__pagination .page-numbers,
.je-blog-cards__pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--je-radius-md);
    color: var(--je-color-ink);
    text-decoration: none;
    transition: background var(--je-dur-fast) var(--je-ease);
}
.je-blog-cards__pagination .page-numbers:hover,
.je-blog-cards__pagination .page-numbers.current {
    background: var(--je-color-navy);
    color: #fff;
}

.je-blog-cards__empty {
    text-align: center;
    color: var(--je-color-ink-muted);
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body);
    padding: 60px 0;
}

@media (max-width: 1024px) {
    .je-blog-cards__grid { grid-template-columns: repeat(2, 1fr); gap: var(--je-space-6); }
}
@media (max-width: 640px) {
    .je-blog-cards__grid { grid-template-columns: 1fr; }
    .je-blog-card__body { padding: 24px 22px 28px; }
}

/* =============================================================
   ABOUT PAGE
   Page-specific blocks: about hero, about stats, mission, vision.
   ============================================================= */

/* ─── About Hero ─────────────────────────────────────────── */
.je-about-hero {
    padding-top: 180px; /* clear the fixed header */
}
.je-about-hero__intro {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 60px;
}
.je-about-hero__intro .je-eyebrow {
    margin-bottom: 24px;
}
.je-about-hero__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-medium);
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.15;
    letter-spacing: var(--je-ls-tight);
    color: var(--je-color-ink);
    text-wrap: balance;
    max-width: 1100px;
    margin: 0 auto 24px;
}
.je-about-hero__sub {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body-lg);
    line-height: var(--je-lh-relaxed);
    color: var(--je-color-ink-muted);
    max-width: 640px;
    margin: 0 auto 40px;
}
.je-about-hero__actions {
    display: flex;
    justify-content: center;
    gap: var(--je-space-3);
    margin-bottom: var(--je-space-4);
    flex-wrap: wrap;
}
.je-about-hero__btn-ghost {
    background: transparent;
    color: var(--je-color-ink);
    border: 1px solid var(--je-color-ink);
}
.je-about-hero__btn-ghost:hover {
    background: var(--je-color-ink);
    color: #fff;
}
.je-about-hero__microcopy {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-light);
    font-size: var(--je-fs-micro);
    color: var(--je-color-ink-muted);
    letter-spacing: var(--je-ls-wide);
    margin: 0;
    text-align: center;
}
.je-about-hero__media {
    position: relative;
    height: 580px;
    border-radius: var(--je-radius-3xl);
    overflow: hidden;
    box-shadow: var(--je-shadow-hero);
}
.je-about-hero__media-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.je-about-hero__media-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}
.je-about-hero__badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--je-radius-xl);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--je-shadow-lg);
    z-index: 1;
}
.je-about-hero__badge--tl {
    top: 32px;
    left: 32px;
}
.je-about-hero__badge--br {
    bottom: 32px;
    right: 32px;
}
.je-about-hero__badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--je-gradient-pin);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.je-about-hero__badge-value {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: 18px;
    color: var(--je-color-navy);
    line-height: 1.1;
}
.je-about-hero__badge-label {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-caption);
    color: var(--je-color-ink-muted);
}
.je-about-hero__badge-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

/* ─── About Stats (4-up row, smaller padding than home stats) ── */
.je-about-stats {
    padding-top: 80px;
    padding-bottom: 80px;
}
.je-about-stats__row {
    max-width: var(--je-container);
}

/* ─── Mission / Approach ─────────────────────────────────── */
.je-mission__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--je-space-15);
    align-items: start;
}
.je-mission__title-col {
    position: sticky;
    top: 120px;
}
.je-mission__title-col .je-eyebrow {
    margin-bottom: 20px;
}
.je-mission__title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-medium);
    font-size: var(--je-fs-h2);
    line-height: 1.15;
    letter-spacing: var(--je-ls-snug);
    color: var(--je-color-ink);
    text-wrap: pretty;
    margin: 0;
}
.je-mission__body {
    display: flex;
    flex-direction: column;
    gap: var(--je-space-8);
}
.je-mission__image {
    height: 420px;
    border-radius: var(--je-radius-2xl);
    background-size: cover;
    background-position: center;
}
.je-mission__copy {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body-lg);
    line-height: var(--je-lh-loose);
    color: var(--je-color-ink-muted);
    margin: 0;
}
.je-mission__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 8px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--je-tint-navy-12);
}
.je-mission__stat {
    padding-left: 24px;
    border-left: 1px solid var(--je-tint-navy-12);
    margin: 0;
}
.je-mission__stat:first-child {
    padding-left: 0;
    border-left: 0;
}
.je-mission__stat-value {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h6);
    color: var(--je-color-navy);
    margin: 0 0 4px;
}
.je-mission__stat-label {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-meta);
    color: var(--je-color-ink-muted);
    margin: 0;
}

/* ─── Vision / Promise (2 cards) ─────────────────────────── */
.je-vp .je-container {
    max-width: 1100px;
}
.je-vp__title {
    text-align: center;
    margin-bottom: var(--je-space-15);
    text-wrap: pretty;
}
.je-vp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--je-space-6);
}
.je-vp__card {
    background: var(--je-color-surface);
    border-radius: var(--je-radius-2xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.je-vp__card-body {
    padding: 50px 34px 32px;
}
.je-vp__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--je-tint-navy-08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--je-color-navy);
}
.je-vp__card-title {
    font-family: var(--je-font-sans);
    font-weight: var(--je-fw-bold);
    font-size: var(--je-fs-h5);
    line-height: 1.2;
    color: var(--je-color-navy);
    margin: 0 0 20px;
    text-wrap: pretty;
}
.je-vp__card-desc {
    font-family: var(--je-font-sans);
    font-size: var(--je-fs-body);
    line-height: var(--je-lh-relaxed);
    color: var(--je-color-ink-muted);
    margin: 0;
}
.je-vp__card-media {
    height: 320px;
    background-size: cover;
    background-position: center;
}

/* About-page responsive overrides ─────────────────────────────
   Tiers: ≥1280 default · 1024–1280 compact · 640–1024 tablet
        · 480–640 mobile · <480 tiny
   ──────────────────────────────────────────────────────────── */

/* Compact tier (1024–1280) — trim heights so the hero + mission don't
   dominate at narrower laptop widths. */
@media (max-width: 1280px) {
    .je-about-hero__media {
        height: 520px;
    }
    .je-mission__image {
        height: 380px;
    }
    .je-vp__card-media {
        height: 280px;
    }
}

/* Tablet tier (640–1024) — stack 2-col layouts; release sticky title;
   hide stats dividers (the 4-up row wraps cleanly without them). */
@media (max-width: 1024px) {
    .je-about-hero {
        padding-top: 160px;
    }
    .je-about-hero__media {
        height: 460px;
    }

    .je-about-stats__row .je-stats__divider {
        display: none;
    }
    .je-about-stats__row {
        gap: var(--je-space-10);
    }

    .je-mission__inner {
        grid-template-columns: 1fr;
        gap: var(--je-space-10);
    }
    .je-mission__title-col {
        position: static;
    }
    .je-mission__image {
        height: 340px;
    }

    .je-vp__grid {
        grid-template-columns: 1fr;
        gap: var(--je-space-6);
    }
}

/* Phone-tablet edge (640–768) — full-width buttons, mini-stats stack,
   stats column-flow so 4 items don't wrap awkwardly to 2-up. */
@media (max-width: 768px) {
    .je-about-hero__intro {
        margin-bottom: 40px;
    }
    .je-about-hero__media {
        height: 380px;
    }
    .je-about-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .je-about-hero__actions .je-btn {
        width: 100%;
        justify-content: center;
    }

    .je-about-stats__row {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .je-mission__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .je-mission__stat {
        padding-left: 0;
        border-left: 0;
        padding-top: 12px;
        border-top: 1px solid var(--je-tint-navy-12);
    }
    .je-mission__stat:first-child {
        padding-top: 0;
        border-top: 0;
    }

    .je-vp__card-body {
        padding: 40px 28px 28px;
    }
}

/* Mobile tier (≤640) — final compactness, hide secondary badge text. */
@media (max-width: 640px) {
    .je-about-hero {
        padding-top: 140px;
    }
    .je-about-hero__media {
        height: 320px;
        border-radius: var(--je-radius-2xl);
    }

    .je-about-hero__badge--tl,
    .je-about-hero__badge--br {
        padding: 12px 14px;
    }
    .je-about-hero__badge--tl {
        top: 16px;
        left: 16px;
    }
    .je-about-hero__badge--br {
        bottom: 16px;
        right: 16px;
    }
    .je-about-hero__badge-icon {
        width: 36px;
        height: 36px;
    }
    .je-about-hero__badge-value {
        font-size: 14px;
    }
    .je-about-hero__badge-label {
        display: none;
    }

    .je-mission__image {
        height: 240px;
    }
    .je-vp__card-body {
        padding: 32px 24px;
    }
    .je-vp__card-media {
        height: 220px;
    }
}

/* Tiny tier (≤480) — minimum viable layout. */
@media (max-width: 480px) {
    .je-about-hero__media {
        height: 260px;
    }
    .je-about-hero__badge {
        gap: 8px;
    }
    .je-about-hero__badge-stars {
        display: none;
    }
    .je-vp__card-body {
        padding: 28px 20px 24px;
    }
    .je-vp__card-media {
        height: 180px;
    }
}

/* =============================================================
   RESPONSIVE TIERS
   ── Default        ≥ 1280px  full layout
   ── Compact tier  1024–1280  tighter nav + smaller logo
   ── Tablet tier    640–1024  hamburger drawer replaces nav
   ── Mobile tier    480–640   single-column everything
   ── Tiny tier      < 480     hide CTA on bar (still in drawer)
   ============================================================= */

/* Hide short CTA label by default; surfaced at narrow tiers */
.je-header__cta-label-short {
    display: none;
}

/* ─── COMPACT TIER (1024 – 1280) ────────────────────────────── */
@media (max-width: 1280px) {
    .je-header__bar {
        padding: 16px 24px;
        gap: 16px;
    }
    .je-header__nav {
        margin-left: 24px;
        gap: 0;
    }
    .je-header__nav-item {
        padding: 10px 12px;
        font-size: 14px;
    }
    .je-header__cta {
        padding: 12px 18px;
        font-size: 14px;
    }
    .je-header__logo-link img,
    .je-header__logo-link .custom-logo {
        width: 92px;
        height: 56px;
    }
}

/* ─── TABLET TIER (640 – 1024) ─────────────────────────────── */
@media (max-width: 1024px) {
    .je-header__nav {
        display: none;
    }
    .je-header__hamburger {
        display: inline-flex;
    }
    .je-header__bar {
        gap: 12px;
    }
    /* Keep full label until phone widths */
    .je-header__cta-label-full {
        display: inline;
    }
    .je-header__cta-label-short {
        display: none;
    }

    .je-section-hero__title {
        font-size: clamp(40px, 6vw, 56px);
        line-height: 1.15;
    }

    .je-urgency__inner,
    .je-stats-section__inner,
    .je-steps__inner,
    .je-cta-band-v2 {
        grid-template-columns: 1fr !important;
        gap: var(--je-space-10);
    }

    .je-services__grid,
    .je-locations__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .je-trust__grid,
    .je-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .je-stats-section__hero {
        height: 480px;
    }

    .je-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .je-footer__brand {
        grid-column: 1 / -1;
    }
}

/* Switch to short CTA label between phones and tablets */
@media (max-width: 768px) {
    .je-header__cta-label-full {
        display: none;
    }
    .je-header__cta-label-short {
        display: inline;
    }
    .je-header__cta {
        padding: 10px 14px;
        font-size: 14px;
    }
    .je-header__logo-link img,
    .je-header__logo-link .custom-logo {
        width: 80px;
        height: 50px;
    }
}

/* ─── MOBILE TIER (≤ 640) ──────────────────────────────────── */
@media (max-width: 640px) {
    .je-header__bar {
        padding: 14px 18px;
        border-radius: var(--je-radius-xl);
        gap: 10px;
    }
    .je-header__logo-link img,
    .je-header__logo-link .custom-logo {
        width: 76px;
        height: 48px;
    }

    .je-section-hero {
        min-height: 600px;
    }
    .je-section-hero__title {
        font-size: 36px;
    }
    .je-section-hero__sub {
        font-size: 15px;
    }
    .je-section-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .je-section-hero__actions .je-btn {
        justify-content: center;
    }

    .je-urgency__media,
    .je-stats-section__pair,
    .je-services__grid,
    .je-trust__grid,
    .je-testimonials__grid,
    .je-locations__grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .je-services__card-media {
        height: 220px;
    }
    .je-stats-section__hero {
        height: 320px;
    }
    .je-steps__media {
        height: 320px;
    }

    .je-home-about__inner {
        padding: 0 4px;
    }
    .je-home-about__quote {
        font-size: 24px;
    }
    .je-home-about__strip {
        flex-direction: column;
    }

    .je-cta-band-v2 {
        padding: 40px var(--je-space-6);
    }
    .je-cta-band-v2__title {
        font-size: 32px;
    }
    .je-cta-band-v2__media {
        height: 280px;
    }

    .je-footer {
        padding-top: 80px;
    }
    .je-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ─── TINY TIER (≤ 480) ────────────────────────────────────── */
@media (max-width: 480px) {
    .je-header__bar {
        padding: 10px 14px;
        gap: 10px;
    }
    .je-header__cta {
        display: none;
    } /* drop CTA on bar — still in drawer */
    .je-header__hamburger {
        margin-left: auto;
    } /* push hamburger flush right */
    .je-header__logo-link img,
    .je-header .custom-logo {
        width: 64px;
        height: 40px;
    }

    /* Tighter drawer close button on tiny screens */
    .je-drawer__close {
        top: 14px;
        right: 18px;
    }
}

/* ── 404 page ────────────────────────────────────────────────────────────── */

.je-404__section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.je-404__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 48px 0;
}

.je-404__code {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(96px, 18vw, 200px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #021a70;
    margin: 0;
}

.je-404__title {
    margin: 0;
}

.je-404__sub {
    max-width: 520px;
    margin: 0;
    color: rgba(11, 11, 10, 0.72);
}

.je-404__cta {
    margin-top: 12px;
}

@media (max-width: 600px) {
    .je-404__cta {
        width: 100%;
        justify-content: center;
    }
}
