/* Waikato Floor Plan — index (home) page styles only */
:root {
    --sketchfab-nav-offset: 72px;
    /* Bento / section cards: fully transparent fill (pre–white-tint panels); edge = mint glass border */
    --bento-surface: transparent;
    --bento-surface-strong: transparent;
    /* Design brief: crisp rim on frosted panels */
    --glass-rim: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    --hero-heading-contrast: #1a2c26;
    /* Glass bento / map backdrop: light body copy (see .listing-mock, .pulse-screen for resets) */
    --bento-card-text: rgba(255, 255, 255, 0.93);
    --bento-card-text-muted: rgba(255, 255, 255, 0.76);
    --bento-card-text-soft: rgba(255, 255, 255, 0.58);
    --bento-card-heading: #f5fffb;
    --cta-pill-padding-y: 14px;
    --cta-pill-padding-x: 28px;
}
@media (max-width: 991px) {
    :root {
        --sketchfab-nav-offset: 58px;
    }
}

body { 
    font-family: var(--font-body); 
    background-color: var(--wfp-home-canvas, #d8e4df);
    color: var(--wfp-ink, #14221e); 
    margin: 0; 
    overflow-x: hidden;
}

body.sketchfab-expanded {
    overflow: hidden;
}

html.wfp-low-fidelity *,
body.wfp-low-fidelity * {
    scroll-behavior: auto !important;
}

body.wfp-low-fidelity #globalBgMap {
    filter: saturate(0.92) brightness(1.06) contrast(1.02);
    transform: none;
}

body.wfp-low-fidelity #globalBgSketchfab {
    opacity: 1;
    transition-duration: 0.01ms !important;
}

body.wfp-low-fidelity .wfp-mobile-cinematic-root {
    display: none !important;
}

body.wfp-low-fidelity .hero-phase-pill {
    display: none;
}

/* Foreground shell above Sketchfab (1012); nav lives here — without this, the iframe stacks on top of the whole bar. */
body.sketchfab-expanded #pageForeground {
    z-index: 1050;
}

#globalBgLayer {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgb(18, 26, 22);
    overflow: hidden;
}

#globalBgMap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none !important;
    /* No blur — map stays sharp; brightness/saturation only */
    filter: saturate(0.96) brightness(1.2) contrast(1.05);
    transform: scale(1.03);
}
#globalBgMap.leaflet-container,
#globalBgMap .leaflet-pane,
#globalBgMap .leaflet-control-container,
#globalBgMap a {
    pointer-events: none !important;
    cursor: default !important;
}

/* In-flow hero card: 3D model scrolls with the page; expanded mode uses fixed fullscreen below. */
.hero-model-card {
    width: min(100%, 966px);
    margin: 0 auto;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    /* No backdrop blur — map stays visible and sharp around / behind the viewer chrome */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    aspect-ratio: 16 / 10;
    max-height: min(64vh, 620px);
    transition: border-radius 0.35s ease, box-shadow 0.35s ease;
}

.hero-sketchfab-stack {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
}

.hero-model-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}
.hero-model-poster.is-hidden {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.02);
    pointer-events: none;
}

.hero-model-facade {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    background: linear-gradient(160deg, rgba(10, 16, 14, 0.34), rgba(8, 12, 10, 0.22));
    color: #f5fffb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: pointer;
    transition: opacity 0.28s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.hero-model-facade[hidden] {
    display: none !important;
}
.hero-model-facade__label {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}
.hero-model-facade__spinner {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-top-color: #ffffff;
    display: none;
    animation: wfpSpin 0.8s linear infinite;
}
.hero-model-card.is-loading-model .hero-model-facade__spinner {
    display: inline-block;
}
.hero-model-card.is-model-ready .hero-model-facade {
    opacity: 0;
}
@keyframes wfpSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#globalBgSketchfab {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    transition: opacity 0.35s ease, transform 1.4s cubic-bezier(0.22, 0.82, 0.22, 1);
    /* Translucent so the aerial map reads through the Sketchfab embed */
    opacity: 0;
    touch-action: none;
}
.hero-model-card.is-model-ready #globalBgSketchfab {
    opacity: 0.95;
}

@media (max-width: 991px) {
    #globalBgSketchfab {
        opacity: 0;
    }
    .hero-model-card.is-model-ready #globalBgSketchfab {
        opacity: 1;
    }
}

.hero-model-fallback-copy {
    margin: 10px auto 0;
    width: min(100%, 966px);
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--font-body);
    font-size: 0.84rem;
    line-height: 1.45;
}

/* Sits above the rounded floor-plan card (not over the iframe) */
.hero-sketchfab-tagline {
    width: min(100%, 966px);
    margin: 0 auto;
    padding: 0 12px 4px;
    text-align: center;
    pointer-events: none;
    flex-shrink: 0;
}

.hero-sketchfab-tagline__kicker {
    margin: 0 0 8px;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.85),
        0 0 18px rgba(0, 0, 0, 0.5);
}

.hero-sketchfab-tagline__title {
    margin: 0;
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(1.15rem, 3.2vw, 1.65rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: #f5fffb;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.85),
        0 0 22px rgba(0, 0, 0, 0.45);
}

body.sketchfab-expanded .hero-sketchfab-tagline {
    display: none;
}

@media (max-width: 991px) {
    .hero-sketchfab-tagline {
        padding: 12px 18px 14px;
        border-radius: 16px;
        background: rgba(245, 255, 251, 0.94);
        border: 1px solid rgba(107, 213, 171, 0.5);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    }

    .hero-sketchfab-tagline__kicker {
        color: rgba(20, 34, 30, 0.62);
        text-shadow: none;
    }

    .hero-sketchfab-tagline__title {
        color: #0d1a15;
        text-shadow: none;
        font-weight: 700;
    }
}

@media (hover: hover) {
    .hero-model-card:hover #globalBgSketchfab {
        opacity: 0.92;
    }
}

@media (max-width: 991px) {
    .hero-model-card {
        width: 100%;
        max-height: min(48vh, 420px);
        aspect-ratio: 4 / 3;
        /* Lift the viewer off pure black: subtle rim + fill */
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.38);
        box-shadow:
            0 0 0 1px rgba(107, 213, 171, 0.25),
            0 12px 40px rgba(0, 0, 0, 0.45);
    }
}

@media (min-width: 992px) {
    .hero-model-card {
        border: none;
        box-shadow:
            var(--glass-rim),
            0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

.sketchfab-focus-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.72);
    pointer-events: none;
}

body.sketchfab-expanded .sketchfab-focus-backdrop {
    display: block;
    z-index: 1008;
    pointer-events: none;
}

body.sketchfab-expanded .hero-model-card {
    position: fixed;
    z-index: 1012;
    top: var(--sketchfab-nav-offset);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: unset;
    height: calc(100vh - var(--sketchfab-nav-offset));
    height: calc(100dvh - var(--sketchfab-nav-offset));
    min-height: calc(100dvh - var(--sketchfab-nav-offset));
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    pointer-events: auto;
    box-shadow: none;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body.sketchfab-expanded #globalBgSketchfab {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

@media (max-width: 991px) {
    body.sketchfab-expanded .hero-model-card {
        bottom: 76px;
        height: auto;
        min-height: 0;
        max-height: none;
        top: var(--sketchfab-nav-offset);
    }
}

.sketchfab-mobile-close-wrap {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    justify-content: center;
    align-items: flex-end;
    padding: 12px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 55%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 991px) {
    body.sketchfab-expanded .sketchfab-mobile-close-wrap {
        display: flex;
        pointer-events: auto;
    }
}

.sketchfab-mobile-close {
    width: 100%;
    max-width: 400px;
    padding: 14px 22px;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(107, 213, 171, 0.42);
    border: 1px solid rgba(107, 213, 171, 0.9);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.sketchfab-mobile-close:active {
    transform: scale(0.98);
}

.sketchfab-mobile-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

body.sketchfab-expanded #navbar-header {
    z-index: 1040 !important;
    background: var(--shell-bg) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--shell-border-strong);
    box-shadow: var(--shell-shadow);
}

/* Close Model: saturated translucent fill + fully opaque label (readable over the viewer). */
body.sketchfab-expanded #navHomeLink {
    background: rgba(107, 213, 171, 0.38) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 213, 171, 0.85);
    border-radius: 8px;
    margin: 8px 6px;
    align-self: center;
    height: auto !important;
    min-height: 0 !important;
    padding: 10px 14px !important;
    opacity: 1 !important;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.sketchfab-expanded #navHomeLink .nav-text {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    opacity: 1 !important;
    font-weight: 700;
    letter-spacing: 0.08em !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

body.sketchfab-expanded #navHomeLink:hover,
body.sketchfab-expanded #navHomeLink:focus-visible {
    background: rgba(107, 213, 171, 0.58) !important;
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(107, 213, 171, 0.35);
}

body.sketchfab-expanded #navHomeLink:active {
    background: rgba(82, 201, 160, 0.65) !important;
}

@media (max-width: 991px) {
    body.sketchfab-expanded #navHomeLink {
        margin: 12px 16px;
        width: calc(100% - 32px);
        max-width: 100%;
        justify-content: center;
        align-self: stretch;
    }
}

body.sketchfab-expanded .sub-header-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.sketchfab-expanded .consult-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.sketchfab-expanded .hero-quick-order {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

#pageForeground > .bento-wrapper,
#pageForeground > .mastfoot {
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.sketchfab-expanded #pageForeground > .mastfoot {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* Keep .bento-wrapper visible so fixed .hero-model-card (descendant) is not clipped by ancestor opacity: 0. */
body.sketchfab-expanded #pageForeground > .bento-wrapper {
    pointer-events: none;
}
body.sketchfab-expanded #pageForeground > .bento-wrapper > .bento-item:not(.item-hero) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
body.sketchfab-expanded #pageForeground > .bento-wrapper > .item-hero {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

@media (prefers-reduced-motion: reduce) {
    #pageForeground > .bento-wrapper,
    #pageForeground > .mastfoot {
        transition-duration: 0.01ms;
    }
}

#globalBgImage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.8s ease, transform 4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: scale(1);
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

#globalBgOverlay {
    position: absolute;
    inset: 0;
    /* Slightly lighter veil so more map shows through (paired with brighter tiles) */
    background: rgba(26, 26, 26, 0.38);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 991px) {
    #globalBgOverlay {
        /* Mobile: less “black hole” — keep aerial map readable behind the hero */
        background: rgba(18, 32, 28, 0.22);
    }
}

/* Pointer events on foreground UI; hero cell is pass-through so the Sketchfab iframe can receive clicks except on the hero card. */
.page-foreground {
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.page-foreground #navbar-header,
.page-foreground .sub-header-bar,
.page-foreground .bento-item,
.page-foreground .mastfoot,
.page-foreground #consultFloat,
.page-foreground #orderFlowModal,
.page-foreground #wfpEnquireModal,
.page-foreground #wfpHudBackdrop {
    pointer-events: auto;
}
.page-foreground #idxModalBackdrop.active {
    pointer-events: auto;
}
.page-foreground .item-hero {
    pointer-events: auto;
}
.page-foreground .item-hero-intro .hero-content,
.page-foreground .item-hero-intro .hero-quick-order {
    pointer-events: auto;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; }

.subheading { 
    color: var(--primary-gold); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.8rem; 
    font-weight: 700;
    display: block; 
    margin-bottom: 10px; 
}

.consult-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9980;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    max-width: min(92vw, 420px);
    padding: var(--cta-pill-padding-y) var(--cta-pill-padding-x);
    background: transparent;
    backdrop-filter: blur(26px) saturate(1.08);
    -webkit-backdrop-filter: blur(26px) saturate(1.08);
    color: var(--bento-card-text) !important;
    text-decoration: none !important;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-rim), 0 8px 28px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(107, 213, 171, 0.35);
    font-family: 'League Spartan', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    line-height: 1.25;
    text-align: center;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s ease,
        border-color 0.35s ease,
        background-color 0.35s ease,
        opacity 0.55s ease,
        visibility 0.55s ease;
}
.consult-float > span {
    display: inline;
}
.consult-float:hover {
    transform: translateY(-6px);
    border-color: rgba(107, 213, 171, 0.65);
    background: rgba(107, 213, 171, 0.1);
    box-shadow: var(--glass-rim), 0 12px 34px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(107, 213, 171, 0.5);
}
.consult-float:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 4px;
}
.consult-float.is-scroll-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(0.96);
}

/* Same entry point as the modal — don’t stack a second hit target over the sheet */
body.order-flow-active #consultFloat {
    pointer-events: none;
}
.consult-modal {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.consult-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.consult-modal__card {
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--bento-surface-strong);
    backdrop-filter: blur(28px) saturate(1.08);
    -webkit-backdrop-filter: blur(28px) saturate(1.08);
    box-shadow: var(--glass-rim), 0 24px 70px rgba(0, 0, 0, 0.14);
    transform: translateY(18px) scale(0.96);
    transition: transform 0.35s ease;
    position: relative;
    overflow-y: auto;
    color: var(--bento-card-text);
}
.consult-modal.active .consult-modal__card { transform: translateY(0) scale(1); }
.consult-map-wrap {
    position: relative;
    width: 100%;
    min-height: 280px;
    height: 280px;
    background: rgba(10, 14, 12, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.consult-map-search {
    display: flex;
    align-items: stretch;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(180deg, rgba(10, 16, 14, 0.55) 0%, rgba(8, 12, 10, 0.48) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 4;
    flex-shrink: 0;
}
.consult-map-search__input {
    flex: 1 1 auto;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.95rem;
    padding: 11px 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.consult-map-search__input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.consult-map-search__input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(107, 213, 171, 0.22);
}
.consult-map-search__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
    background: linear-gradient(180deg, rgba(107, 213, 171, 0.95), rgba(62, 160, 130, 0.95));
    color: #000;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.consult-map-search__btn:hover { transform: translateY(-1px); }
.consult-map-search__btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}
.consult-map-inner {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    background: rgba(12, 16, 14, 0.4);
}
.consult-map-el {
    width: 100%;
    height: 100%;
    min-height: 160px;
    z-index: 1;
}
.consult-map-hint {
    position: absolute;
    left: 12px;
    bottom: 28px;
    margin: 0;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.72);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    line-height: 1.35;
    z-index: 5;
    pointer-events: none;
}
.consult-map-inner .leaflet-control-attribution {
    font-size: 9px;
    background: rgba(0, 0, 0, 0.55) !important;
    color: rgba(255, 255, 255, 0.65) !important;
}
.consult-map-inner .leaflet-control-attribution a { color: var(--color-secondary) !important; }
.consult-pin-wrap { position: relative; width: 28px; height: 28px; margin-left: -14px; margin-top: -28px; }
.consult-pin-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: 2px solid #fff;
    box-shadow: 0 0 0 4px rgba(107, 213, 171, 0.35), 0 4px 14px rgba(0, 0, 0, 0.5);
    animation: consultPinPulse 1.4s ease-out infinite;
}
.consult-pin-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    border-radius: 50%;
    border: 2px solid rgba(107, 213, 171, 0.55);
    animation: consultPinRing 1.8s ease-out infinite;
    pointer-events: none;
}
@keyframes consultPinPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.12); opacity: 0.92; }
}
@keyframes consultPinRing {
    0% { transform: scale(0.45); opacity: 0.9; }
    100% { transform: scale(1.35); opacity: 0; }
}
.consult-leaflet-pin {
    background: transparent !important;
    border: none !important;
}
.consult-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--shell-border-strong);
    background: #f0f4f2;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #14221e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.consult-modal__close:hover {
    background: rgba(107, 213, 171, 0.85);
}
.consult-modal__body {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 36px 40px;
}
.consult-modal__main {
    flex: 1 1 auto;
    min-width: 0;
}
.consult-modal__body .consult-modal__panel {
    padding: 0;
}
.consult-aside {
    flex: 0 0 240px;
    max-width: 260px;
    padding: 16px 14px;
    border-radius: 14px;
    border: 1px solid var(--shell-border-strong);
    background: #f4f8f6;
    color: var(--shell-text, #14221e);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.consult-aside__logo {
    width: auto;
    max-width: 100%;
    max-height: 56px;
    height: auto;
    object-fit: contain;
    align-self: flex-end;
    opacity: 0.95;
}
.consult-aside__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(20, 34, 30, 0.78);
}
.consult-aside__row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.consult-aside__row:hover {
    color: var(--primary-gold);
}
.consult-aside__row i {
    flex-shrink: 0;
    width: 14px;
    margin-top: 2px;
    text-align: center;
    color: var(--primary-gold);
    font-size: 0.8rem;
}
.consult-modal__panel {
    padding: 40px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.consult-modal__panel h3 {
    margin: 0 0 10px;
    color: var(--bento-card-heading);
    font-size: 2rem;
}
.consult-modal__panel p {
    margin: 0 0 20px;
    color: var(--bento-card-text-muted);
}
.consult-modal__panel[hidden] { display: none; }
.consult-form-advanced {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.35s ease, padding-top 0.35s ease, border-color 0.3s ease;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
    pointer-events: none;
}
.consult-form-advanced.is-open {
    max-height: 720px;
    opacity: 1;
    margin-top: 10px;
    padding-top: 14px;
    border-top-color: rgba(107, 213, 171, 0.22);
    pointer-events: auto;
}
.consult-form-advanced .consult-services { grid-column: 1 / -1; }
.consult-form-advanced .consult-field:nth-child(1) { grid-column: 1; }
.consult-form-advanced .consult-field:nth-child(2) { grid-column: 2; }
@media (max-width: 540px) {
    .consult-form-advanced .consult-field:nth-child(1),
    .consult-form-advanced .consult-field:nth-child(2) { grid-column: 1 / -1; }
}
.consult-services {
    border: none;
    margin: 0;
    padding: 0;
}
.consult-services__legend {
    width: 100%;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 10px;
    padding: 0;
}
.consult-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
@media (max-width: 720px) {
    .consult-services__grid { grid-template-columns: 1fr; }
}
.consult-service-card {
    position: relative;
    display: flex;
    margin: 0;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: transparent;
    backdrop-filter: blur(20px) saturate(1.05);
    -webkit-backdrop-filter: blur(20px) saturate(1.05);
    box-shadow: var(--glass-rim), 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.consult-service-card:hover {
    border-color: rgba(107, 213, 171, 0.45);
}
.consult-service-card:has(.consult-service-card__input:checked) {
    border-color: var(--primary-gold);
    background: rgba(107, 213, 171, 0.08);
    box-shadow: var(--glass-rim), 0 0 0 2px rgba(107, 213, 171, 0.18);
}
.consult-service-card__input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.consult-service-card__body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}
.consult-service-card__title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bento-card-heading);
}
.consult-service-card__desc {
    font-size: 0.72rem;
    color: var(--bento-card-text-soft);
    line-height: 1.35;
}
.consult-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.consult-field { display: flex; flex-direction: column; gap: 7px; }
.consult-field--full { grid-column: 1 / -1; }
.consult-field label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-gold);
}
.consult-field input,
.consult-field textarea {
    width: 100%;
    border: 1px solid var(--shell-border-strong);
    border-radius: 10px;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #14221e;
    font-size: 0.98rem;
    padding: 12px 13px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.consult-field textarea { resize: vertical; min-height: 120px; }
.consult-field input:focus,
.consult-field textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(107, 213, 171, 0.25);
}
.consult-actions {
    margin-top: 18px;
    display: none;
    align-items: center;
    gap: 14px;
}
.consult-actions.is-open {
    display: flex;
}
.consult-submit {
    border: 1px solid var(--primary-gold);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(107, 213, 171, 0.98), rgba(62, 160, 130, 0.98));
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 18px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.25s ease;
}
.consult-submit:hover { transform: translateY(-1px); }
.consult-submit[disabled] { opacity: 0.7; cursor: not-allowed; transform: none; }
.consult-status {
    margin: 0;
    min-height: 1.2em;
    color: #ffb3b3;
    font-size: 0.92rem;
}
.consult-success-title { color: var(--primary-gold); margin-bottom: 12px; }
.consult-success-note { margin-bottom: 24px; }
.consult-success-close {
    border: 1px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    border-radius: 9px;
    padding: 10px 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
}
@media (max-width: 768px) {
    .consult-float {
        bottom: 18px;
        right: 16px;
        min-width: 180px;
        padding: 18px 20px 16px;
        font-size: 17px !important;
        letter-spacing: 0.03em !important;
    }
    .consult-map-wrap { height: 240px; min-height: 240px; }
    .consult-map-search__btn span { display: none; }
    .consult-modal__close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }
    .consult-modal__body {
        flex-direction: column;
        align-items: center;
        padding: 20px 20px 24px;
        gap: 16px;
    }
    .consult-modal__main {
        width: 100%;
        order: 2;
    }
    .consult-aside {
        flex: 0 0 auto;
        max-width: none;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 12px 16px;
        order: 1;
    }
    .consult-aside__logo {
        align-self: center;
        max-width: 100px;
    }
    .consult-aside__details {
        display: none;
    }
    .consult-modal__body .consult-modal__panel { padding: 0; }
    .consult-modal__main { padding: 0 12px; }
    .consult-modal__panel h3 { font-size: 1.65rem; }
    .consult-grid { grid-template-columns: 1fr; }
}
.bento-wrapper {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: auto; 
    gap: 35px; padding: calc(143px + 44px) 4vw 80px 4vw; max-width: 1700px; margin: 0 auto;
    position: relative; z-index: 2;
}
/* Grid shells sit over the map with no full-cell glass — frosted surfaces live on inner cards only */
.bento-item {
    position: relative;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    min-height: 0;
    color: var(--bento-card-text);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bento-wrapper .selling-points__lead {
    color: var(--bento-card-text-muted);
}
.bento-wrapper .selling-points__item-text {
    color: var(--bento-card-text);
}

.item-hero { 
    grid-column: span 4; 
    min-height: 0;
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 18px);
    padding: 32px 4vw 36px;
    overflow: visible;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    color: #14221e;
}

.item-hero-bg-addr {
    grid-column: span 4;
    min-height: 0;
    padding: 12px 4vw 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hero-bg-addr__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(10, 16, 14, 0.45);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'League Spartan', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.hero-bg-addr__trigger:hover {
    border-color: rgba(107, 213, 171, 0.55);
    background: rgba(10, 16, 14, 0.58);
    color: #fff;
}
.hero-bg-addr__trigger:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 3px;
}
.hero-bg-addr__trigger i {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-bg-addr__panel {
    width: 100%;
    max-width: 560px;
    padding: 16px 18px 14px;
    border-radius: 18px;
    border: 1px solid rgba(107, 213, 171, 0.35);
    background: rgba(8, 14, 12, 0.55);
    backdrop-filter: blur(18px) saturate(1.06);
    -webkit-backdrop-filter: blur(18px) saturate(1.06);
    box-shadow: var(--glass-rim), 0 10px 32px rgba(0, 0, 0, 0.22);
    box-sizing: border-box;
}
.hero-bg-addr__panel[hidden] {
    display: none !important;
}

.hero-bg-addr__label {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 6px;
}

.hero-bg-addr__find-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.hero-bg-addr__input {
    flex: 1 1 160px;
    min-width: 0;
}

.hero-bg-addr__status {
    margin: 6px 0 0;
    min-height: 1.2em;
    font-size: 0.8rem;
    color: rgba(107, 213, 171, 0.95);
}

.hero-bg-addr__status.hero-bg-addr__status--err {
    color: #ffb4b4;
}

.hero-bg-addr__poi-hint {
    margin: 8px 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.35;
}

.hero-bg-addr__rail {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: min(220px, 30vh);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.hero-bg-addr__rail[hidden] {
    display: none !important;
}

.hero-bg-addr__rail-title {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.hero-bg-addr__list {
    list-style: none;
    margin: 0;
    padding: 0 4px 0 0;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.hero-bg-addr__row {
    width: 100%;
    display: grid;
    grid-template-columns: 26px 1fr auto;
    gap: 4px 8px;
    align-items: center;
    padding: 7px 8px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.18);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.74rem;
    line-height: 1.25;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-bg-addr__list .hero-bg-addr__row:last-child {
    margin-bottom: 0;
}

.hero-bg-addr__list .hero-bg-addr__row:hover {
    background: rgba(107, 213, 171, 0.12);
    border-color: rgba(107, 213, 171, 0.4);
}

.hero-bg-addr__list .hero-bg-addr__row:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

.hero-bg-addr__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    text-shadow: 0 0 2px #000;
}

.hero-bg-addr__name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-bg-addr__dist {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}

.hero-bg-addr__close {
    margin-top: 12px;
    width: 100%;
}

.item-hero-intro {
    grid-column: span 4;
    min-height: 0;
    padding: 32px 36px 32px;
    display: flex;
    align-items: stretch;
    /* ~20% translucent panel — map stays visible; no backdrop blur so tiles stay sharp */
    background: rgba(10, 16, 14, 0.16);
    backdrop-filter: blur(8px) saturate(1.03);
    -webkit-backdrop-filter: blur(8px) saturate(1.03);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.hero-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, auto);
    align-items: center;
    gap: 32px 40px;
    width: 100%;
}
.hero-intro-grid .hero-content {
    max-width: 520px;
    margin: 0;
    min-width: 0;
}
.item-hero-intro .hero-model-hint {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    align-self: center;
    margin: 0;
    pointer-events: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 16, 14, 0.42);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.item-hero-intro .hero-model-hint:active {
    transform: scale(0.98);
}
.hero-action-row {
    grid-column: 1 / -1;
    width: 100%;
}

/* Inline order strip — service, address, continue (replaces phase pills + Start Now). */
.hero-quick-order {
    border-radius: 20px;
    padding: 16px 18px 18px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}
.hero-quick-order__head {
    margin-bottom: 14px;
}
.hero-quick-order__title {
    margin: 0 0 6px;
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(1rem, 2.4vw, 1.22rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--bento-card-heading);
}
.hero-quick-order__sub {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--bento-card-text-muted);
    max-width: 52rem;
}
.hero-quick-order__grid {
    display: grid;
    grid-template-columns: minmax(200px, 1.05fr) minmax(160px, 1.35fr) auto;
    gap: 12px 16px;
    align-items: end;
}
.hero-quick-order__block--cta {
    min-width: 0;
    display: flex;
    align-items: flex-end;
    justify-content: stretch;
}
.hero-quick-order__block--cta .hero-quick-order__cta {
    flex: 1;
}
.hero-quick-order__field-label {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 8px;
}
.hero-quick-order__optional {
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    opacity: 0.88;
}
.hero-quick-order__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-quick-order__chip {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--bento-card-text);
    font-family: var(--font-body);
    text-align: left;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-height: 52px;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hero-quick-order__chip:hover {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.24);
}
.hero-quick-order__chip:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}
.hero-quick-order__chip.is-selected {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26);
}
.hero-quick-order__chip-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.hero-quick-order__chip-meta {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.02em;
}
.hero-quick-order__input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.14);
    color: #f5fffb;
    padding: 12px 14px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hero-quick-order__input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}
.hero-quick-order__input:hover {
    border-color: rgba(255, 255, 255, 0.32);
}
.hero-quick-order__input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22);
}
.hero-quick-order__cta {
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.36);
    color: #10201b;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, filter 0.2s ease, border-color 0.2s ease;
}
.hero-quick-order__cta:hover {
    filter: brightness(1.03);
    border-color: rgba(255, 255, 255, 0.92);
}
.hero-quick-order__cta:active {
    transform: scale(0.98);
}
.hero-quick-order__cta:focus-visible {
    outline: 2px solid #f5fffb;
    outline-offset: 3px;
}
@media (max-width: 991px) {
    .hero-quick-order__grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .hero-quick-order__block--cta {
        align-items: stretch;
    }
    .hero-quick-order__cta {
        width: 100%;
    }
}
.hero-phase-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--bento-card-text);
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 12px 14px;
    background: rgba(10, 16, 14, 0.42);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    min-height: 58px;
}
.hero-phase-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(107, 213, 171, 0.2);
    color: var(--primary-gold);
    font-size: 0.82rem;
}
.hero-phase-pill__text {
    line-height: 1.25;
    text-align: center;
}
/* Light shadows — subtle panel already lifts copy off the map */
.item-hero-intro .hero-brand-line {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.75),
        0 0 12px rgba(0, 0, 0, 0.4);
}
.item-hero-intro .hero-fold-base h1.hero-primary-heading {
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.78),
        0 0 18px rgba(0, 0, 0, 0.4);
}
.item-hero-intro .hero-content p {
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.72),
        0 0 14px rgba(0, 0, 0, 0.35);
}
.item-hero-intro .hero-cta-minimal {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 16, 14, 0.42);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.item-hero-intro .hero-cta-minimal:hover {
    background: rgba(107, 213, 171, 0.28);
    border-color: rgba(107, 213, 171, 0.75);
}

/* Mobile: solid readable “card” for intro copy — avoids white-on-map + heavy shadows */
@media (max-width: 991px) {
    .item-hero-intro {
        background: rgba(10, 16, 14, 0.28);
        border-color: rgba(255, 255, 255, 0.24);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(14px) saturate(1.04);
        -webkit-backdrop-filter: blur(14px) saturate(1.04);
    }
    .item-hero-intro .hero-brand-line {
        color: rgba(245, 255, 251, 0.78);
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.65),
            0 0 10px rgba(0, 0, 0, 0.35);
        border-bottom-color: rgba(255, 255, 255, 0.18);
    }
    .item-hero-intro .hero-fold-base h1.hero-primary-heading {
        color: #f5fffb;
        text-shadow:
            0 2px 6px rgba(0, 0, 0, 0.78),
            0 0 14px rgba(0, 0, 0, 0.42);
    }
    .item-hero-intro .hero-bg-addr__poi-hint {
        color: rgba(245, 255, 251, 0.72);
    }
    .item-hero-intro .hero-content p,
    .item-hero-intro .hero-fold-expand p {
        color: rgba(245, 255, 251, 0.9);
        text-shadow:
            0 1px 3px rgba(0, 0, 0, 0.72),
            0 0 12px rgba(0, 0, 0, 0.3);
    }
    .item-hero-intro .hero-cta-minimal {
        color: #f5fffb;
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.24);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    .item-hero-intro .hero-cta-minimal:hover {
        background: rgba(255, 255, 255, 0.24);
    }
    .hero-quick-order {
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.36);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(12px) saturate(1.04);
        -webkit-backdrop-filter: blur(12px) saturate(1.04);
    }
    .hero-quick-order__title {
        color: #f5fffb;
    }
    .hero-quick-order__field-label {
        color: rgba(245, 255, 251, 0.74);
    }
    .hero-quick-order__chip {
        color: #f5fffb;
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.34);
    }
    .hero-quick-order__chip:hover {
        border-color: rgba(255, 255, 255, 0.58);
        background: rgba(255, 255, 255, 0.22);
    }
    .hero-quick-order__chip.is-selected {
        border-color: rgba(255, 255, 255, 0.78);
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
    }
    .hero-quick-order__chip-meta {
        color: rgba(245, 255, 251, 0.86);
    }
    .hero-quick-order__input {
        color: #f5fffb;
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.34);
    }
    .hero-quick-order__input::placeholder {
        color: rgba(245, 255, 251, 0.56);
    }
}

@media (max-width: 768px) {
    .item-hero {
        padding: 22px 16px 26px;
    }
    .item-hero-intro {
        padding: 24px 20px 24px;
    }
    .hero-intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero-intro-grid .hero-content {
        max-width: none;
    }
    .pulse-share-inner {
        padding: 24px 18px 28px;
        border-radius: 18px;
    }
}

/* Opens the same guest order flow as Order Now (see order-flow.js). */
.hero-model-hint {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: var(--cta-pill-padding-y) var(--cta-pill-padding-x);
    font-family: 'League Spartan', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bento-card-text);
    background: transparent;
    backdrop-filter: blur(28px) saturate(1.1);
    -webkit-backdrop-filter: blur(28px) saturate(1.1);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    pointer-events: auto;
    box-shadow: var(--glass-rim), 0 8px 28px rgba(0, 0, 0, 0.12);
    user-select: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    text-align: center;
}
.hero-model-hint:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 3px;
}
.hero-model-hint__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(107, 213, 171, 0.22);
    color: var(--primary-gold);
    font-size: 0.95rem;
    animation: heroModelHintPulse 2.2s ease-in-out infinite;
}
.hero-model-hint__icon--mobile {
    display: none;
}
.hero-model-hint__text {
    max-width: none;
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
}
.hero-model-hint__text--mobile {
    display: none;
}
@media (max-width: 991px) {
    .hero-model-hint {
        display: none !important;
    }
    .hero-model-hint:active {
        transform: translateX(-50%) scale(0.98);
    }
    .item-hero-intro .hero-model-hint:active {
        transform: scale(0.98);
    }
    .hero-model-hint__icon--desktop,
    .hero-model-hint__text--desktop { display: none; }
    .hero-model-hint__icon--mobile { display: flex; }
    .hero-model-hint__text--mobile { display: inline; }
}
@keyframes heroModelHintPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.92; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-model-hint__icon { animation: none; }
}

.hero-media { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 0;
}

.hero-media video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: brightness(0.9) contrast(1.05);
    transition: transform 4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(130% 130% at 0% 100%, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
    pointer-events: none;
}

/* Copy + CTA sit on the intro panel only — no second frosted “card” so the map reads through one layer */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    text-align: left;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 40px;
    box-shadow: none;
    overflow: hidden;
    transition: opacity 1.2s ease;
}
.order-flow-error {
    font-size: 0.82rem;
    color: #ffb4a8;
    background: rgba(120, 30, 20, 0.35);
    border: 1px solid rgba(255, 140, 120, 0.45);
    border-radius: 10px;
    padding: 10px 12px;
    margin: 0 0 14px;
    line-height: 1.45;
}
.hero-flow-lead {
    font-size: 0.82rem;
    color: rgba(20, 34, 30, 0.65);
    margin: 0 0 14px;
    line-height: 1.5;
}
.hero-flow-pick-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}
@media (min-width: 440px) {
    .hero-flow-pick-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.hero-flow-svc-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    backdrop-filter: blur(22px) saturate(1.05);
    -webkit-backdrop-filter: blur(22px) saturate(1.05);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-rim), 0 6px 22px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #14221e;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: 'League Spartan', 'Montserrat', sans-serif;
}
.hero-flow-svc-card:hover,
.hero-flow-svc-card:focus-visible {
    transform: translateY(-3px);
    border-color: var(--primary-gold);
    box-shadow: var(--glass-rim), 0 12px 32px rgba(0, 0, 0, 0.18);
    outline: none;
}
.hero-flow-svc-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    background: rgba(0, 0, 0, 0.35);
    overflow: hidden;
}
.hero-flow-svc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-flow-svc-card__media--fallback {
    background: linear-gradient(145deg, rgba(107, 213, 171, 0.22) 0%, rgba(8, 14, 12, 0.95) 55%, rgba(6, 10, 9, 1) 100%);
}
.hero-flow-svc-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 12px 14px;
}
.hero-flow-svc-card__body strong {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-flow-svc-card__desc {
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(20, 34, 30, 0.68);
    font-weight: 400;
}
.hero-flow-svc-card__formats {
    display: block;
    margin-top: 4px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-gold);
    font-weight: 600;
    opacity: 0.92;
}
.hero-flow-lead--pick {
    font-size: 0.88rem;
    color: rgba(20, 34, 30, 0.58);
}
@media (prefers-reduced-motion: reduce) {
    .hero-flow-svc-card:hover,
    .hero-flow-svc-card:focus-visible { transform: none; }
}
.hero-content.hero-boot {
    opacity: 0;
}
.hero-content.hero-boot.hero-boot-done {
    opacity: 1;
}
@media (max-width: 991px) {
    #heroTertiaryContent.hero-boot {
        opacity: 1;
        transition: none;
    }
}

/* Static brand line; body copy collapses; Order Now stays visible (no blank flip face) */
.hero-fold-root { position: relative; }
.hero-content .hero-brand-line {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin: 0 0 18px 0;
    padding: 0 0 14px 0;
    border-bottom: 1px solid rgba(107, 213, 171, 0.25);
}
.hero-fold-base h1.hero-primary-heading {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.2rem; 
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--bento-card-heading);
    text-shadow: 0 1px 22px rgba(0, 0, 0, 0.55), 0 0 1px rgba(0, 0, 0, 0.35);
    margin: 0 0 15px 0;
    line-height: 1.1;
}
.hero-fold-expand {
    overflow: hidden;
    transition: max-height 0.85s cubic-bezier(0.4, 0.2, 0.2, 1), opacity 0.45s ease, margin 0.45s ease;
    max-height: 280px;
    opacity: 1;
}
.hero-content.is-folded .hero-fold-expand {
    max-height: 0;
    opacity: 0;
    margin: 0;
    pointer-events: none;
}
.hero-fold-base > .hero-cta-minimal {
    margin-top: 22px;
}
@media (hover: hover) {
    .hero-content.is-folded:hover .hero-fold-expand,
    .hero-content.is-folded:focus-within .hero-fold-expand {
        max-height: 280px;
        opacity: 1;
        pointer-events: auto;
    }
}

.hero-content p { 
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem; 
    font-weight: 400;
    line-height: 1.65; 
    color: var(--bento-card-text-muted); 
    margin-bottom: 25px; 
}
.hero-fold-expand p {
    margin-bottom: 0;
}

.hero-cta-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--bento-card-text);
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: none !important;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: var(--cta-pill-padding-y) var(--cta-pill-padding-x);
    background: transparent;
    backdrop-filter: blur(20px) saturate(1.08);
    -webkit-backdrop-filter: blur(20px) saturate(1.08);
    box-shadow: var(--glass-rim), 0 6px 22px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.hero-cta-minimal i {
    font-size: 0.85rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.hero-cta-minimal:hover {
    color: #ffffff;
    border-color: rgba(107, 213, 171, 0.65);
    background: rgba(107, 213, 171, 0.12);
    box-shadow: var(--glass-rim), 0 10px 28px rgba(0, 0, 0, 0.14);
}

.hero-cta-minimal:hover i {
    transform: translateX(4px);
    color: var(--primary-gold-hover);
}

.item-hero:hover .hero-media video { 
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .hero-content { max-width: 100%; padding: 30px; }
    .hero-content .hero-brand-line { margin-bottom: 14px; padding-bottom: 12px; font-size: 0.7rem; letter-spacing: 2px; }
    .hero-fold-base h1.hero-primary-heading { font-size: 1.8rem; }
    .item-hero-intro .hero-model-hint {
        padding: 10px 16px;
        gap: 10px;
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }
    .item-hero-intro .hero-model-hint__icon--desktop,
    .item-hero-intro .hero-model-hint__icon--mobile {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

.item-portfolio {
    grid-column: span 4;
    height: auto;
    min-height: 280px;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    overflow: visible;
}
.portfolio-gallery {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 12px max(4vw, 16px) 20px;
    box-sizing: border-box;
}
/* Portfolio: three-up on desktop; mobile strip rules in max-width:991 block */
.wfp-strip--portfolio .portfolio-strip-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 1.5vw, 20px);
    width: 100%;
    min-height: 260px;
    height: auto;
    align-items: stretch;
    overflow: visible;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.wfp-strip--portfolio .portfolio-strip-track .gs-item {
    flex: unset;
    border-right: none;
    border-radius: 18px;
    min-height: 240px;
}
.item-cert-band {
    grid-column: span 4;
    min-height: 0;
    padding: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}
.item-cert-band .cert-box {
    border-radius: 30px;
    margin: 0;
    background: transparent;
    backdrop-filter: blur(26px) saturate(1.08);
    -webkit-backdrop-filter: blur(26px) saturate(1.08);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-rim), 0 8px 32px rgba(0, 0, 0, 0.1);
}
.cert-band-row {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}
.cert-box--facebook {
    text-align: center;
    padding: 28px 0 30px;
}
.facebook-follow-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #9fb7ff;
}
.facebook-follow-title i {
    color: #1877f2;
    font-size: 1.32rem;
}
.facebook-follow-title span {
    font-family: 'Playfair Display', serif;
    color: #dce6ff;
}
.facebook-embed-wrap {
    width: min(500px, calc(100vw - 44px));
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
    background: rgba(10, 16, 26, 0.32);
}
.facebook-embed-wrap iframe {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .cert-band-row {
        grid-template-columns: 1fr;
    }
}
.item-featured { grid-column: span 2; }

.item-embed-demo {
    grid-column: span 4;
    min-height: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}
.item-about-toggle {
    grid-column: span 4;
    min-height: 0;
    padding: 0 0 6px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index-about-toggle-btn {
    min-height: 42px;
    background: rgba(9, 17, 29, 0.74);
    color: rgba(255, 255, 255, 0.95);
}
.index-about-toggle-btn[aria-expanded='true'] {
    border-color: rgba(107, 213, 171, 0.68);
}
.is-about-collapsed {
    display: none !important;
}
.embed-demo-inner {
    padding: 36px 4vw 44px;
    max-width: 1180px;
    margin: 0 auto;
}
.embed-demo-stage {
    position: relative;
    min-height: 280px;
}
.embed-demo-two-cards {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 24px 28px;
    align-items: stretch;
}
.embed-demo-card {
    background: transparent;
    backdrop-filter: blur(22px) saturate(1.05);
    -webkit-backdrop-filter: blur(22px) saturate(1.05);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: var(--glass-rim), 0 6px 24px rgba(0, 0, 0, 0.1);
}
.embed-demo-card--site {
    padding: 0;
    border: none;
    background: transparent;
}
.embed-demo-cursor {
    position: absolute;
    z-index: 20;
    width: 28px;
    height: 28px;
    left: 82%;
    top: 62%;
    margin: -14px 0 0 -14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.embed-demo-cursor-icon {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.15);
    position: relative;
}
.embed-demo-cursor-icon::after {
    content: '';
    position: absolute;
    right: -4px;
    bottom: -2px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #fff;
    transform: rotate(-28deg);
}
.embed-demo-stage.is-demo-active .embed-demo-cursor {
    opacity: 1;
    animation: embedDemoCursorMove 4.8s cubic-bezier(0.45, 0.05, 0.25, 1) infinite;
}
.embed-chip.is-picked {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.embed-demo-chip-ghost {
    position: absolute;
    z-index: 15;
    left: 18%;
    top: 34%;
    width: min(200px, 42vw);
    padding: 12px 10px;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(18, 24, 22, 0.72), rgba(28, 36, 32, 0.65));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px dashed rgba(107, 213, 171, 0.55);
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.embed-demo-stage.is-demo-active .embed-demo-chip-ghost {
    animation: embedDemoGhostCarry 4.8s cubic-bezier(0.45, 0.05, 0.25, 1) infinite;
}
@keyframes embedDemoCursorMove {
    0% { left: 82%; top: 68%; }
    18% { left: 82%; top: 68%; }
    32% { left: 22%; top: 36%; }
    40% { left: 22%; top: 36%; }
    58% { left: 68%; top: 40%; }
    72% { left: 68%; top: 40%; opacity: 1; }
    88% { left: 68%; top: 40%; opacity: 0; }
    100% { left: 68%; top: 40%; opacity: 0; }
}
@keyframes embedDemoGhostCarry {
    0%, 36% { opacity: 0; transform: translate(0, 0) scale(0.96); }
    40% { opacity: 1; transform: translate(0, 0) scale(1); }
    58% { opacity: 1; transform: translate(calc(52vw - 120px), 12px) scale(0.95); }
    62% { opacity: 0; transform: translate(calc(54vw - 100px), 14px) scale(0.9); }
    100% { opacity: 0; }
}
@media (max-width: 900px) {
    @keyframes embedDemoGhostCarry {
        0%, 36% { opacity: 0; transform: translate(0, 0) scale(0.96); }
        40% { opacity: 1; transform: translate(0, 0) scale(1); }
        58% { opacity: 1; transform: translate(28vw, 140px) scale(0.95); }
        62% { opacity: 0; transform: translate(30vw, 145px) scale(0.9); }
        100% { opacity: 0; }
    }
}
@media (prefers-reduced-motion: reduce) {
    .embed-demo-stage.is-demo-active .embed-demo-cursor,
    .embed-demo-stage.is-demo-active .embed-demo-chip-ghost {
        animation: none !important;
    }
    .embed-demo-stage.is-demo-active .embed-demo-cursor {
        opacity: 0 !important;
    }
}
.embed-chip-wrap {
    background: transparent;
    backdrop-filter: blur(12px) saturate(1.04);
    -webkit-backdrop-filter: blur(12px) saturate(1.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 18px 22px;
}
.embed-chip-label {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 14px;
}
#embedCodeChip {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
#embedCodeChip:active {
    cursor: grabbing;
}
.embed-chip {
    cursor: default;
    padding: 16px 14px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(16, 22, 20, 0.55), rgba(26, 32, 28, 0.48));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px dashed rgba(107, 213, 171, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.embed-chip:hover {
    border-color: rgba(107, 213, 171, 0.55);
}
.embed-chip-code {
    display: block;
    font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    word-break: break-all;
}
.embed-chip-code-inner {
    color: var(--primary-gold);
    font-weight: 600;
}
.btn-embed-preview {
    display: none;
    box-sizing: border-box;
    width: 100%;
    margin-top: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(107, 213, 171, 0.45);
    background: rgba(107, 213, 171, 0.14);
    color: var(--bento-card-text);
    font-family: 'League Spartan', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.btn-embed-preview:hover {
    background: rgba(107, 213, 171, 0.22);
    border-color: rgba(107, 213, 171, 0.65);
}
.btn-embed-preview:active {
    transform: scale(0.98);
}
.btn-embed-preview:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 3px;
}
.embed-demo-tap-hint {
    display: none;
    margin: 10px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.74rem;
    line-height: 1.45;
    color: var(--bento-card-text-soft);
}
.listing-drop-hint-mobile {
    display: none;
}
@media (max-width: 991px) {
    .item-embed-demo:not(.is-embed-placed) .btn-embed-preview {
        display: inline-flex;
    }
    .item-embed-demo:not(.is-embed-placed) .embed-demo-tap-hint {
        display: block;
    }
    .listing-drop-hint-desktop {
        display: none;
    }
    .listing-drop-hint-mobile {
        display: inline;
    }
}
.listing-mock {
    background: #f4f4f2;
    color: #28322f;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.listing-mock-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #e8e8e4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.listing-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}
.listing-dot--r { background: #e85d5d; }
.listing-dot--y { background: #e8c15d; }
.listing-dot--g { background: #6bd5ab; }
.listing-url {
    flex: 1;
    text-align: center;
    font-size: 0.68rem;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}
.listing-mock-body {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    min-height: 260px;
}
@media (max-width: 900px) {
    .listing-mock-body {
        grid-template-columns: 1fr;
    }
}
.listing-mock-main {
    padding: 14px;
    background: #fff;
}
.listing-drop-zone {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 200px;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.listing-photos-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
    min-height: 200px;
    height: 100%;
}
.listing-photos-layout .listing-gallery-view {
    flex: 1;
    min-width: 0;
    min-height: 200px;
}
.listing-side-gallery {
    flex: 0 0 56px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 0;
}
.listing-side-thumb {
    flex: 1 1 0;
    min-height: 40px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #e8e8e4;
    display: block;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.listing-side-thumb:hover {
    border-color: rgba(107, 213, 171, 0.55);
}
.listing-side-thumb img {
    width: 100%;
    height: 100%;
    min-height: 40px;
    object-fit: cover;
    display: block;
}
.listing-side-thumb.is-active {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 1px var(--primary-gold);
}
.listing-drop-zone.is-drag-over {
    box-shadow: 0 0 0 3px var(--primary-gold), 0 0 28px rgba(107, 213, 171, 0.45);
    background: rgba(107, 213, 171, 0.12);
}
.listing-gallery-view {
    position: relative;
    height: 100%;
    min-height: 200px;
}
.listing-gallery-img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
}
.listing-gallery-ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}
.listing-gallery-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}
.listing-dot-btn {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.15s ease;
}
.listing-dot-btn:hover {
    background: rgba(255, 255, 255, 0.75);
}
.listing-dot-btn.is-active {
    background: #fff;
    transform: scale(1.15);
}
.listing-gallery-count {
    font-size: 0.7rem;
    color: #fff;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 0.08em;
}
.listing-drop-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.listing-drop-zone[data-embed-state="photos"] .listing-drop-hint {
    opacity: 0;
}
.listing-drop-zone.is-drag-over .listing-drop-hint {
    opacity: 1;
}
.listing-embed-view {
    position: relative;
    width: 100%;
    min-height: 240px;
    height: clamp(220px, 34vw, 360px);
    background: #141918;
}
.listing-embed-sketchfab {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #141918;
    pointer-events: auto;
    touch-action: none;
}
.listing-embed-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(10, 16, 14, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-secondary);
    font-family: 'League Spartan', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    pointer-events: none;
}
.listing-drop-zone[data-embed-state="embedded"] .listing-gallery-view {
    display: none;
}
.listing-drop-zone[data-embed-state="embedded"] .listing-embed-view {
    display: block !important;
}
.listing-mock-aside {
    padding: 18px 18px 20px;
    background: #fafaf8;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
@media (max-width: 900px) {
    .listing-mock-aside {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
}
.listing-next-pill {
    align-self: flex-start;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    cursor: default;
}
.listing-desc {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #444;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
.listing-agent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}
.listing-agent-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6bd5ab, #3a8f6c);
    flex-shrink: 0;
}
.listing-agent-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #222;
    font-family: 'League Spartan', sans-serif;
}
.listing-agent-title {
    font-size: 0.72rem;
    color: #777;
}

.item-pulse-share {
    grid-column: span 4;
    min-height: 0;
    padding: 28px 4vw 44px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}
.pulse-share-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 28px 40px;
    background: rgba(8, 14, 12, 0.44);
    backdrop-filter: blur(22px) saturate(1.06);
    -webkit-backdrop-filter: blur(22px) saturate(1.06);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-rim), 0 10px 36px rgba(0, 0, 0, 0.16);
}
.pulse-share-intro {
    max-width: 640px;
    margin: 0 auto 28px;
}
.pulse-share-top {
    text-align: center;
    margin-bottom: 28px;
}
.btn-pulse-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: var(--cta-pill-padding-y) var(--cta-pill-padding-x);
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-rim), 0 0 0 1px rgba(107, 213, 171, 0.35);
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--bento-card-text);
    font-family: 'League Spartan', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-pulse-send:hover {
    background: rgba(107, 213, 171, 0.1);
    box-shadow: var(--glass-rim), 0 0 0 1px rgba(107, 213, 171, 0.55), 0 10px 28px rgba(0, 0, 0, 0.12);
}
.btn-pulse-send:active {
    transform: scale(0.98);
}
.btn-pulse-send:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 4px;
}

.pulse-screens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
.pulse-screen {
    background: #f0f0ed;
    color: #3a3a38;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.pulse-screen-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #e4e4e0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.pulse-screen-dots {
    display: flex;
    gap: 5px;
}
.pulse-screen-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8c8c4;
}
.pulse-screen-dots span:first-child { background: #e07070; }
.pulse-screen-dots span:nth-child(2) { background: #d8c060; }
.pulse-screen-dots span:nth-child(3) { background: #6bd5ab; }
.pulse-screen-title {
    flex: 1;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: #555;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.pulse-screen-title--personal {
    text-transform: none;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 0.64rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 4px;
}
.pulse-screen-body {
    position: relative;
    min-height: 200px;
    padding: 12px 14px 72px;
    background: #fafaf8;
}
.pulse-inbox-row {
    font-size: 0.78rem;
    color: #555;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pulse-inbox-row--active {
    background: rgba(107, 213, 171, 0.15);
    color: #222;
    font-weight: 600;
}
.pulse-inbox-ico {
    width: 1.1rem;
    text-align: center;
    color: var(--primary-gold);
}
.pulse-inbox-n {
    margin-left: auto;
    font-size: 0.68rem;
    color: #888;
    font-weight: 600;
}
.pulse-notif-toast {
    position: absolute;
    right: 10px;
    top: 14px;
    left: 10px;
    max-width: 280px;
    margin-left: auto;
    padding: 12px 14px;
    border-radius: 12px;
    color: #2a2a2a;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
    transform: translateX(115%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}
.pulse-notif-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ff3b30;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    z-index: 2;
}
.item-pulse-share.is-sent .pulse-notif-toast {
    transform: translateX(0);
    opacity: 1;
}
.item-pulse-share.is-sent .pulse-screens-grid .pulse-screen:nth-child(1) .pulse-notif-toast { transition-delay: 0.1s; }
.item-pulse-share.is-sent .pulse-screens-grid .pulse-screen:nth-child(2) .pulse-notif-toast { transition-delay: 0.35s; }
.item-pulse-share.is-sent .pulse-screens-grid .pulse-screen:nth-child(3) .pulse-notif-toast { transition-delay: 0.6s; }
@media (prefers-reduced-motion: reduce) {
    .pulse-notif-toast {
        transition-duration: 0.01ms;
    }
}
.pulse-notif-app {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #888;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'League Spartan', sans-serif;
}
.pulse-notif-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    font-family: 'League Spartan', sans-serif;
}
.pulse-notif-text {
    font-size: 0.72rem;
    line-height: 1.4;
    color: #444;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.digital-life-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin: 0 0 12px;
    line-height: 1.2;
}
.digital-life-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: var(--bento-card-text-muted);
    margin: 0;
    font-weight: 500;
}

.item-pricing {
    grid-column: span 4;
    min-height: 0;
    padding: 28px 4vw 48px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    scroll-margin-top: calc(var(--sketchfab-nav-offset, 72px) + 48px);
}
.pricing-inner {
    padding: 44px 4vw 52px;
    max-width: 1180px;
    margin: 0 auto;
    background: rgba(8, 14, 12, 0.44);
    backdrop-filter: blur(24px) saturate(1.08);
    -webkit-backdrop-filter: blur(24px) saturate(1.08);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-rim), 0 10px 36px rgba(0, 0, 0, 0.14);
}

.pricing-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    line-height: 1.2;
    color: var(--primary-gold);
    text-align: center;
    margin: 0 0 36px;
    letter-spacing: 0.02em;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}
@media (max-width: 991px) {
    /* Horizontal strip must not be clipped by default bento overflow */
    .bento-item.item-pricing {
        overflow: visible;
        padding-left: 0;
        padding-right: 0;
    }
    /* Apple-style horizontal “cover” row: one plan per swipe, snap, peek of neighbours */
    .pricing-inner {
        padding-left: 0;
        padding-right: 0;
        padding-top: 36px;
        padding-bottom: 44px;
        margin-inline: max(4vw, 16px);
        border-radius: 20px;
    }
    .pricing-section-title {
        margin-bottom: 16px;
        padding-inline: max(4vw, 16px);
    }
    .pricing-grid {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 6px;
        overflow-x: auto;
        overflow-y: visible;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: max(4vw, 16px, env(safe-area-inset-left, 0px));
        -webkit-overflow-scrolling: touch;
        padding: 32px max(4vw, 16px) 40px;
        margin: 0;
        max-width: none;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    /* Active-center snap: flat scale/opacity from JS — keep neighbour tiers readable */
    .wfp-strip__track--active-snap .pricing-card {
        transform-origin: center center;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .pricing-card.is-strip-center-focus {
        box-shadow:
            var(--glass-rim),
            0 22px 52px rgba(0, 0, 0, 0.28),
            0 0 0 1px rgba(107, 213, 171, 0.32);
    }
    .pricing-card {
        flex: 0 0 clamp(240px, 78vw, 320px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        min-height: 0;
        transform-origin: center center;
    }
    /* Homepage pricing: vertical stack so the $99 CTA can sit between the first plan and the model card */
    .wfp-strip--pricing .pricing-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        gap: 14px;
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 20px max(4vw, 16px) 32px;
    }
    .wfp-strip--pricing .pricing-card {
        flex: 0 0 auto;
        width: min(100%, 380px);
        max-width: 100%;
        scroll-snap-align: unset;
        scroll-snap-stop: normal;
    }
    .wfp-strip--pricing .wfp-strip__meta,
    .wfp-strip--pricing .wfp-strip__chev,
    .wfp-strip--pricing .wfp-strip__fog {
        display: none !important;
    }
    /* Scroll affordance: edge vignette + chevrons sit above the strip (grid is first in DOM) */
    .wfp-strip__stage {
        position: relative;
    }
    .wfp-strip__fog {
        position: absolute;
        top: 20px;
        bottom: 28px;
        width: min(52px, 15vw);
        z-index: 4;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }
    .wfp-strip__fog--left {
        left: 0;
        border-radius: 0 18px 18px 0;
        background: linear-gradient(
            to right,
            rgba(8, 14, 12, 0.78) 0%,
            rgba(8, 14, 12, 0.28) 45%,
            transparent 100%
        );
    }
    .wfp-strip__fog--right {
        right: 0;
        border-radius: 18px 0 0 18px;
        background: linear-gradient(
            to left,
            rgba(8, 14, 12, 0.82) 0%,
            rgba(8, 14, 12, 0.32) 48%,
            transparent 100%
        );
    }
    .wfp-strip--at-start .wfp-strip__fog--left {
        opacity: 0.18;
    }
    .wfp-strip--at-end .wfp-strip__fog--right {
        opacity: 0.18;
    }
    .wfp-strip__chev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 44px;
        height: 44px;
        padding: 0;
        margin: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid var(--glass-border);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(14px) saturate(1.08);
        -webkit-backdrop-filter: blur(14px) saturate(1.08);
        box-shadow: var(--glass-rim), 0 8px 22px rgba(0, 0, 0, 0.18);
        color: var(--bento-card-text);
        font-size: 0.85rem;
        cursor: pointer;
        transition: opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
    }
    .wfp-strip__chev:hover,
    .wfp-strip__chev:focus-visible {
        border-color: rgba(107, 213, 171, 0.55);
        background: rgba(107, 213, 171, 0.14);
        outline: none;
    }
    .wfp-strip__chev:active {
        transform: translateY(-50%) scale(0.96);
    }
    .wfp-strip__chev--prev {
        left: max(4px, env(safe-area-inset-left, 0px));
    }
    .wfp-strip__chev--next {
        right: max(4px, env(safe-area-inset-right, 0px));
    }
    .wfp-strip--at-start .wfp-strip__chev--prev {
        opacity: 0.28;
        pointer-events: none;
    }
    .wfp-strip--at-end .wfp-strip__chev--next {
        opacity: 0.28;
        pointer-events: none;
    }
    .wfp-strip__meta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 4px max(4vw, 16px) 0;
        text-align: center;
    }
    .wfp-strip__hint {
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        color: var(--bento-card-text-soft);
        max-width: 22rem;
        line-height: 1.45;
    }
    .wfp-strip__dots {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .wfp-strip__dot {
        width: 9px;
        height: 9px;
        padding: 0;
        border-radius: 50%;
        border: 1px solid rgba(107, 213, 171, 0.55);
        background: transparent;
        cursor: pointer;
        transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
    }
    .wfp-strip__dot.is-active {
        background: var(--primary-gold);
        border-color: var(--primary-gold);
        transform: scale(1.15);
    }
    .wfp-strip__dot:focus-visible {
        outline: 2px solid var(--primary-gold);
        outline-offset: 3px;
    }
    .bento-item.item-portfolio {
        overflow: visible;
    }
    .portfolio-gallery {
        padding: 16px max(4vw, 16px) 24px;
    }
    /* Portfolio: horizontal snap strip (same interaction model as pricing) */
    .wfp-strip--portfolio .wfp-strip__stage {
        position: relative;
    }
    .wfp-strip--portfolio .portfolio-strip-track {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 8px;
        min-height: 0;
        overflow-x: auto;
        overflow-y: visible;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: max(4vw, 16px, env(safe-area-inset-left, 0px));
        -webkit-overflow-scrolling: touch;
        padding: 20px max(4vw, 16px) 28px;
        margin: 0;
        max-width: none;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .wfp-strip--portfolio .portfolio-strip-track::-webkit-scrollbar {
        display: none;
    }
    .wfp-strip--portfolio .portfolio-strip-track .gs-item {
        flex: 0 0 clamp(240px, 78vw, 300px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        min-height: 220px;
        transform-origin: center center;
    }
    .wfp-strip--portfolio .gs-item.is-strip-center-focus {
        box-shadow:
            0 0 0 1px rgba(107, 213, 171, 0.35),
            0 20px 48px rgba(0, 0, 0, 0.35);
    }
    /* Embed + pulse: stack vertically on narrow viewports — no horizontal strip */
    .embed-demo-two-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(14px, 3vw, 22px);
        max-width: 100%;
        min-width: 0;
        margin: 0;
    }
    .embed-demo-inner,
    .embed-demo-stage {
        min-width: 0;
    }
    .embed-demo-card {
        max-width: 100%;
        min-width: 0;
    }
    .pulse-screens-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(14px, 3vw, 20px);
        max-width: 100%;
        min-width: 0;
    }
    .pulse-screen {
        max-width: 100%;
        min-width: 0;
    }
}
@media (min-width: 992px) {
    .wfp-strip__fog,
    .wfp-strip__chev,
    .wfp-strip__meta {
        display: none !important;
    }
    .wfp-strip__stage {
        position: static;
    }
    .portfolio-gallery {
        padding: 8px max(3vw, 14px) 16px;
    }
    .wfp-strip--portfolio .portfolio-strip-track {
        min-height: 260px;
    }
}
@media (max-width: 991px) and (prefers-reduced-motion: reduce) {
    .pricing-grid,
    .wfp-strip--portfolio .portfolio-strip-track {
        scroll-snap-type: x proximity;
    }
    .wfp-strip__track--active-snap .pricing-card,
    .wfp-strip__track--active-snap .gs-item {
        transform: none !important;
        opacity: 1 !important;
        z-index: auto !important;
        transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
    }
    .pricing-card:hover,
    .pricing-card:focus-visible {
        transform: none !important;
    }
    .pricing-card {
        scroll-snap-stop: normal;
    }
    .wfp-strip--portfolio .portfolio-strip-track .gs-item {
        scroll-snap-stop: normal;
    }
}
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    background: transparent;
    backdrop-filter: blur(24px) saturate(1.06);
    -webkit-backdrop-filter: blur(24px) saturate(1.06);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-rim), 0 8px 28px rgba(0, 0, 0, 0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}
.pricing-card-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(107, 213, 171, 0.15);
}
.pricing-card-visual--fallback {
    min-height: 120px;
    background: linear-gradient(145deg, rgba(107, 213, 171, 0.12), rgba(0, 0, 0, 0.35));
}
.pricing-card-visual--fallback .pricing-card-img {
    display: none;
}
.pricing-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.pricing-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 26px;
}
.pricing-card:hover {
    border-color: rgba(107, 213, 171, 0.45);
    box-shadow: var(--glass-rim), 0 14px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(107, 213, 171, 0.12);
    transform: translateY(-3px);
}
@media (prefers-reduced-motion: reduce) {
    .pricing-card:hover {
        transform: none;
    }
}
.pricing-card--featured {
    background: transparent;
    border-color: rgba(107, 213, 171, 0.5);
}
.pricing-card--featured:hover {
    border-color: rgba(107, 213, 171, 0.65);
}
.pricing-card-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--canvas-deep);
    background: var(--primary-gold);
    padding: 6px 10px;
    border-radius: 6px;
}
.pricing-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--primary-gold);
    margin: 0 0 8px;
    line-height: 1.2;
}
.pricing-card--featured .pricing-card-title {
    padding-right: 82px;
}
.pricing-card-lead {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bento-card-text-soft);
    margin: 0 0 18px;
    line-height: 1.4;
}
.pricing-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--primary-gold);
    margin: 0 0 14px;
    line-height: 1;
}
.pricing-currency {
    font-size: 0.55em;
    vertical-align: super;
    margin-right: 2px;
    opacity: 0.9;
}
.pricing-card-note {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--bento-card-text-muted);
    margin: 0 0 22px;
}
.pricing-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 12px 22px;
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
    background: rgba(107, 213, 171, 0.12);
    color: var(--bento-card-text);
    font-family: 'League Spartan', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.pricing-card-cta:hover {
    background: var(--primary-gold);
    color: var(--canvas-deep);
    border-color: var(--primary-gold);
}
.pricing-card-cta--between-mobile {
    display: none;
}
@media (max-width: 991px) {
    .wfp-strip--pricing .pricing-grid > .pricing-card:first-of-type .pricing-card-cta--in-card-floor {
        display: none !important;
    }
    .pricing-card-cta--between-mobile {
        display: inline-flex;
        align-self: center;
        margin: 2px 0 4px;
        background: var(--primary-gold);
        color: var(--canvas-deep);
        border-color: var(--primary-gold);
    }
    .pricing-card-cta--between-mobile:hover,
    .pricing-card-cta--between-mobile:focus-visible {
        background: var(--canvas-deep);
        color: var(--primary-gold);
        border-color: var(--primary-gold);
    }
}

@media (max-width: 1200px) {
    .bento-wrapper { grid-template-columns: repeat(2, 1fr); padding-top: calc(87px + 44px); }
    .item-portfolio { height: auto; min-height: 400px; }
    .item-hero { grid-column: span 2; }
    .item-hero-bg-addr { grid-column: span 2; }
    .item-hero-intro { grid-column: span 2; }
    .item-portfolio { grid-column: span 2; }
    .item-embed-demo { grid-column: span 2; }
    .item-pulse-share { grid-column: span 2; }
    .item-about-toggle { grid-column: span 2; }
    .item-pricing { grid-column: span 2; }
    .item-cert-band { grid-column: span 2; }
}

.bento-content { position: relative; z-index: 2; padding: 50px; height: 100%; display: flex; flex-direction: column; justify-content: center; }

.gallery-strip {
    width: 100%;
    min-height: 0;
}

.gallery-strip:not(.gallery-strip--static) {
    display: flex;
    height: 100%;
}

.gs-item {
    flex: 1 1 0%;
    min-width: 0;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
}
.gs-item:last-child { border-right: none; }

.gs-link { position: absolute; inset: 0; z-index: 20; display: block; }

.gs-item img.bg-thumb { 
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; 
}

.gs-item::before { 
    content: ''; position: absolute; inset: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); 
    z-index: 1; pointer-events: none;
}

.gs-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    z-index: 3;
    pointer-events: none;
}

.gs-item:hover::after {
    animation: portfolioFlash 0.7s ease-in-out;
}

.gs-caption { position: absolute; bottom: 30px; left: 30px; z-index: 4; pointer-events: none; }
.gs-caption h4 { 
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--primary-gold);
    font-size: 1.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 0 18px rgba(0, 0, 0, 0.55);
    margin: 0; 
    transition: all 0.3s ease;
    text-decoration-color: transparent;
}

.gs-item:hover .gs-caption h4 {
    color: var(--primary-gold-hover);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--primary-gold-hover);
}

@keyframes portfolioFlash {
    0% { left: -150%; }
    100% { left: 200%; }
}

@media (prefers-reduced-motion: reduce) {
    .gs-item:hover::after {
        animation: none;
    }
}

@media (max-width: 991px) {
    .bento-wrapper {
        padding-top: calc(58px + 44px + 72px);
    }
}

.item-featured {
    display: flex;
    flex-direction: column;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(1.05);
    -webkit-backdrop-filter: blur(16px) saturate(1.05);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-rim), 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.45s ease, border-color 0.35s ease;
}
.feat-bg-stack {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
}
.feat-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.75s ease;
    transform: scale(1.04);
}
.feat-bg-layer.is-visible { opacity: 1; transform: scale(1); transition: opacity 0.75s ease, transform 8s ease; }
.item-featured .feat-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(165deg, rgba(8, 12, 10, 0.62) 0%, rgba(6, 10, 8, 0.52) 45%, rgba(6, 10, 9, 0.46) 100%);
    transition: background 0.6s ease, opacity 0.6s ease;
}
.item-featured.is-artwork-preview .feat-scrim {
    background: linear-gradient(165deg, rgba(8, 12, 10, 0.5) 0%, rgba(6, 10, 9, 0.42) 50%, rgba(6, 10, 9, 0.38) 100%);
}
.feat-header { padding: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: baseline; position: relative; z-index: 2; }
.feat-header h3 { font-size: 1.5rem; margin: 0; color: #fff; letter-spacing: 0.02em; }
.feat-list { flex: 1; overflow-y: auto; padding: 12px 0 20px; position: relative; z-index: 2; }
.feat-list::-webkit-scrollbar { width: 4px; }
.feat-list::-webkit-scrollbar-thumb { background: rgba(107, 213, 171, 0.4); border-radius: 2px; }
.feat-row {
    display: flex; align-items: center;
    padding: 16px 22px;
    margin: 0 18px 10px;
    border-radius: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    background: rgba(255,255,255,0.02);
    transition: background 0.3s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.3s ease;
}
.feat-row:hover, .feat-row:focus-visible {
    background: rgba(255,255,255,0.06);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 1px rgba(107, 213, 171, 0.3), 0 12px 28px rgba(0,0,0,0.35);
    outline: none;
    transform: translateX(4px);
}
.feat-thumb-box { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0; margin-right: 18px; border: 1px solid rgba(107, 213, 171, 0.35); }
.feat-thumb { width: 100%; height: 100%; object-fit: cover; transition: 0.45s ease; filter: grayscale(0.35) brightness(0.95); }
.feat-row:hover .feat-thumb, .feat-row:focus-visible .feat-thumb { filter: grayscale(0); transform: scale(1.08); }
.feat-info { flex: 1; min-width: 0; }
.feat-title {
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    font-size: 1.05rem;
    color: #eaeaea;
    margin-bottom: 4px;
    transition: color 0.25s;
    line-height: 1.25;
}
.feat-row:hover .feat-title, .feat-row:focus-visible .feat-title { color: #fff; }
.feat-cat {
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
}
.feat-arrow { color: var(--primary-gold); opacity: 0; transform: translateX(-10px); transition: all 0.35s ease; font-size: 0.85rem; }
.feat-row:hover .feat-arrow, .feat-row:focus-visible .feat-arrow { opacity: 1; transform: translateX(0); }

.item-featured--process .feat-header {
    justify-content: flex-start;
}
.feat-thumb-box--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 213, 171, 0.12);
}
.feat-thumb-box--icon i {
    font-size: 1.45rem;
    color: var(--primary-gold);
}
.feat-row--static {
    cursor: default;
}
.feat-row--static:hover,
.feat-row--static:focus-visible {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(107, 213, 171, 0.28);
    box-shadow: 0 0 0 1px rgba(107, 213, 171, 0.15);
    outline: none;
}
.feat-row--static:hover .feat-title,
.feat-row--static:focus-visible .feat-title {
    color: #fff;
}

#bentoMap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
}
#bentoMap.leaflet-container {
    font: inherit;
}
.map-overlay { position: absolute; top: 30px; left: 30px; right: 24px; z-index: 10; pointer-events: none; }
.map-overlay h4 { color: #fff; margin: 0; font-size: 1.6rem; font-family: 'Playfair Display', serif; }

.map-search-bar {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    padding: 12px 14px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(1.05);
    -webkit-backdrop-filter: blur(16px) saturate(1.05);
    border: 1px solid rgba(107, 213, 171, 0.38);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}
.map-search-bar__input {
    flex: 1 1 140px;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.9rem;
    padding: 10px 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.map-search-bar__input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}
.map-search-bar__input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(107, 213, 171, 0.22);
}
.map-search-bar__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
    background: linear-gradient(180deg, rgba(107, 213, 171, 0.95), rgba(62, 160, 130, 0.95));
    color: #000;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-family: 'League Spartan', sans-serif;
}
.map-search-bar__btn:hover { transform: translateY(-1px); }
.map-search-bar__btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}
.map-search-hint {
    flex: 1 0 100%;
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.58);
    min-height: 1.2em;
}

.item-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 15, 0.38);
    backdrop-filter: blur(14px) saturate(1.05);
    -webkit-backdrop-filter: blur(14px) saturate(1.05);
    z-index: 0;
}
.stat-grid { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 30px; }
.stat-row { text-align: center; border-bottom: 1px solid rgba(107, 213, 171, 0.25); padding-bottom: 20px; }
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--primary-gold); font-weight: 700; line-height: 1; }
.stat-desc { font-family: 'Roboto', sans-serif; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: #ccc; margin-top: 10px; }

.social-callout {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}
.social-callout h5 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.social-callout p { font-size: 0.85rem; color: #aaa; margin-bottom: 15px; }
.btn-outline-gold { border: 1px solid var(--primary-gold); color: var(--primary-gold); padding: 8px 20px; font-size: 0.8rem; text-transform: uppercase; border-radius: 4px; text-decoration: none; display: inline-block; transition: all 0.3s ease; }
.btn-outline-gold:hover { background: var(--primary-gold); color: #000; text-decoration: none; }

.cert-box {
    background: transparent;
    backdrop-filter: blur(18px) saturate(1.05);
    -webkit-backdrop-filter: blur(18px) saturate(1.05);
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.cert-box h4 { color: var(--primary-gold); font-family: 'Playfair Display', serif; margin-bottom: 25px; }
.cert-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; align-items: center; }
.cert-badge { font-weight: 700; text-transform: uppercase; font-size: 0.8rem; padding: 8px 15px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; color: #ccc;}

.mastfoot { background: #000; color: #fff; padding: 60px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); position: relative; z-index: 2; }
.mastfoot.mastfoot--minimal {
    padding: 22px 0 28px;
    text-align: center;
}
.mastfoot.mastfoot--minimal .mastfoot-loc {
    margin: 0 0 10px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Montserrat', sans-serif;
}
.mastfoot.mastfoot--minimal .mastfoot-copy {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}
.mastfoot h4 { font-weight: 700; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.mastfoot .logo-main-img { height: 31px; width: auto; object-fit: contain; }
.mastfoot .wfp-footer-logo { height: 44px; max-width: 260px; width: auto; object-fit: contain; object-position: left center; }

.index-modal-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(4, 8, 6, 0.72); backdrop-filter: blur(18px) saturate(1.05); -webkit-backdrop-filter: blur(18px) saturate(1.05); z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; display: flex; align-items: center; justify-content: center; padding: 20px; }
.index-modal-backdrop.active { opacity: 1; pointer-events: all; }
.index-modal-card { width: 100%; max-width: 900px; max-height: 90vh; background: rgba(10, 18, 15, 0.42); backdrop-filter: blur(24px) saturate(1.08); -webkit-backdrop-filter: blur(24px) saturate(1.08); border: 1px solid rgba(107, 213, 171, 0.35); border-radius: 20px; overflow-y: auto; transform: translateY(30px) scale(0.95); transition: 0.5s ease; position: relative; }
.index-modal-backdrop.active .index-modal-card { transform: translateY(0) scale(1); }
.im-hero-wrap { position: relative; width: 100%; background: rgba(6, 10, 9, 0.35); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); overflow: hidden; }
.im-hero-stack { position: relative; width: 100%; height: 350px; background: rgba(6, 10, 9, 0.25); }
.im-hero-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: transparent;
    opacity: 0;
    transition: opacity 0.65s ease-in-out;
    pointer-events: none;
}
.im-hero-layer.is-visible { opacity: 1; }
.im-hero-layer::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 52%; background: linear-gradient(to top, rgba(8, 12, 10, 0.75), transparent); pointer-events: none; z-index: 1; }
.idx-gallery-toggle {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px 12px;
    border: none;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 55%, transparent 100%);
    color: rgba(255,255,255,0.92);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.25s ease;
}
.idx-gallery-toggle:hover { color: var(--primary-gold); }
.idx-gallery-toggle .idx-mg-chevron { transition: transform 0.4s ease; font-size: 0.65rem; opacity: 0.85; }
.idx-gallery-toggle.is-open .idx-mg-chevron { transform: rotate(180deg); }
.idx-modal-gallery {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: linear-gradient(180deg, rgba(12, 18, 16, 0.55) 0%, rgba(8, 12, 10, 0.45) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(107, 213, 171, 0.25);
}
.idx-modal-gallery.is-expanded { max-height: 200px; }
.idx-modal-gallery-inner {
    display: flex;
    gap: 12px;
    padding: 14px 18px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(12px, env(safe-area-inset-left, 0px));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.idx-modal-gallery-inner::-webkit-scrollbar {
    display: none;
}
.idx-modal-gallery-thumb {
    flex: 0 0 auto;
    width: 96px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.55;
    border: 2px solid transparent;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.idx-modal-gallery-thumb:hover { opacity: 0.95; transform: translateY(-2px); }
.idx-modal-gallery-thumb.is-active {
    opacity: 1;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 1px rgba(107, 213, 171, 0.35);
}
.idx-modal-gallery-hint { font-size: 0.65rem; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 1px; margin-left: 6px; text-transform: none; }
.im-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(10, 16, 14, 0.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; border: 1px solid rgba(255,255,255,0.2); transition: background 0.3s ease; }
.im-close:hover { background: rgba(107, 213, 171, 0.85); }
.im-body { padding: 40px; }
.im-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; padding: 20px; background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08);}
.im-label { display: block; color: var(--primary-gold); font-size: 0.7rem; text-transform: uppercase; font-weight: 700; margin-bottom: 5px; }
.im-val { color: #fff; font-size: 0.95rem; }
.im-desc { font-size: 1.05rem; line-height: 1.8; color: #ccc; max-width: 70ch; }

@media (max-width: 768px) {
    .im-meta-grid { grid-template-columns: 1fr; }
}

/* ——— Sub-header: status + “Send a message” tab + dropdown panel ——— */
.sub-header-inner {
    position: relative;
    width: 100%;
}
.sub-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}
@media (max-width: 991px) {
    .sub-header-top {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }
    .utility-tab-row {
        width: 100%;
        justify-content: space-between;
    }
    .utility-tab-row .utility-led {
        flex: 1 1 auto;
        min-width: 0;
    }
    .utility-msg-tab {
        flex: 0 0 auto;
    }
}
.utility-tab-row {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--shell-border-strong);
    flex-shrink: 0;
}
.utility-tab-row .utility-led {
    padding: 6px 12px;
    margin: 0;
    border-right: 1px solid var(--shell-border);
    background: rgba(0, 0, 0, 0.03);
}
.utility-msg-tab {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--shell-text);
    background: rgba(0, 0, 0, 0.03);
    border: none;
    padding: 10px 14px;
    min-height: 44px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.utility-msg-tab:hover,
.utility-msg-tab:focus-visible {
    background: rgba(107, 213, 171, 0.15);
    outline: 2px solid rgba(107, 213, 171, 0.55);
    outline-offset: -2px;
}
.utility-msg-tab[aria-expanded='true'] {
    background: rgba(107, 213, 171, 0.22);
    color: var(--primary-gold);
}
.wfp-quick-msg-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 6px;
    z-index: 1030;
    padding: 14px 16px 16px;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--shell-border-strong);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    color: #14221e;
}
.wfp-quick-msg-panel[hidden] {
    display: none !important;
}
.wfp-quick-msg-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
    width: 100%;
    box-sizing: border-box;
}
.wfp-quick-msg-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.wfp-quick-msg-field--full {
    grid-column: 1 / -1;
}
.wfp-quick-msg-label {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(20, 34, 30, 0.55);
}
.wfp-quick-msg-form input,
.wfp-quick-msg-form textarea {
    width: 100%;
    box-sizing: border-box;
    background: #fafcfb;
    border: 1px solid var(--shell-border-strong);
    border-radius: 8px;
    color: #14221e;
    font-size: 0.88rem;
    padding: 8px 10px;
}
.wfp-quick-msg-form textarea {
    resize: vertical;
    min-height: 72px;
}
.wfp-quick-msg-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}
.wfp-quick-msg-submit {
    background: var(--primary-gold);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    cursor: pointer;
    font-family: 'League Spartan', sans-serif;
}
.wfp-quick-msg-submit:hover {
    filter: brightness(1.05);
}
.wfp-quick-msg-status {
    font-size: 0.75rem;
    color: rgba(20, 34, 30, 0.55);
    margin: 10px 0 0;
}
@media (max-width: 640px) {
    .wfp-quick-msg-form {
        grid-template-columns: 1fr;
    }
}

/* ——— Enquire modal (same fields as quick message) ——— */
.wfp-enquire-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    pointer-events: auto;
}
.wfp-enquire-modal[hidden] {
    display: none !important;
}
.wfp-enquire-modal__backdrop {
    position: absolute;
    inset: 0;
    margin: 0;
    border: none;
    padding: 0;
    z-index: 0;
    background: rgba(2, 8, 6, 0.78);
    backdrop-filter: blur(12px) saturate(1.05);
    -webkit-backdrop-filter: blur(12px) saturate(1.05);
    cursor: pointer;
}
.wfp-enquire-modal__sheet {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: min(90vh, 720px);
    display: flex;
    flex-direction: column;
    background: #fafcfb;
    border: 1px solid var(--shell-border-strong);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    color: #14221e;
}
@media (min-width: 560px) {
    .wfp-enquire-modal {
        align-items: center;
        padding: 20px;
    }
    .wfp-enquire-modal__sheet {
        border-radius: 20px;
        max-height: min(88vh, 640px);
    }
}
.wfp-enquire-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 14px;
    border-bottom: 1px solid var(--shell-border);
    flex-shrink: 0;
    background: #fff;
}
.wfp-enquire-modal__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #14221e;
    margin: 0;
}
.wfp-enquire-modal__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--shell-border-strong);
    background: #f0f4f2;
    color: #14221e;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}
.wfp-enquire-modal__close:hover,
.wfp-enquire-modal__close:focus-visible {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    outline: none;
}
.wfp-enquire-modal__body {
    padding: 18px 20px 22px;
    overflow-y: auto;
    background: #fafcfb;
}
.wfp-quick-msg-form--modal {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.wfp-quick-msg-form--modal .wfp-quick-msg-field {
    width: 100%;
}
.wfp-quick-msg-form--modal .wfp-quick-msg-actions {
    margin-top: 4px;
}
.wfp-enquire-modal__status {
    margin-top: 12px;
}

/* ——— Order flow modal (shared form controls) ——— */
.order-flow-slot-note {
    font-size: 0.75rem;
    color: rgba(20, 34, 30, 0.62);
    margin: -6px 0 8px;
}

.order-flow-lead { font-size: 0.88rem; color: rgba(20, 34, 30, 0.68); margin: 0 0 14px; line-height: 1.5; }
.order-flow-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(20, 34, 30, 0.5);
    margin-bottom: 6px;
}
.order-flow-input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--shell-border-strong);
    background: #fff;
    color: #14221e;
    font-size: 0.95rem;
}
.order-flow-status { font-size: 0.8rem; color: rgba(107, 213, 171, 0.95); min-height: 1.2em; margin: -6px 0 10px; }
.order-flow-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.order-flow-btn {
    flex: 1 1 auto;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    background: var(--primary-gold);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}
.order-flow-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.order-flow-btn--ghost {
    background: transparent;
    color: #14221e;
    border: 1px solid var(--shell-border-strong);
}

/* ——— Order flow modal (Order Now / Start Now) ——— */
/* Above #consultFloat (9980) and index modal (9999) so the sheet receives taps; .page-foreground uses pointer-events: none — #orderFlowModal is allowlisted above. */
.order-flow-modal {
    position: fixed;
    inset: 0;
    z-index: 10040;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    pointer-events: auto;
}
.order-flow-modal[hidden] {
    display: none !important;
}

/* Pick step: large title that stays visible above the scrolling card list */
.order-flow-modal--pick .order-flow-modal__header {
    position: relative;
    padding: 14px 44px 18px 18px;
}
.order-flow-modal--pick .order-flow-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
}
.order-flow-modal--pick .order-flow-modal__title {
    font-size: clamp(1.55rem, 6.5vw, 2.75rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: none;
    text-align: center;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    padding-right: 0;
}
@media (min-width: 640px) {
    .order-flow-modal--pick .order-flow-modal__title {
        font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    }
}
.order-flow-modal__backdrop {
    position: absolute;
    inset: 0;
    margin: 0;
    border: none;
    padding: 0;
    z-index: 0;
    background: rgba(2, 8, 6, 0.78);
    backdrop-filter: blur(12px) saturate(1.05);
    -webkit-backdrop-filter: blur(12px) saturate(1.05);
    cursor: pointer;
}
.order-flow-modal__sheet {
    position: relative;
    z-index: 1;
    pointer-events: auto;
    width: 100%;
    max-width: 560px;
    max-height: min(92vh, 880px);
    display: flex;
    flex-direction: column;
    background: #fafcfb;
    border: 1px solid var(--shell-border-strong);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    color: #14221e;
}
@media (min-width: 640px) {
    .order-flow-modal {
        align-items: center;
        padding: 20px;
    }
    .order-flow-modal__sheet {
        border-radius: 20px;
        max-height: min(88vh, 820px);
    }
}
.order-flow-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 14px;
    border-bottom: 1px solid var(--shell-border);
    flex-shrink: 0;
    background: #fff;
}
.order-flow-modal__title {
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #14221e;
    margin: 0;
    line-height: 1.25;
}
.order-flow-modal__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--shell-border-strong);
    background: #f0f4f2;
    color: #14221e;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}
.order-flow-modal__close:hover,
.order-flow-modal__close:focus-visible {
    border-color: var(--primary-gold);
    background: rgba(107, 213, 171, 0.15);
    outline: none;
}
.order-flow-modal__map-wrap {
    flex-shrink: 0;
    border-bottom: 1px solid var(--shell-border);
    background: #e8eeeb;
}
.order-flow-modal__map {
    width: 100%;
    height: 200px;
    z-index: 0;
}
@media (min-width: 640px) {
    .order-flow-modal__map {
        height: 220px;
    }
}
.order-flow-modal__map .leaflet-control-attribution {
    background: rgba(0, 0, 0, 0.55) !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 9px !important;
}
.order-flow-modal__map .leaflet-control-attribution a {
    color: var(--primary-gold) !important;
}
.order-flow-modal__accuracy {
    margin: 0;
    padding: 8px 16px 10px;
    font-size: 0.68rem;
    font-style: italic;
    color: rgba(20, 34, 30, 0.72);
    border-top: 1px solid var(--shell-border);
    background: #fff;
}
.order-flow-modal__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 18px 22px;
    outline: none;
    background: #fafcfb;
}
.order-flow-modal__toolbar {
    margin-bottom: 12px;
}

.order-flow-progress-wrap {
    flex-shrink: 0;
    padding: 10px 18px 12px;
    border-bottom: 1px solid var(--shell-border);
    background: #eef3f0;
}
.order-flow-progress {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4px;
}
.order-flow-progress__step {
    flex: 1;
    min-width: 0;
    text-align: center;
    position: relative;
    padding-top: 22px;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(20, 34, 30, 0.38);
}
.order-flow-progress__dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    z-index: 1;
}
.order-flow-progress__step.is-complete .order-flow-progress__dot {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}
.order-flow-progress__step.is-current .order-flow-progress__dot {
    background: rgba(107, 213, 171, 0.35);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(107, 213, 171, 0.2);
}
.order-flow-progress__step.is-current {
    color: #14221e;
    font-weight: 600;
}
.order-flow-progress__label {
    display: block;
    line-height: 1.25;
    padding: 0 2px;
}

.order-flow-summary {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--shell-border-strong);
    font-size: 0.8rem;
}
.order-flow-summary__row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    align-items: baseline;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid var(--shell-border);
}
.order-flow-summary__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.order-flow-summary__row--total {
    border-top: 1px solid rgba(107, 213, 171, 0.22);
    margin-top: 4px;
    padding-top: 8px;
}
.order-flow-summary__row--total .order-flow-summary__k,
.order-flow-summary__row--total .order-flow-summary__v {
    color: #14221e;
    font-weight: 700;
}
.order-flow-summary__k {
    color: rgba(20, 34, 30, 0.48);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}
.order-flow-summary__v {
    color: #14221e;
    text-align: right;
    word-break: break-word;
    max-width: 100%;
}

.order-flow-label--inline {
    margin-top: 6px;
}
.order-flow-input--date {
    margin-bottom: 10px;
}
.order-flow-date-hint {
    font-size: 0.8rem;
    color: rgba(20, 34, 30, 0.65);
    margin: 0 0 10px;
    line-height: 1.45;
}
.order-flow-date-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 12px;
}
.order-flow-date-row .order-flow-input--date-large {
    flex: 1 1 200px;
    min-height: 48px;
    font-size: 1.05rem;
    margin-bottom: 0;
    cursor: pointer;
}
.order-flow-date-launch {
    flex: 0 0 auto;
    align-self: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.65rem !important;
    padding: 12px 16px !important;
}
.order-flow-sr-hint {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.order-flow-thanks {
    text-align: center;
    padding: 4px 0 8px;
}
.order-flow-thanks__visual {
    margin: 0 auto 16px;
    max-width: 280px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--shell-border-strong);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: #fff;
}
.order-flow-thanks__img {
    display: block;
    width: 100%;
    height: auto;
}
.order-flow-thanks__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    font-weight: 400;
    color: #14221e;
    margin: 0 0 10px;
    line-height: 1.2;
}
.order-flow-thanks__text {
    font-size: 0.88rem;
    color: rgba(20, 34, 30, 0.72);
    line-height: 1.55;
    margin: 0 0 20px;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
}
.order-flow-thanks__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}
.order-flow-thanks__actions .order-flow-btn {
    width: 100%;
}
.order-flow-slot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    min-height: 2.5rem;
}
.order-flow-slot-chip {
    appearance: none;
    margin: 0;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--shell-border-strong);
    background: #fff;
    color: #14221e;
    font-size: 0.72rem;
    line-height: 1.35;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s, background 0.15s;
}
.order-flow-slot-chip:hover:not(:disabled) {
    border-color: var(--primary-gold);
    background: rgba(107, 213, 171, 0.1);
}
.order-flow-slot-chip.is-selected {
    border-color: var(--primary-gold);
    background: rgba(107, 213, 171, 0.18);
    box-shadow: 0 0 0 1px rgba(107, 213, 171, 0.28);
}
.order-flow-slot-chip:disabled,
.order-flow-slot-chip.is-taken {
    opacity: 0.45;
    cursor: not-allowed;
}
.order-flow-slot-chip__range {
    display: block;
    font-weight: 600;
}
.order-flow-slot-chip__tag {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 180, 120, 0.95);
    margin-top: 2px;
}

.order-flow-hint {
    font-size: 0.72rem;
    color: rgba(20, 34, 30, 0.55);
    margin: -4px 0 12px;
    line-height: 1.45;
}
.order-flow-hint--address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.order-flow-hint--address i {
    margin-top: 2px;
    opacity: 0.75;
}
.order-flow-actions--split {
    justify-content: space-between;
}
.order-flow-actions--split .order-flow-btn--ghost {
    flex: 0 1 auto;
}
.order-flow-actions--split .order-flow-btn:not(.order-flow-btn--ghost) {
    flex: 1 1 48%;
    max-width: 220px;
}
.order-flow-actions--tri {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    align-items: center;
}
.order-flow-actions--tri .order-flow-btn--ghost {
    flex: 1 1 auto;
    min-width: 0;
}
.order-flow-actions--tri .order-flow-btn:not(.order-flow-btn--ghost) {
    flex: 1 1 100%;
    max-width: none;
}
@media (min-width: 400px) {
    .order-flow-actions--tri {
        flex-wrap: nowrap;
    }
    .order-flow-actions--tri .order-flow-btn--ghost {
        flex: 0 1 auto;
    }
    .order-flow-actions--tri .order-flow-btn:not(.order-flow-btn--ghost) {
        flex: 1 1 40%;
        max-width: 200px;
    }
}
.order-flow-lead--success {
    color: rgba(200, 240, 215, 0.95);
}
.order-flow-lead--success i {
    color: var(--primary-gold);
    margin-right: 6px;
}

/* ——— USP horizontal slider ——— */
.usp-slider-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(6, 10, 9, 0.5);
    backdrop-filter: blur(14px) saturate(1.05);
    -webkit-backdrop-filter: blur(14px) saturate(1.05);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 28px 0 36px;
    z-index: 2;
}
.usp-slider-head { text-align: center; margin-bottom: 20px; padding: 0 20px; }
.usp-slider-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #fff;
    margin: 0;
}
#uspSlider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 calc(50vw - min(38vw, 320px));
    padding: 12px calc(50vw - min(38vw, 320px)) 24px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#uspSlider::-webkit-scrollbar {
    display: none;
}
#uspSlider:active { cursor: grabbing; }
@media (max-width: 991px) {
    #uspSlider {
        scroll-padding-inline: max(4vw, 16px, env(safe-area-inset-left, 0px));
        padding: 12px max(4vw, 16px) 24px;
        gap: 14px;
    }
}
.usp-slide {
    flex: 0 0 min(76vw, 640px);
    scroll-snap-align: center;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    aspect-ratio: 16 / 10;
    max-height: 420px;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}
.usp-slide.is-active {
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    border-color: rgba(107, 213, 171, 0.55);
    z-index: 2;
}
.usp-slide__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
}
.usp-slide.is-active .usp-slide__media { transform: scale(1.06); }
.usp-slide__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 22px 22px;
    background: linear-gradient(to top, rgba(4, 8, 6, 0.92) 0%, rgba(4, 8, 6, 0.2) 55%, transparent 100%);
    transform: translateY(12px);
    opacity: 0.65;
    transition: transform 0.45s ease, opacity 0.45s ease;
}
.usp-slide.is-active .usp-slide__overlay {
    transform: translateY(0);
    opacity: 1;
}
.usp-slide__overlay h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    margin: 0 0 8px;
    color: var(--primary-gold);
}
.usp-slide__overlay p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

/* ——— Floor plan / Digital twin immersive HUD (gallery strip triggers) ——— */
html.wfp-hud-locked,
body.wfp-hud-locked {
    overflow: hidden !important;
    overscroll-behavior: none;
    touch-action: none;
}
.wfp-hud-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10150;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: rgba(4, 8, 6, 0.82);
    backdrop-filter: blur(14px) saturate(1.05);
    -webkit-backdrop-filter: blur(14px) saturate(1.05);
    box-sizing: border-box;
}
.wfp-hud-backdrop[hidden] {
    display: none !important;
}
.wfp-hud-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #0e1210;
}
.wfp-hud-leaflet-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.wfp-hud-leaflet-bg__map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.wfp-hud-leaflet-bg__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* Lighter so the map reads clearly in the margin “frame” around the viewer */
    background: rgba(4, 8, 6, 0.38);
    pointer-events: none;
}
/* Map = full-bleed media; viewer sits on top inset so map stays visible around the stage */
.wfp-hud-embed-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    box-sizing: border-box;
    padding:
        calc(env(safe-area-inset-top, 0px) + clamp(8px, 3vmin, 36px))
        calc(env(safe-area-inset-right, 0px) + clamp(8px, 3vmin, 36px))
        calc(env(safe-area-inset-bottom, 0px) + clamp(8px, 3vmin, 36px))
        calc(env(safe-area-inset-left, 0px) + clamp(8px, 3vmin, 36px));
    overflow: hidden;
}
.wfp-hud-embed-wrap .wfp-hud-sketchfab {
    pointer-events: auto;
}
.wfp-hud-embed-wrap .wfp-hud-preview-img {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    display: block;
    background: rgba(10, 14, 12, 0.55);
    border-radius: 14px;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.55);
    pointer-events: auto;
}
.wfp-hud-bg--slides {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.55s ease;
}
.wfp-hud-sketchfab {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    border: 0;
    display: block;
    background: rgba(10, 14, 12, 0.45);
    border-radius: 14px;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.55);
    pointer-events: auto;
    touch-action: none;
}
.wfp-hud-icon-btn {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--shell-border-strong);
    color: #14221e;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    font-family: 'League Spartan', sans-serif;
}
.wfp-hud-icon-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}
.wfp-hud-close {
    position: absolute;
    top: max(16px, env(safe-area-inset-top, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
    z-index: 30;
    font-size: 1.1rem;
    padding: 12px 16px;
}
.wfp-hud-ui {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    padding: max(72px, env(safe-area-inset-top, 0px) + 56px) 16px 16px;
    box-sizing: border-box;
    transition: opacity 0.38s ease, transform 0.38s ease;
}
.wfp-hud-ui.wfp-hud-ui--delayed-entry .wfp-hud-widget--detail {
    opacity: 0;
    transform: translateY(12px);
    animation: wfpHudDetailCardFadeIn 0.48s ease 4.5s forwards;
}
.wfp-hud-ui.wfp-hud-ui--hidden {
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
}
@keyframes wfpHudDetailCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .wfp-hud-ui.wfp-hud-ui--delayed-entry .wfp-hud-widget--detail {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
.wfp-hud-panels {
    position: relative;
    flex: 1;
    min-height: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    pointer-events: none;
}
.wfp-hud-widget {
    position: absolute;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--shell-border-strong);
    border-radius: 16px;
    padding: 18px 20px 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    max-width: min(380px, calc(100vw - 32px));
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    color: #14221e;
}
.wfp-hud-widget--detail {
    top: 0;
    right: 0;
}
.wfp-hud-kicker {
    display: block;
    color: var(--primary-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: 'League Spartan', sans-serif;
}
.wfp-hud-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    font-weight: 400;
    color: #14221e;
    margin: 0;
    line-height: 1.15;
}
.wfp-hud-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 14px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
}
.wfp-hud-meta-l {
    display: block;
    color: var(--primary-gold);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'League Spartan', sans-serif;
}
.wfp-hud-meta-v {
    color: #14221e;
    font-size: 0.88rem;
}
.wfp-hud-desc {
    margin: 14px 0 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(20, 34, 30, 0.75);
}
.wfp-hud-sub {
    display: block;
    color: var(--primary-gold);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin: 16px 0 8px;
    font-family: 'League Spartan', sans-serif;
}
.wfp-hud-pricing-block .wfp-hud-sub:first-child {
    margin-top: 14px;
}
.wfp-hud-price-tier-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 4px;
}
.wfp-hud-price-tier-line .wfp-hud-price {
    margin: 0;
    flex: 0 1 auto;
}
.wfp-hud-price-tier-line .wfp-hud-tier-row {
    flex: 1 1 auto;
    justify-content: flex-start;
}
.wfp-hud-enquire-row {
    margin: 12px 0 0;
}
.wfp-hud-enquire-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2d6b52;
    text-decoration: none;
    border-bottom: 1px solid rgba(107, 213, 171, 0.65);
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.wfp-hud-enquire-link:hover {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}
.wfp-hud-enquire-link:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 3px;
    border-radius: 2px;
}
@media (min-width: 340px) {
    .wfp-hud-price-tier-line .wfp-hud-tier-row {
        justify-content: flex-end;
    }
}
.wfp-hud-tier-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.wfp-hud-tier-chip {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    cursor: pointer;
    border-radius: 10px;
    padding: 8px 12px;
    min-height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: #f4f8f6;
    border: 1px solid var(--shell-border-strong);
    color: #14221e;
    transition: border-color 0.2s, background 0.2s;
    text-align: left;
}
.wfp-hud-tier-chip:hover {
    border-color: rgba(107, 213, 171, 0.55);
}
.wfp-hud-tier-chip.is-selected {
    border-color: var(--primary-gold);
    background: rgba(107, 213, 171, 0.14);
}
.wfp-hud-tier-chip__label {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(20, 34, 30, 0.88);
}
.wfp-hud-tier-chip__price {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--primary-gold);
}
.wfp-hud-order-wrap {
    margin-top: 18px;
    padding-top: 4px;
}
.wfp-hud-order-btn {
    width: 100%;
    justify-content: center;
}
.wfp-hud-price {
    margin: 0 0 4px;
    line-height: 1.2;
}
.wfp-hud-price__label {
    font-size: 0.75rem;
    color: rgba(20, 34, 30, 0.55);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'League Spartan', sans-serif;
}
.wfp-hud-price__amount {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 400;
    color: var(--primary-gold);
    margin-left: 4px;
}
.wfp-hud-includes {
    margin: 0;
    padding: 0 0 0 1.15rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(20, 34, 30, 0.78);
}
.wfp-hud-includes li {
    margin-bottom: 8px;
}
.wfp-hud-includes li:last-child {
    margin-bottom: 0;
}
.wfp-hud-reveal {
    position: absolute;
    bottom: max(24px, env(safe-area-inset-bottom, 0px) + 12px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    pointer-events: auto;
}

/* Floor-plan HUD: bottom dock — POI list (left) + address / trigger (right) */
.wfp-hud-bottom-dock {
    position: absolute;
    left: 50%;
    bottom: max(24px, env(safe-area-inset-bottom, 0px) + 16px);
    transform: translateX(-50%);
    z-index: 24;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    max-width: calc(100vw - 20px);
    box-sizing: border-box;
    pointer-events: none;
    transition: bottom 0.35s ease;
}
.wfp-hud-bottom-dock[hidden] {
    display: none !important;
}
.wfp-hud-bottom-dock > * {
    pointer-events: auto;
}
.wfp-hud-backdrop:has(#wfpHudShowUI:not([hidden])) .wfp-hud-bottom-dock {
    bottom: max(92px, env(safe-area-inset-bottom, 0px) + 76px);
}
.wfp-hud-poi-rail {
    flex: 0 1 auto;
    width: min(300px, 40vw);
    max-height: min(300px, 36vh);
    display: flex;
    flex-direction: column;
    padding: 10px 10px 8px;
    border-radius: 12px;
    border: 1px solid rgba(107, 213, 171, 0.38);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(1.05);
    -webkit-backdrop-filter: blur(16px) saturate(1.05);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}
.wfp-hud-poi-rail[hidden] {
    display: none !important;
}
.wfp-hud-poi-rail__title {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin: 0 0 8px 2px;
    flex-shrink: 0;
}
.wfp-hud-poi-rail__hint {
    margin: 0 0 8px 2px;
    font-size: 0.72rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.55);
}
.wfp-hud-poi-rail__hint--dock {
    flex-shrink: 0;
    max-width: min(360px, 88vw);
}
.wfp-hud-poi-rail__list {
    list-style: none;
    margin: 0;
    padding: 0 2px 0 0;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1 1 auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}
.wfp-hud-poi-rail__row {
    width: 100%;
    display: grid;
    grid-template-columns: 26px 1fr auto;
    gap: 4px 8px;
    align-items: center;
    padding: 7px 8px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.74rem;
    line-height: 1.25;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.wfp-hud-poi-rail__row:last-child {
    margin-bottom: 0;
}
.wfp-hud-poi-rail__row:hover {
    background: rgba(107, 213, 171, 0.14);
    border-color: rgba(107, 213, 171, 0.45);
    box-shadow: 0 0 0 1px rgba(107, 213, 171, 0.12);
}
.wfp-hud-poi-rail__row:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}
.wfp-hud-poi-rail__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    text-shadow: 0 0 2px #000;
}
.wfp-hud-poi-rail__name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wfp-hud-poi-rail__dist {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}
.wfp-hud-location-tease {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(480px, calc(100vw - 32px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    pointer-events: none;
}
.wfp-hud-location-tease > * {
    pointer-events: auto;
}
@media (max-width: 640px) {
    .wfp-hud-bottom-dock {
        flex-direction: column-reverse;
        align-items: stretch;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .wfp-hud-poi-rail {
        width: 100%;
        max-width: none;
        max-height: min(220px, 30vh);
    }
    .wfp-hud-location-tease {
        width: 100%;
        max-width: none;
    }
}
.wfp-hud-addr-panel {
    padding: 14px 14px 12px;
    border-radius: 12px;
    border: 1px solid rgba(107, 213, 171, 0.38);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(1.05);
    -webkit-backdrop-filter: blur(16px) saturate(1.05);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}
.wfp-hud-addr-panel__label {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 8px;
}
.wfp-hud-addr-panel__row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
}
.wfp-hud-addr-panel__row .map-search-bar__input {
    flex: 1 1 160px;
    min-width: 0;
    margin: 0;
}
.wfp-hud-addr-panel__row .map-search-bar__btn {
    min-height: 44px;
}
.wfp-hud-addr-panel__status {
    margin: 8px 0 4px;
    min-height: 1.3em;
}
.wfp-hud-addr-panel__status.wfp-hud-addr-panel__status--err {
    color: #ffc9c9;
}
.wfp-hud-addr-panel__close {
    width: 100%;
    margin-top: 6px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    background: rgba(0, 0, 0, 0.12) !important;
}
.wfp-hud-addr-panel__close:hover {
    border-color: rgba(212, 175, 55, 0.45) !important;
    color: #fff !important;
}
.wfp-hud-location-tease__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(12, 18, 16, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.wfp-hud-location-tease__trigger i {
    color: var(--primary-gold);
    font-size: 1rem;
}
.wfp-hud-location-tease__trigger:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(24, 40, 34, 0.75);
}
.wfp-hud-location-tease__trigger:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 3px;
}
.wfp-hud-location-tease__trigger[aria-expanded='true'] {
    border-color: rgba(107, 213, 171, 0.55);
    background: rgba(20, 36, 30, 0.82);
}

/* HUD map: POI markers (Font Awesome in Leaflet divIcon) */
.leaflet-div-icon.wfp-hud-poi-divicon {
    background: transparent !important;
    border: none !important;
}
.wfp-hud-poi-divicon .wfp-hud-poi-pin {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid;
    box-sizing: border-box;
    background: rgba(10, 16, 14, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.48);
}
.wfp-hud-poi-divicon .wfp-hud-poi-pin i {
    font-size: 0.78rem;
    line-height: 1;
    color: #fff;
    text-shadow:
        0 0 2px #000,
        0 1px 2px rgba(0, 0, 0, 0.65);
}

/* HUD map: OSM POI names — white + mint accent, black text outline (Overpass tooltips) */
.leaflet-tooltip.wfp-hud-poi-tt {
    margin-top: -6px !important;
    padding: 5px 11px 6px;
    border: 1px solid rgba(107, 213, 171, 0.88);
    border-radius: 10px;
    background: rgba(4, 10, 8, 0.55) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff !important;
    -webkit-text-stroke: 0.55px #000000;
    paint-order: stroke fill;
    text-shadow:
        0 0 1px #000,
        0 0 2px #000,
        1px 0 0 #000,
        -1px 0 0 #000,
        0 1px 0 #000,
        0 -1px 0 #000,
        1px 1px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 0 10px rgba(107, 213, 171, 0.45);
    font-family: 'League Spartan', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: none;
    line-height: 1.25;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.7),
        0 0 14px rgba(107, 213, 171, 0.22),
        0 6px 16px rgba(0, 0, 0, 0.42);
    white-space: nowrap;
    max-width: min(240px, 46vw);
    overflow: hidden;
    text-overflow: ellipsis;
}
.leaflet-tooltip.wfp-hud-poi-tt::before {
    border-top-color: rgba(4, 10, 8, 0.82) !important;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.65));
}
.leaflet-tooltip-bottom.wfp-hud-poi-tt::before {
    border-bottom-color: rgba(4, 10, 8, 0.82) !important;
}
.leaflet-tooltip-left.wfp-hud-poi-tt::before {
    border-left-color: rgba(4, 10, 8, 0.82) !important;
}
.leaflet-tooltip-right.wfp-hud-poi-tt::before {
    border-right-color: rgba(4, 10, 8, 0.82) !important;
}

@media (max-width: 768px) {
    .wfp-hud-panels {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 8px;
        overflow-y: auto;
        max-height: calc(100vh - 88px);
        pointer-events: auto;
    }
    .wfp-hud-widget {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        max-width: 100%;
        max-height: none;
    }
    .wfp-hud-widget--detail {
        order: 1;
    }
    .wfp-hud-ui {
        pointer-events: auto;
    }
}

/* ——— Mobile: account-only nav, intro splash, order cover-flow ——— */
@media (max-width: 991px) {
    /* Flex column: explicit order on hero rows; other bento cells must not stay order:0 or they render above the hero (0 sorts before 1). */
    .bento-wrapper {
        display: flex;
        flex-direction: column;
    }
    .bento-wrapper > .bento-item {
        order: 10;
    }
    .item-hero-intro {
        order: 1;
    }
    .item-hero {
        order: 2;
    }
    .item-hero-bg-addr {
        order: 3;
    }
    #navbar-header .navbar-toggler {
        display: none !important;
    }
    #navbar-header #navbarSupportedContent.collapse:not(.show) {
        display: none !important;
    }
    #navbar-header #navbarSupportedContent {
        display: none !important;
        height: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
    }
    .wfp-mobile-nav-pair {
        gap: 8px;
        margin-left: auto;
        margin-right: 10px;
        flex-shrink: 0;
    }
    .wfp-mobile-nav-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        border-radius: 999px;
        font-family: 'League Spartan', sans-serif;
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-decoration: none !important;
        white-space: nowrap;
        border: 1px solid rgba(107, 213, 171, 0.55);
        background: rgba(107, 213, 171, 0.18);
        color: var(--shell-text) !important;
    }
    .wfp-mobile-nav-pill--outline {
        background: transparent;
        border-color: var(--shell-border-strong);
    }
    .wfp-mobile-nav-pill:active {
        transform: scale(0.98);
    }
}

@media (min-width: 992px) {
    .wfp-mobile-nav-pair {
        display: none !important;
    }
}

#globalBgMap {
    transition: opacity 2.8s ease;
}

body.wfp-mobile-cinematic-splash #navbar-header {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

body.wfp-mobile-cinematic-reveal #navbar-header {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 1.4s ease;
}

body.wfp-mobile-cinematic-splash .sub-header-bar,
body.wfp-mobile-cinematic-reveal .sub-header-bar,
body.wfp-mobile-cinematic-map-in .sub-header-bar {
    z-index: 1060;
}

body.wfp-mobile-cinematic-scroll-lock .consult-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.wfp-mobile-cinematic-scroll-lock:not(.wfp-mobile-cinematic-map-in) #globalBgMap {
    opacity: 0.58;
}

body.wfp-mobile-cinematic-map-in #globalBgMap {
    opacity: 1;
}

.wfp-mobile-cinematic-root {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--wfp-mobile-splash-offset, 104px);
    bottom: 0;
    z-index: 1055;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 42%, #ffffff 0%, #fafafa 55%, #f4f4f4 100%);
    pointer-events: none;
}

.wfp-mobile-cinematic-skip {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    pointer-events: auto;
    border: 1px solid rgba(20, 34, 30, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: #14221e;
    border-radius: 999px;
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
}

.wfp-mobile-cinematic-splash__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px;
}

.wfp-mobile-cinematic-splash__logo {
    width: min(280px, 72vw);
    height: auto;
    opacity: 0;
    transform: scale(0.96);
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.08));
    transition:
        opacity 0.55s ease-out,
        transform 0.55s cubic-bezier(0.22, 0.82, 0.22, 1);
}

.wfp-mobile-cinematic-root.is-visible .wfp-mobile-cinematic-splash__logo {
    opacity: 1;
    transform: scale(1);
}

.wfp-mobile-cinematic-root.is-exit .wfp-mobile-cinematic-splash__logo {
    opacity: 0;
    transform: scale(1.02);
    transition:
        opacity 0.65s ease-in,
        transform 0.65s ease-in;
}

/* Keep a hint of the model visible — avoids “empty black card” before reveal */
body.wfp-mobile-cinematic-scroll-lock:not(.wfp-mobile-cinematic-reveal) .item-hero .hero-model-card #globalBgSketchfab {
    opacity: 0.42;
    transform: scale(0.94);
    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(0.22, 0.82, 0.22, 1);
}

body.wfp-mobile-cinematic-reveal .item-hero .hero-model-card #globalBgSketchfab {
    opacity: 1;
    transform: scale(1);
    transition:
        opacity 1.55s ease-out,
        transform 1.55s cubic-bezier(0.22, 0.82, 0.22, 1);
}

.order-flow-modal--pick .order-flow-modal__body {
    overflow-x: hidden;
}

@media (max-width: 991px) {
    .order-flow-modal--pick .wfp-strip--order-pick {
        margin: 2px -4px 0;
    }
    .order-flow-modal--pick .wfp-strip__stage {
        position: relative;
    }
    .order-flow-modal--pick .wfp-strip__track.pricing-grid {
        padding: 18px 10px 26px;
        margin: 0;
        gap: 8px;
    }
    .order-flow-modal--pick .wfp-strip__track .hero-flow-svc-card {
        flex: 0 0 clamp(228px, 72vw, 300px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        min-height: 0;
    }
    .order-flow-modal--pick .wfp-strip__hint {
        color: rgba(20, 34, 30, 0.58);
    }
    .order-flow-modal--pick .wfp-strip__chev {
        color: #14221e;
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(20, 34, 30, 0.14);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    }
    .order-flow-modal--pick .wfp-strip__dot {
        border-color: rgba(20, 34, 30, 0.22);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wfp-mobile-cinematic-splash__logo,
    #globalBgMap {
        transition-duration: 0.01ms !important;
    }
    .item-hero .hero-model-card #globalBgSketchfab,
    .item-hero.wfp-mobile-hero-reveal .hero-model-card #globalBgSketchfab {
        transition-duration: 0.01ms !important;
    }
    .consult-leaflet-pin::before,
    .consult-leaflet-pin::after,
    .hero-model-hint__icon,
    .embed-demo-stage.is-demo-running .embed-demo-cursor,
    .embed-demo-stage.is-demo-running .embed-demo-chip-ghost {
        animation: none !important;
    }
}
