:root {
    /* ===== LIGHT ZONES · warm porcelain + oxblood crimson =====
       All colour flows from these tokens. To re-skin the whole site,
       change the values here (and in the dark-zone block below) only. */
    --black: #F7F4F1;
    /* page background — warm porcelain */
    --obsidian: #F0EBE4;
    /* secondary section background */
    --carbon: #FFFFFF;
    /* raised cards */
    --graphite: #E6DFD6;
    /* warm hairline surface */
    --ivory: #1A1512;
    /* primary text — warm near-black */
    --ivory-dim: #6B625B;
    /* dimmed text */
    --slate: #948B82;
    /* mutest text */
    --gold: #B00E1B;
    /* primary accent — deep crimson */
    --gold-soft: #C1121F;
    /* accent highlight / hover */
    --gold-deep: #7C0B14;
    /* accent gradient base */
    --accent-rgb: 176, 14, 27;
    /* accent as RGB for glows */
    --line: rgba(26, 21, 18, .14);
    --line-soft: rgba(26, 21, 18, .08);
    --radius: 16px;
    --disp: 'Marcellus', serif;
    --si: 'Cormorant Garamond', serif;
    --body: 'Figtree', system-ui, sans-serif;
    --mono: 'IBM Plex Mono', monospace;
}

/* Dark zones — utility strip, header, cities ticker, hero, worldwide band,
   CTA band, footer, modal and mobile bar. These become dramatic warm-obsidian
   panels with a glowing crimson accent, bookending the bright content body. */
.util,
.topbar,
.cities,
.hero,
.page-hero,
.world,
.cta-band,
footer,
.modal,
.float-bar {
    --black: #0B090B;
    --obsidian: #110E12;
    --carbon: #171318;
    --graphite: #201B22;
    --ivory: #F5F1EC;
    --ivory-dim: #B3AAA3;
    --slate: #8A817A;
    --gold: #D42233;
    --gold-soft: #E2495A;
    --gold-deep: #8A0E1A;
    --accent-rgb: 212, 34, 51;
    --line: rgba(212, 34, 51, .20);
    --line-soft: rgba(245, 241, 236, .09);
    color: var(--ivory);
}

footer {
    background: var(--black);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--black);
    color: var(--ivory);
    font-family: var(--body);
    font-size: 16.5px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: var(--body)
}

h1,
h2,
h3 {
    font-family: var(--disp);
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: .01em
}

strong {
    color: var(--ivory);
    font-weight: 600
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 26px
}

.eyebrow {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent)
}

.eyebrow.center {
    justify-content: center
}

.eyebrow.center::after {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold))
}

section {
    padding: 96px 0;
    position: relative
}

.section-head {
    max-width: 780px;
    margin-bottom: 52px
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.section-head h2 {
    font-size: clamp(29px, 3.8vw, 44px);
    margin-bottom: 14px
}

.section-head p {
    color: var(--ivory-dim)
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px
}

.ph {
    position: relative;
    overflow: hidden;
    background: var(--graphite)
}

.ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.68) contrast(1.08) brightness(.9);
    transition: transform 1s cubic-bezier(.16, .6, .18, 1)
}

.ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 10, .05), rgba(8, 8, 10, .42));
    pointer-events: none
}

.ph:hover img {
    transform: scale(1.04)
}

.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s cubic-bezier(.16, .6, .18, 1), transform .85s cubic-bezier(.16, .6, .18, 1)
}

.rv.in {
    opacity: 1;
    transform: none
}

.rv.d1 {
    transition-delay: .08s
}

.rv.d2 {
    transition-delay: .16s
}

.rv.d3 {
    transition-delay: .24s
}

@media(prefers-reduced-motion:reduce) {
    .rv {
        opacity: 1;
        transform: none;
        transition: none
    }

    .ph img {
        transition: none
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .02em;
    transition: transform .25s, box-shadow .25s, border-color .25s, color .25s;
    cursor: pointer;
    border: 0;
    position: relative;
    overflow: hidden
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 52%, var(--gold-deep) 100%);
    color: #FFFFFF
}

.btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-20deg);
    transition: left .6s
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(var(--accent-rgb), .32)
}

.btn-gold:hover::before {
    left: 130%
}

.btn-ghost {
    border: 1px solid var(--line);
    color: var(--ivory);
    background: transparent
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-soft)
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--ivory-dim);
    border: 1px solid var(--line-soft);
    border-radius: 100px;
    padding: 9px 18px;
    transition: border-color .25s, color .25s, background .25s;
    margin: 4px 3px
}

.pill b {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--gold);
    font-weight: 500
}

.pill:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
    background: rgba(var(--accent-rgb), .06)
}

/* ===== utility strip + nav ===== */
.util {
    background: var(--obsidian);
    border-bottom: 1px solid var(--line-soft);
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.util .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    gap: 16px
}

.util .tag {
    color: var(--slate);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.util a {
    color: var(--gold-soft)
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 70;
    background: rgba(8, 8, 10, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-soft)
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.brand img {
    height: 44px;
    width: auto;
    display: block
}

.brand .mark {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .18em;
    color: var(--gold);
    border: 1px solid var(--line);
    padding: 5px 9px;
    border-radius: 6px
}

.brand .name {
    font-family: var(--disp);
    font-size: 18px;
    letter-spacing: .05em
}

.nav {
    display: flex;
    gap: 26px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ivory-dim)
}

.nav a {
    transition: color .2s;
    position: relative;
    white-space: nowrap
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s
}

.nav a:hover {
    color: var(--gold-soft)
}

.nav a:hover::after {
    width: 100%
}

/* ===== cities ticker ===== */
.cities {
    border-bottom: 1px solid var(--line-soft);
    background: var(--carbon);
    overflow: hidden
}

.cities-inner {
    display: flex;
    gap: 52px;
    white-space: nowrap;
    padding: 13px 0;
    animation: scroll 60s linear infinite;
    width: max-content;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--slate)
}

.cities-inner b {
    color: var(--gold);
    font-weight: 500
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@media(prefers-reduced-motion:reduce) {
    .cities-inner {
        animation: none;
        flex-wrap: wrap;
        white-space: normal;
        width: auto;
        padding: 12px 24px
    }
}

/* ===== hero ===== */
.hero {
    position: relative;
    min-height: 92svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0
}

.hero-media {
    position: absolute;
    inset: 0
}

.hero-media video,
.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.6) brightness(.44) contrast(1.1)
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1000px 540px at 22% 30%, rgba(var(--accent-rgb), .12), transparent 62%),
        linear-gradient(90deg, rgba(8, 8, 10, .9) 0%, rgba(8, 8, 10, .62) 52%, rgba(8, 8, 10, .3) 100%),
        linear-gradient(0deg, var(--black) 0%, transparent 26%)
}

.hero .wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center;
    width: 100%
}

.hero h1 {
    font-size: clamp(34px, 4.6vw, 58px);
    margin-bottom: 14px
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-soft)
}

.hero .sub-h {
    font-family: var(--si);
    font-style: italic;
    font-size: clamp(19px, 2.1vw, 24px);
    color: var(--gold-soft);
    margin-bottom: 22px
}

.hero-sub {
    color: var(--ivory-dim);
    font-size: 17.5px;
    max-width: 560px;
    margin-bottom: 30px
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line-soft);
    background: rgba(12, 12, 14, .55);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 12px 18px
}

.badge .b-ic {
    font-size: 17px;
    color: var(--gold)
}

.badge div {
    line-height: 1.3
}

.badge b {
    display: block;
    font-size: 13.5px;
    font-weight: 600
}

.badge span {
    font-size: 11.5px;
    color: var(--slate);
    font-family: var(--mono);
    letter-spacing: .08em;
    text-transform: uppercase
}

/* quote form */
.quote-card {
    background: linear-gradient(165deg, rgba(34, 27, 32, .74), rgba(16, 13, 17, .94));
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 34px 32px;
    box-shadow: 0 38px 100px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(243, 243, 245, .06)
}

.quote-card .tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px
}

.quote-card h3 {
    font-size: 24px;
    margin-bottom: 4px
}

.quote-card>p {
    color: var(--ivory-dim);
    font-size: 14px;
    margin-bottom: 22px
}

.qgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-bottom: 16px
}

.qgrid .full {
    grid-column: 1/-1
}

.field label {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 7px
}

.field input,
.field select {
    background: rgba(8, 8, 10, .62);
    border: 1px solid var(--line-soft);
    border-radius: 9px;
    padding: 13px 14px;
    color: var(--ivory);
    font-family: var(--body);
    font-size: 14.5px;
    transition: border-color .25s;
    appearance: none;
    width: 100%
}

.field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%23D62828'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center
}

.field input:focus,
.field select:focus {
    border-color: var(--gold);
    outline: none
}

.field input::placeholder {
    color: var(--slate)
}

.quote-card .btn {
    width: 100%
}

.q-note {
    text-align: center;
    font-size: 12px;
    color: var(--slate);
    margin-top: 12px
}

.q-note a {
    color: var(--gold-soft);
    border-bottom: 1px solid var(--line)
}

.q-done {
    display: none;
    text-align: center;
    padding: 26px 6px
}

.q-done .big {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 12px
}

.q-done h4 {
    font-family: var(--disp);
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 8px
}

.q-done p {
    color: var(--ivory-dim);
    font-size: 14px;
    margin-bottom: 18px
}

/* ===== stats ===== */
.stats {
    background: var(--obsidian);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 54px 0
}

.stats .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    text-align: center
}

.stat b {
    display: block;
    font-family: var(--disp);
    font-size: clamp(34px, 3.6vw, 48px);
    color: var(--gold-soft);
    font-weight: 400;
    line-height: 1
}

.stat span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--slate);
    display: block;
    margin-top: 10px
}

.stat b .count {
    font-family: var(--disp);
    font-size: inherit;
    letter-spacing: 0;
    text-transform: none;
    color: inherit;
    display: inline;
    margin: 0
}

/* ===== intro copy ===== */
.intro {
    padding: 90px 0 70px
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 56px;
    align-items: center
}

.intro h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    margin-bottom: 20px
}

.intro p {
    color: var(--ivory-dim);
    margin-bottom: 16px;
    font-size: 16px
}

.intro .ph {
    border-radius: var(--radius);
    aspect-ratio: 4/4.4;
    border: 1px solid var(--line-soft)
}

.mission {
    border-left: 2px solid var(--gold);
    padding: 6px 0 6px 22px;
    margin-top: 26px;
    font-family: var(--si);
    font-style: italic;
    font-size: 19px;
    color: var(--gold-soft)
}

.mission small {
    display: block;
    font-family: var(--mono);
    font-style: normal;
    font-size: 10.5px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 10px
}

/* ===== fleet ===== */
.fleet {
    background: var(--obsidian);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft)
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.f-card {
    background: var(--carbon);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, transform .3s
}

.f-card:hover {
    border-color: var(--line);
    transform: translateY(-4px)
}

.f-card .ph {
    aspect-ratio: 16/9
}

.f-card .floor-glow {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 5%;
    height: 54px;
    background: radial-gradient(closest-side, rgba(var(--accent-rgb), .26), transparent 72%);
    filter: blur(13px);
    z-index: 2;
    pointer-events: none
}

.badge-360 {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .18em;
    color: var(--ivory);
    background: rgba(8, 8, 10, .62);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .25s, color .25s
}

.badge-360:hover {
    background: rgba(var(--accent-rgb), .24);
    color: var(--gold-soft)
}

.f-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.f-body .cls {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px
}

.f-body h3 {
    font-size: 22px;
    margin-bottom: 4px
}

.f-body .finish {
    font-family: var(--si);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-soft);
    margin-bottom: 14px
}

.f-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px
}

.f-tags span {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    padding: 5px 10px
}

.f-spec {
    display: flex;
    gap: 26px;
    border-top: 1px solid var(--line-soft);
    padding-top: 16px;
    margin-top: auto;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .12em;
    color: var(--slate);
    text-transform: uppercase
}

.f-spec b {
    display: block;
    font-family: var(--disp);
    font-size: 20px;
    color: var(--ivory);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    margin-top: 3px
}

.f-act {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

.f-act .btn {
    flex: 1
}

.compare {
    margin-top: 56px
}

.compare h3 {
    font-size: 24px;
    margin-bottom: 22px
}

.compare-scroll {
    overflow-x: auto;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius)
}

table.cmp {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
    background: var(--carbon)
}

.cmp th,
.cmp td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px
}

.cmp thead th {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(var(--accent-rgb), .06)
}

.cmp tbody th {
    font-weight: 600;
    color: var(--ivory);
    font-family: var(--body)
}

.cmp td {
    color: var(--ivory-dim)
}

.cmp td.yes {
    color: var(--gold-soft)
}

.cmp tr:last-child th,
.cmp tr:last-child td {
    border-bottom: 0
}

/* ===== 360 modal ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(5, 5, 6, .92);
    backdrop-filter: blur(12px);
    padding: 20px
}

.modal.open {
    display: flex
}

.modal-box {
    width: min(1000px, 100%);
    max-height: 94vh;
    overflow: auto;
    background: var(--carbon);
    border: 1px solid var(--line);
    border-radius: var(--radius)
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--line-soft);
    position: sticky;
    top: 0;
    background: var(--carbon);
    z-index: 2
}

.modal-head h3 {
    font-size: 20px
}

.modal-head .hint {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold)
}

.modal-close {
    background: none;
    border: 1px solid var(--line-soft);
    color: var(--ivory);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 17px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    flex-shrink: 0
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--gold-soft)
}

.viewer-tabs {
    display: flex;
    gap: 6px;
    padding: 12px 28px 0;
    border-bottom: 1px solid var(--line-soft);
    flex-wrap: wrap
}

.viewer-tabs button {
    background: none;
    border: 0;
    color: var(--slate);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color .25s, border-color .25s
}

.viewer-tabs button.on {
    color: var(--gold-soft);
    border-color: var(--gold)
}

.pane {
    display: none
}

.pane.on {
    display: block
}

.spin-stage {
    position: relative;
    aspect-ratio: 16/9;
    background: radial-gradient(720px 300px at 50% 100%, rgba(var(--accent-rgb), .13), transparent 65%), var(--black);
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    overflow: hidden
}

.spin-stage:active {
    cursor: grabbing
}

.spin-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .16s;
    filter: saturate(.7) contrast(1.07) brightness(.94);
    pointer-events: none;
    transform-origin: center
}

.spin-stage img.on {
    opacity: 1
}

.spin-tools {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 3
}

.spin-tools button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(8, 8, 10, .65);
    color: var(--gold-soft);
    font-size: 17px;
    cursor: pointer;
    transition: background .2s
}

.spin-tools button:hover {
    background: rgba(var(--accent-rgb), .22)
}

.spin-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 28px;
    border-top: 1px solid var(--line-soft);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--slate)
}

.spin-drag {
    color: var(--gold-soft)
}

.gal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px
}

.gal .ph {
    aspect-ratio: 16/10
}

.seat-pane {
    padding: 40px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.seat-pane svg {
    width: 100%;
    height: auto;
    max-width: 360px;
    margin: 0 auto;
    display: block
}

.seat-notes h4 {
    font-family: var(--disp);
    font-size: 21px;
    margin-bottom: 12px;
    font-weight: 400
}

.seat-notes ul {
    list-style: none;
    font-size: 14px;
    color: var(--ivory-dim)
}

.seat-notes li {
    padding: 7px 0;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--line-soft)
}

.seat-notes li::before {
    content: "—";
    color: var(--gold)
}

.amen {
    padding: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.amen div {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    padding: 18px 20px;
    background: var(--obsidian)
}

.amen b {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 7px;
    font-weight: 500
}

.amen span {
    font-size: 13.5px;
    color: var(--ivory-dim)
}

/* ===== video ===== */
.video-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    aspect-ratio: 16/8;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .5)
}

.video-frame video,
.video-frame .poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-frame .poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.6) brightness(.55)
}

.video-veil {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(0deg, rgba(8, 8, 10, .6), rgba(8, 8, 10, .15));
    cursor: pointer;
    transition: opacity .4s
}

.play-btn {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 10, .5);
    transition: transform .25s, background .25s
}

.play-btn svg {
    margin-left: 5px
}

.video-veil:hover .play-btn {
    transform: scale(1.07);
    background: rgba(var(--accent-rgb), .2)
}

.video-veil .cap {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .3em;
    text-transform: uppercase
}

.video-veil .sub {
    font-size: 13.5px;
    color: var(--ivory-dim);
    margin-top: -8px
}

/* ===== long-form service rows ===== */
.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 64px 0;
    border-top: 1px solid var(--line-soft)
}

.svc-row:first-of-type {
    border-top: 0;
    padding-top: 0
}

.svc-row .ph {
    border-radius: var(--radius);
    aspect-ratio: 16/11;
    border: 1px solid var(--line-soft)
}

.svc-row.flip .ph {
    order: 2
}

.svc-row h3 {
    font-size: clamp(24px, 2.8vw, 32px);
    margin-bottom: 6px
}

.svc-row .kicker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px
}

.svc-row h4 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--body);
    color: var(--gold-soft);
    margin: 18px 0 6px
}

.svc-row p {
    color: var(--ivory-dim);
    font-size: 15px
}

.svc-row .more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-soft);
    border-bottom: 1px solid var(--line);
    padding-bottom: 4px
}

/* ===== why grid ===== */
.why {
    background: var(--obsidian);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.why-item {
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 24px 24px;
    background: linear-gradient(170deg, var(--carbon), var(--obsidian));
    transition: border-color .3s, transform .3s
}

.why-item:hover {
    border-color: var(--line);
    transform: translateY(-3px)
}

.why-item .n {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: .18em;
    display: block;
    margin-bottom: 12px
}

.why-item h3 {
    font-size: 17px;
    margin-bottom: 6px;
    font-family: var(--body);
    font-weight: 600
}

.why-item p {
    font-size: 13.5px;
    color: var(--ivory-dim)
}

/* ===== steps ===== */
.steps {
    counter-reset: step
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.step {
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 26px 22px;
    background: var(--carbon);
    position: relative
}

.step .num {
    font-family: var(--disp);
    font-size: 38px;
    color: var(--gold);
    opacity: .85;
    line-height: 1;
    margin-bottom: 14px
}

.step h3 {
    font-size: 16.5px;
    font-family: var(--body);
    font-weight: 600;
    margin-bottom: 6px
}

.step p {
    font-size: 13.5px;
    color: var(--ivory-dim)
}

/* ===== airports ===== */
.airports {
    background: var(--obsidian);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft)
}

.ap-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--slate);
    margin: 34px 0 14px
}

.ap-label:first-of-type {
    margin-top: 0
}

.snapshot {
    margin-top: 60px
}

.snapshot h3 {
    font-size: 24px;
    margin-bottom: 8px
}

.snapshot>p {
    color: var(--ivory-dim);
    font-size: 14.5px;
    max-width: 720px;
    margin-bottom: 26px
}

.snap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.snap {
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--carbon);
    padding: 24px 24px
}

.snap .code {
    font-family: var(--mono);
    font-size: 30px;
    letter-spacing: .1em;
    color: var(--gold);
    line-height: 1
}

.snap .apname {
    font-size: 13px;
    color: var(--ivory-dim);
    margin: 6px 0 16px
}

.snap dl {
    font-size: 13px
}

.snap dt {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 12px
}

.snap dd {
    color: var(--ivory);
    font-weight: 600;
    font-size: 14.5px
}

.snap .ok {
    color: var(--gold-soft)
}

.snap-note {
    font-size: 12px;
    color: var(--slate);
    margin-top: 16px
}

.snap-clock {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    color: var(--slate);
    text-transform: uppercase;
    margin-top: 20px
}

/* ===== areas ===== */
.areas .region {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 40px;
    padding: 32px 0;
    border-top: 1px solid var(--line-soft)
}

.areas .region:last-child {
    border-bottom: 1px solid var(--line-soft)
}

.region h3 {
    font-size: 22px;
    margin-bottom: 4px
}

.region .meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--slate);
    text-transform: uppercase
}

.region p.blurb {
    color: var(--ivory-dim);
    font-size: 14px;
    margin-top: 9px;
    max-width: 250px
}

.towns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: flex-start
}

.towns span {
    font-size: 13.5px;
    color: var(--ivory-dim);
    border: 1px solid var(--line-soft);
    border-radius: 100px;
    padding: 6px 15px;
    transition: border-color .2s, color .2s
}

.towns span:hover {
    border-color: var(--gold);
    color: var(--gold-soft)
}

/* ===== reviews ===== */
.testi {
    background: var(--obsidian);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.t-card {
    background: var(--black);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 28px 28px;
    position: relative;
    break-inside: avoid
}

.t-card::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    right: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 84px;
    color: rgba(var(--accent-rgb), .13);
    line-height: 1
}

.t-card .stars {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 14px
}

.t-card p {
    font-size: 14.5px;
    color: var(--ivory-dim);
    margin-bottom: 18px
}

.t-card .who {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--slate);
    text-transform: uppercase
}

/* ===== world ===== */
.world {
    text-align: center;
    background: radial-gradient(1000px 520px at 50% 0%, rgba(var(--accent-rgb), .06), transparent 60%), var(--black)
}

.map-frame {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: var(--obsidian);
    padding: 28px;
    overflow: hidden
}

.map-frame svg {
    width: 100%;
    height: auto;
    display: block
}

.node {
    fill: var(--gold)
}

.node-halo {
    fill: none;
    stroke: var(--gold);
    opacity: .6;
    animation: halo 3s ease-out infinite
}

@keyframes halo {
    0% {
        r: 3;
        opacity: .7
    }

    100% {
        r: 16;
        opacity: 0
    }
}

.route {
    fill: none;
    stroke: url(#routeGrad);
    stroke-width: 1;
    stroke-dasharray: 4 6;
    animation: routeFlow 30s linear infinite;
    opacity: .7
}

@keyframes routeFlow {
    to {
        stroke-dashoffset: -600
    }
}

@media(prefers-reduced-motion:reduce) {

    .node-halo,
    .route {
        animation: none
    }
}

.grat {
    stroke: rgba(243, 243, 245, .05);
    stroke-width: 1;
    fill: none
}

.city-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    fill: #ABABB0
}

.city-pills {
    margin-top: 28px
}

/* ===== seo blocks ===== */
.seo-blocks .blk {
    max-width: 900px;
    margin: 0 auto 54px
}

.seo-blocks .blk:last-child {
    margin-bottom: 0
}

.seo-blocks h2 {
    font-size: clamp(23px, 2.8vw, 30px);
    margin-bottom: 16px
}

.seo-blocks p {
    color: var(--ivory-dim);
    font-size: 15px;
    margin-bottom: 14px
}

.seo-blocks .more {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-soft);
    border-bottom: 1px solid var(--line);
    padding-bottom: 3px
}

/* ===== faq ===== */
.faq details {
    border-bottom: 1px solid var(--line-soft)
}

.faq details:first-of-type {
    border-top: 1px solid var(--line-soft)
}

.faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 22px 4px;
    font-size: 17px;
    font-weight: 500
}

.faq summary::-webkit-details-marker {
    display: none
}

.faq summary::after {
    content: "+";
    font-family: var(--mono);
    color: var(--gold);
    font-size: 21px;
    transition: transform .25s
}

.faq details[open] summary::after {
    transform: rotate(45deg)
}

.faq .a {
    padding: 0 4px 24px;
    color: var(--ivory-dim);
    max-width: 820px;
    font-size: 15px
}

/* ===== cta band ===== */
.cta-band {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.cta-band .ph {
    position: absolute;
    inset: 0
}

.cta-band .ph::after {
    background: linear-gradient(0deg, rgba(8, 8, 10, .92), rgba(8, 8, 10, .78))
}

.cta-band .wrap {
    position: relative;
    z-index: 1
}

.cta-band h2 {
    font-size: clamp(30px, 4.4vw, 50px);
    margin-bottom: 12px
}

.cta-band p {
    color: var(--ivory-dim);
    margin-bottom: 30px;
    font-size: 17px
}

.cta-band .hero-ctas {
    justify-content: center;
    margin-bottom: 0
}

/* ===== footer ===== */
footer {
    padding: 70px 0 120px;
    border-top: 1px solid var(--line-soft);
    font-size: 13.5px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 46px
}

.foot-grid h4 {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500
}

.foot-grid ul {
    list-style: none
}

.foot-grid li {
    padding: 4.5px 0;
    color: var(--ivory-dim)
}

.foot-grid li a:hover {
    color: var(--gold-soft)
}

.foot-brand p {
    color: var(--slate);
    margin: 14px 0;
    max-width: 320px
}

.phone-link {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--gold-soft);
    letter-spacing: .03em
}

.foot-bottom {
    border-top: 1px solid var(--line-soft);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--slate);
    font-size: 12.5px
}

/* ===== floating mobile bar ===== */
.float-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    display: none;
    gap: 10px;
    background: rgba(13, 13, 15, .86);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55)
}

.float-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 10px;
    border-radius: 11px;
    font-weight: 600;
    font-size: 14px
}

.float-bar .f-call {
    border: 1px solid var(--line);
    color: var(--gold-soft)
}

.float-bar .f-book {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
    color: #FFFFFF
}

/* ===== responsive ===== */
@media(max-width:1060px) {
    .nav {
        display: none
    }

    .hero .wrap {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .stats .wrap {
        grid-template-columns: repeat(2, 1fr)
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .intro .ph {
        aspect-ratio: 16/10
    }

    .fleet-grid {
        grid-template-columns: 1fr
    }

    .svc-row,
    .svc-row.flip {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .svc-row.flip .ph {
        order: 0
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .snap-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .seat-pane {
        grid-template-columns: 1fr
    }

    .amen {
        grid-template-columns: repeat(2, 1fr)
    }

    .gal {
        grid-template-columns: 1fr
    }

    .video-frame {
        aspect-ratio: 16/10
    }

    .util .tag {
        display: none
    }
}

@media(max-width:640px) {
    section {
        padding: 68px 0
    }

    .topbar .phone-link,
    .topbar .btn {
        display: none
    }

    .float-bar {
        display: flex
    }

    .qgrid {
        grid-template-columns: 1fr
    }

    .why-grid,
    .steps-grid,
    .snap-grid {
        grid-template-columns: 1fr
    }

    .areas .region {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .foot-grid {
        grid-template-columns: 1fr
    }

    .video-frame {
        aspect-ratio: 4/5
    }

    .amen {
        grid-template-columns: 1fr;
        padding: 24px
    }

    .hero-ctas .btn {
        width: 100%
    }

    .stats .wrap {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }
}
/* ===== mobile navigation (hamburger) ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0 9px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    transition: border-color .25s
}

.nav-toggle:hover {
    border-color: var(--gold)
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--ivory);
    border-radius: 2px;
    transition: transform .3s cubic-bezier(.16, .6, .18, 1), opacity .2s
}

.nav-toggle.on span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
}

.nav-toggle.on span:nth-child(2) {
    opacity: 0
}

.nav-toggle.on span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 8px 26px 22px;
    background: rgba(11, 9, 11, .97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s ease, transform .3s cubic-bezier(.16, .6, .18, 1), visibility .3s
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none
}

.mobile-nav a {
    padding: 15px 4px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ivory-dim);
    border-bottom: 1px solid var(--line-soft);
    transition: color .2s, padding-left .2s
}

.mobile-nav a:hover {
    color: var(--gold-soft);
    padding-left: 10px
}

.mobile-nav-cta {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    border-bottom: 0
}

.mobile-nav-cta .btn {
    flex: 1;
    display: inline-flex
}

@media(max-width:1060px) {
    .nav-toggle {
        display: flex
    }
}

/* ===== footer NAP + legal (shared) ===== */
.foot-nap {
    font-style: normal;
    margin-top: 18px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--ivory-dim)
}

.foot-nap .nap-name {
    display: block;
    font-family: var(--disp);
    font-size: 15px;
    letter-spacing: .04em;
    color: var(--ivory);
    margin-bottom: 4px
}

.foot-nap .phone-link {
    display: inline-block;
    margin-top: 8px
}

.foot-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    order: 2
}

.foot-legal a {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--slate);
    transition: color .2s
}

.foot-legal a:hover {
    color: var(--gold-soft)
}

@media(max-width:760px) {
    .foot-legal {
        order: 0;
        justify-content: flex-start
    }
}

/* ===== Moovs booking widget (replaces quote form) ===== */
.moovs-embed {
    width: 100%;
}

.moovs-embed iframe {
    width: 100%;
    height: 700px;
    border: 0;
    border-radius: 12px;
    display: block;
    background: #fff;
}

@media (max-width: 1060px) {
    .moovs-embed iframe {
        height: 860px;
    }
}

@media (max-width: 640px) {
    .moovs-embed iframe {
        height: 960px;
    }
}
