/* ==========================================================================
   Book Denver Limo — Luxury dark + champagne gold theme
   ========================================================================== */

:root {
    --bg: #08090c;
    --bg-soft: #0d0f15;
    --surface: #11141c;
    --card: #141826;
    --line: rgba(201, 164, 92, 0.18);
    --gold: #c9a45c;
    --gold-light: #e8c77f;
    --gold-deep: #9a7634;
    --text: #f3efe6;
    --muted: #a4a9b4;
    --grad-gold: linear-gradient(120deg, #efd9a7 0%, #c9a45c 45%, #8e6b2e 100%);
    --font-display: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius: 18px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    --container: 1180px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: var(--gold-light); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.center { text-align: center; margin-top: 48px; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--gold); color: #000; padding: 10px 18px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; }

h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 600; }

.gold {
    background: var(--grad-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
    to { background-position: 200% center; }
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section { padding: 110px 0; position: relative; }

.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-gold {
    background: var(--grad-gold);
    color: #14100a;
    box-shadow: 0 8px 28px rgba(201, 164, 92, 0.35);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201, 164, 92, 0.5);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-block { width: 100%; justify-content: center; }

/* ---------- Topbar ---------- */
.topbar {
    background: linear-gradient(90deg, rgba(201, 164, 92, 0.12), rgba(201, 164, 92, 0.04));
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.topbar-note { color: var(--muted); letter-spacing: 0.06em; }
.topbar-links { display: flex; gap: 10px; align-items: center; color: var(--gold-deep); white-space: nowrap; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 9, 12, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
    border-bottom-color: var(--line);
    background: rgba(8, 9, 12, 0.92);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}
.logo-text em { font-style: normal; color: var(--gold-light); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}
.nav-menu a {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
}
.nav-menu a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1.5px;
    background: var(--grad-gold);
    transition: width 0.3s ease;
}
.nav-menu a:not(.nav-cta):hover::after { width: 100%; }
.nav-menu a:hover { color: var(--gold-light); }

.nav-cta {
    padding: 10px 24px;
    border-radius: 999px;
    background: var(--grad-gold);
    color: #14100a !important;
    font-weight: 600;
}
.nav-cta:hover { box-shadow: 0 8px 24px rgba(201, 164, 92, 0.4); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}
.nav-toggle span {
    width: 26px; height: 2px;
    background: var(--gold-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(1100px 520px at 78% -10%, rgba(201, 164, 92, 0.14), transparent 60%),
        radial-gradient(800px 400px at 0% 110%, rgba(201, 164, 92, 0.07), transparent 60%),
        var(--bg);
}
.hero-glow {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 164, 92, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 164, 92, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 30%, transparent 75%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
}

.hero-sub {
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 520px;
    margin: 24px 0 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin-top: 42px;
    color: var(--muted);
    font-size: 0.86rem;
    letter-spacing: 0.06em;
}
.hero-trust li::first-letter { color: var(--gold); }

.hero-car { filter: drop-shadow(0 18px 40px rgba(201, 164, 92, 0.18)); }

/* ---------- Stats ---------- */
.stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stat { padding: 36px 12px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat span {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- Services ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.card {
    background: linear-gradient(160deg, var(--card), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 26px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 164, 92, 0.5);
    box-shadow: var(--shadow);
}
.card-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    background: rgba(201, 164, 92, 0.1);
    border: 1px solid var(--line);
    margin-bottom: 22px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; color: var(--text); }
.card p { color: var(--muted); font-size: 0.93rem; }

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

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

.fleet-card {
    background: linear-gradient(165deg, var(--card), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.fleet-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 164, 92, 0.5);
    box-shadow: var(--shadow);
}

.fleet-art {
    background:
        radial-gradient(420px 160px at 50% 100%, rgba(201, 164, 92, 0.12), transparent 70%),
        rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--line);
    padding: 26px 30px 10px;
}

.fleet-body { padding: 26px 30px 32px; }
.fleet-body h3 { margin-bottom: 8px; }
.fleet-body > p:last-child { color: var(--muted); font-size: 0.94rem; }

.fleet-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.fleet-meta span {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(201, 164, 92, 0.1);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 14px;
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
}

.about-copy h2 { margin-bottom: 22px; }
.about-copy > p { color: var(--muted); font-size: 1.05rem; }
.about-copy strong { color: var(--text); font-weight: 500; }

.check-list { list-style: none; margin: 30px 0 36px; display: grid; gap: 16px; }
.check-list li {
    position: relative;
    padding-left: 36px;
    color: var(--muted);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
}
.check-list strong { color: var(--text); font-weight: 500; }

.about-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.about-panel {
    background: linear-gradient(165deg, rgba(201, 164, 92, 0.12), rgba(201, 164, 92, 0.03));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 34px;
    position: sticky;
    top: 110px;
}
.about-panel blockquote p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.015em;
    color: var(--gold-light);
}
.about-panel blockquote footer {
    margin-top: 18px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.panel-facts {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 18px;
}
.panel-facts strong { display: block; font-weight: 500; }
.panel-facts span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Service areas ---------- */
.areas {
    background:
        radial-gradient(700px 300px at 50% 0%, rgba(201, 164, 92, 0.07), transparent 70%),
        var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.area-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}
.area-tags li {
    padding: 12px 26px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(201, 164, 92, 0.05);
    color: var(--text);
    font-size: 0.93rem;
    letter-spacing: 0.04em;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.area-tags li:hover {
    border-color: var(--gold);
    background: rgba(201, 164, 92, 0.12);
    transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */
.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quote-card {
    background: linear-gradient(160deg, var(--card), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.quote-card:hover { transform: translateY(-5px); border-color: rgba(201, 164, 92, 0.5); }

.stars { color: var(--gold); letter-spacing: 0.25em; margin-bottom: 18px; }
.quote-card blockquote {
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text);
}
.quote-card figcaption {
    margin-top: 20px;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }

.faq-list { display: grid; gap: 14px; }

.faq-list details {
    background: linear-gradient(160deg, var(--card), var(--surface));
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}
.faq-list details[open] { border-color: rgba(201, 164, 92, 0.5); }

.faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 56px 22px 26px;
    font-weight: 500;
    font-size: 1.02rem;
    position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-list details p {
    padding: 0 26px 24px;
    color: var(--muted);
    font-size: 0.96rem;
}

/* ---------- Quote / Contact ---------- */
.quote {
    background:
        radial-gradient(900px 420px at 100% 0%, rgba(201, 164, 92, 0.1), transparent 65%),
        var(--bg-soft);
    border-top: 1px solid var(--line);
}

.quote-grid-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.quote-copy h2 { margin-bottom: 20px; }
.quote-copy > p { color: var(--muted); font-size: 1.05rem; }

.contact-list { list-style: none; margin-top: 36px; display: grid; gap: 24px; }
.contact-list li { display: grid; gap: 4px; }
.contact-label {
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}
.contact-list a, .contact-list address {
    font-style: normal;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
}
.contact-list a:hover { color: var(--gold-light); }

.quote-form {
    background: linear-gradient(165deg, var(--card), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 34px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* simple contact form (/contact/) */
.contact-form .cf-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.contact-form .cf-submit { width: 100%; justify-content: center; }

.field { display: grid; gap: 8px; }
.field label {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}
.field input,
.field select,
.field textarea {
    width: 100%;
    background: rgba(8, 9, 12, 0.6);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.96rem;
    padding: 13px 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.18);
}
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(164, 169, 180, 0.5); }

/* date/time picker icons on dark bg */
.field input::-webkit-calendar-picker-indicator { filter: invert(0.75) sepia(0.4) saturate(3) hue-rotate(5deg); cursor: pointer; }

.form-hint { font-size: 0.82rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand .logo-text { margin-bottom: 16px; }
.footer-brand p:last-child { color: var(--muted); font-size: 0.92rem; max-width: 320px; }

.footer-col h4 {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 0.93rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { color: var(--muted); font-size: 0.93rem; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    padding-bottom: 26px;
    color: var(--muted);
    font-size: 0.82rem;
}

/* ---------- Floating call button ---------- */
.floating-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--grad-gold);
    color: #14100a;
    box-shadow: 0 10px 30px rgba(201, 164, 92, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-call:hover {
    transform: scale(1.08);
    color: #000;
    box-shadow: 0 14px 38px rgba(201, 164, 92, 0.6);
}

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation: none !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-art { max-width: 560px; margin: 0 auto; }
    .about-grid, .quote-grid-wrap { grid-template-columns: 1fr; gap: 44px; }
    .about-panel { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .topbar-note { display: none; }
    .topbar-inner { justify-content: center; }
    .topbar-links { flex-wrap: wrap; white-space: normal; justify-content: center; row-gap: 2px; }



    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(odd) { border-left: none; }
    .stat:nth-child(n+3) { border-top: 1px solid var(--line); }

    .quote-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .card-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding: 80px 0 64px; }
    .btn { width: 100%; justify-content: center; }
    .hero-actions { flex-direction: column; }
    .about-cta { flex-direction: column; }
}

/* ==========================================================================
   Multi-page components
   ========================================================================== */

/* ---------- Photo hero (homepage) ---------- */
.hero-photo {
    position: relative;
    background: var(--bg);
    overflow: hidden;
    min-height: 78vh;
    display: flex;
    align-items: center;
}
.hero-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center 65%;
    animation: kenburns 22s ease-in-out infinite alternate;
    will-change: transform;
}
.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(8, 9, 12, 0.70) 22%, rgba(8, 9, 12, 0.28) 68%, rgba(8, 9, 12, 0.30)),
        linear-gradient(0deg, rgba(8, 9, 12, 0.18), rgba(8, 9, 12, 0.03));
}
@keyframes kenburns {
    from { transform: scale(1); }
    to   { transform: scale(1.09); }
}
.hero-inner-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-mobile-art { display: none; }

/* ---------- Hero quick form (glassmorphism) ---------- */
.hero-quick {
    background: rgba(15, 17, 24, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(201, 164, 92, 0.3);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    padding: 30px 28px;
    display: grid;
    gap: 16px;
    max-width: 420px;
    justify-self: end;
    width: 100%;
}
.hq-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.hq-sub { color: var(--muted); font-size: 0.84rem; margin-top: -10px; }

/* staggered entrance for hero + page-hero content */
.hero-copy > *, .page-hero-copy > *, .page-hero-vehicle {
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.hero-copy > *:nth-child(2), .page-hero-copy > *:nth-child(2) { animation-delay: 0.1s; }
.hero-copy > *:nth-child(3), .page-hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(4), .page-hero-copy > *:nth-child(4) { animation-delay: 0.3s; }
.hero-copy > *:nth-child(5), .page-hero-copy > *:nth-child(5), .page-hero-vehicle { animation-delay: 0.4s; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}

/* ---------- Inner page hero ---------- */
.page-hero {
    background-image:
        linear-gradient(100deg, rgba(8, 9, 12, 0.68) 0%, rgba(8, 9, 12, 0.42) 48%, rgba(8, 9, 12, 0.16) 100%),
        linear-gradient(0deg, rgba(8, 9, 12, 0.20), rgba(8, 9, 12, 0.04)),
        var(--hero-img);
    background-size: cover;
    background-position: center;
    padding: 110px 0 90px;
    border-bottom: 1px solid var(--line);
}
.page-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
.page-hero.has-hero-vehicle .page-hero-layout {
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.76fr);
}
.page-hero-copy { max-width: 780px; }
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    max-width: 760px;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72);
}
.page-lede {
    color: #d1d5dc;
    font-size: 1.12rem;
    max-width: 640px;
    margin: 20px 0 34px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.breadcrumbs {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span[aria-hidden] { color: var(--gold-deep); }
.breadcrumbs > span:last-child { color: var(--gold-light); }

.page-hero-vehicle {
    position: relative;
    margin: 0;
    /* match the 1920x1080 photos so the vehicle is never cropped at the sides */
    align-self: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(232, 199, 127, 0.42);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(8, 9, 12, 0.52);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.page-hero-vehicle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-vehicle::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 34%),
        linear-gradient(0deg, rgba(8, 9, 12, 0.26), transparent 48%);
}

/* ---------- Content layout ---------- */
.content-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.prose h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin: 38px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-family: var(--font-display);
    font-size: clamp(1.18rem, 1.9vw, 1.4rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--text);
    margin: 26px 0 10px;
}
.prose p { color: var(--muted); font-size: 1.03rem; line-height: 1.75; margin-bottom: 14px; }
.prose a { color: var(--gold-light); border-bottom: 1px solid rgba(201, 164, 92, 0.4); }
.prose a:hover { border-bottom-color: var(--gold-light); }
.prose strong { color: var(--text); font-weight: 600; }
.prose ul, .prose ol { margin: 4px 0 22px; padding-left: 0; list-style: none; display: grid; gap: 11px; }
.prose ul li, .prose ol li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}
.prose ul li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}
.prose ol { counter-reset: pro-ol; }
.prose ol li { counter-increment: pro-ol; }
.prose ol li::before {
    content: counter(pro-ol);
    position: absolute;
    left: 0;
    top: 2px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: rgba(201, 164, 92, 0.16);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}
.prose li strong { color: var(--text); }
.prose .check-list { margin: 20px 0 28px; }
.prose .check-list li { padding-left: 30px; }
.prose .fleet-meta { margin-bottom: 26px; }
.section-head-left { text-align: left; margin-left: 0; margin-right: 0; max-width: 760px; }
.faq-section .faq-wrap { max-width: 900px; }

.img-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-top: 30px;
}
.img-frame img { width: 100%; height: auto; }
.service-detail-photo { margin: 0 0 34px; }

/* ---------- Sidebar ---------- */
.page-side { display: grid; gap: 24px; position: sticky; top: 110px; }
.side-card {
    background: linear-gradient(165deg, var(--card), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
}
.side-card h3 { margin-bottom: 16px; }
.side-phone { margin-bottom: 6px; }
.side-phone a {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--gold-light);
}
.side-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }
.side-list { gap: 12px !important; }
.side-list li { font-size: 0.93rem; padding-left: 30px; }

/* ---------- Photo cards / hub grids ---------- */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hub-grid.two { grid-template-columns: repeat(2, 1fr); }

.photo-card {
    display: block;
    background: linear-gradient(165deg, var(--card), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--text);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.photo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 164, 92, 0.55);
    box-shadow: var(--shadow);
    color: var(--text);
}
.pc-media {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #06070a;
}
.pc-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.84;
    filter: brightness(0.76) saturate(1.08);
    transition: transform 0.45s ease, filter 0.45s ease, opacity 0.45s ease;
}
.pc-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 9, 12, 0.02), rgba(8, 9, 12, 0.42));
    pointer-events: none;
}
.photo-card:hover .pc-bg {
    transform: scale(1.04);
    opacity: 0.92;
    filter: brightness(0.86) saturate(1.12);
}
.hub-grid.two .pc-media { height: 280px; }
.pc-body { padding: 24px 26px 28px; }
.pc-body h3 { margin-bottom: 8px; }
.pc-meta {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(201, 164, 92, 0.1);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 10px;
}
.pc-body p {
    color: var(--muted);
    font-size: 0.92rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--gold-light);
}

.related { background: var(--bg-soft); border-top: 1px solid var(--line); }

/* ---------- CTA band ---------- */
.cta-band {
    border-top: 1px solid var(--line);
    background:
        radial-gradient(800px 300px at 50% 120%, rgba(201, 164, 92, 0.16), transparent 70%),
        var(--bg-soft);
    padding: 70px 0;
}
.cta-band-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 8px; }
.cta-band p { color: var(--muted); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* area tags as links */
.area-tags li { padding: 0; }
.area-tags li a {
    display: inline-block;
    padding: 12px 26px;
    color: var(--text);
}
.area-tags li a:hover { color: var(--gold-light); }

/* ---------- Responsive additions ---------- */
@media (max-width: 1024px) {
    .hub-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; gap: 44px; }
    .page-side { position: static; }
    .page-hero.has-hero-vehicle .page-hero-layout { grid-template-columns: 1fr; }
    .page-hero-vehicle { max-width: 620px; }
}

@media (max-width: 1024px) {
    .nav-toggle { display: flex; }
    /* App-style slide-in drawer (position:fixed breaks inside the
       backdrop-filter sticky header, so it is anchored absolute). */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: min(320px, 84vw);
        height: calc(100vh - 64px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: #0b0d12;
        border-right: 1px solid var(--line);
        box-shadow: 40px 0 80px rgba(0, 0, 0, 0.6);
        padding: 8px 18px 26px;
        transform: translateX(-110%);
        transition: transform 0.38s cubic-bezier(0.2, 0.7, 0.3, 1);
        overflow-y: auto;
        z-index: 105;
    }
    .nav-menu.open { transform: translateX(0); }
    .drawer-head { display: block; padding: 16px 6px 10px; }
    .drawer-head span {
        font-size: 0.68rem;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 600;
    }
    .nav-menu li { border-bottom: 1px solid rgba(201, 164, 92, 0.08); }
    .nav-menu li.drawer-head, .nav-menu li.drawer-foot, .nav-menu li:nth-last-child(2) { border-bottom: none; }
    .nav-menu a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 15px 8px;
        font-size: 1rem;
        border-radius: 12px;
    }
    .nav-menu a:not(.nav-cta)::after { display: none; }
    .nav-menu a:active { background: rgba(201, 164, 92, 0.1); }
    .mi { display: inline-grid; place-items: center; width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; }
    .mi svg { width: 19px; height: 19px; }
    .nav-menu .nav-cta {
        margin-top: 18px;
        justify-content: center;
        text-align: center;
        padding: 14px 24px;
    }
    .drawer-foot { display: block; margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
    .drawer-foot p { text-align: center; color: var(--muted); font-size: 0.78rem; margin-top: 10px; }
    .mega { display: none; }
    .has-mega > a .caret { display: none; }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 64px 0 52px;
        background-image:
            linear-gradient(100deg, rgba(8, 9, 12, 0.66), rgba(8, 9, 12, 0.42)),
            linear-gradient(0deg, rgba(8, 9, 12, 0.32), rgba(8, 9, 12, 0.08)),
            var(--hero-img);
    }
    .page-hero h1 { overflow-wrap: break-word; }
    .page-lede { font-size: 1rem; }
    .hub-grid, .hub-grid.two { grid-template-columns: 1fr; }
    .page-hero-layout { gap: 28px; }
    .page-hero-vehicle,
    .page-hero-vehicle img {
        min-height: 0;
    }
    .pc-media,
    .hub-grid.two .pc-media {
        height: 235px;
    }
    /* .hero-photo banner handling lives in the max-width:1024 block above */
    .cta-band-inner { flex-direction: column; text-align: center; justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .topbar-links { white-space: normal; flex-wrap: wrap; justify-content: center; }
    .breadcrumbs { font-size: 0.76rem; }
}

/* ---------- Booking steps ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.step-card {
    background: linear-gradient(160deg, var(--card), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
}
.step-num {
    display: inline-grid;
    place-items: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #14100a;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 0.93rem; }

@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Blog ---------- */
.post-meta {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px !important;
}

/* ---------- Footer credit ---------- */
.footer-credit a { color: var(--gold-light); }
.footer-credit a:hover { color: #fff; }
.heart {
    display: inline-block;
    font-size: 1.25em;
    line-height: 1;
    animation: heartbeat 1.3s ease-in-out infinite;
    transform-origin: center;
}
@keyframes heartbeat {
    0%   { transform: scale(1); }
    14%  { transform: scale(1.35); }
    28%  { transform: scale(1); }
    42%  { transform: scale(1.25); }
    70%  { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
    .heart { animation: none; }
}

/* ==========================================================================
   Form icons + booking wizard
   ========================================================================== */

.iwrap { position: relative; }
.iwrap > svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--gold);
    opacity: 0.85;
    pointer-events: none;
}
.iwrap textarea ~ svg, .iwrap > svg:has(~ textarea) { top: 22px; transform: none; }
.iwrap input, .iwrap select, .iwrap textarea { padding-left: 42px; }
.iwrap:has(textarea) > svg { top: 20px; transform: none; }

/* ---------- Wizard ---------- */
.wizard { position: relative; }
.netlify-honeypot { display: none; }

.wiz-head { display: grid; gap: 12px; margin-bottom: 6px; }
.wiz-labels {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.wiz-labels li.on { color: var(--gold-light); font-weight: 600; }
.wiz-track {
    height: 4px;
    border-radius: 999px;
    background: rgba(201, 164, 92, 0.15);
    overflow: hidden;
}
.wiz-bar {
    height: 100%;
    background: var(--grad-gold);
    border-radius: 999px;
    transition: width 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.wiz-step { display: none; border: none; gap: 20px; }
.wiz-step.on { display: grid; animation: fadeUp 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) both; }

.wiz-q {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.wiz-nav { display: flex; gap: 14px; }
.wiz-nav .btn { flex: 1; justify-content: center; }
.wiz-nav #w-back { flex: 0 0 auto; }
.form-status {
    min-height: 1.25rem;
    font-size: 0.85rem;
    color: var(--gold-light);
}
.form-status.is-error { color: #ffb4a8; }

/* ---------- Child seat selector ---------- */
.seat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.seat-opt {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
    background: rgba(8, 9, 12, 0.6);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 10px;
    font-size: 0.8rem;
    line-height: 1.3;
}
.seat-opt svg { width: 22px; height: 22px; color: var(--gold); }
.seat-opt small { color: var(--muted); font-size: 0.7rem; }
.seat-opt input {
    width: 64px;
    text-align: center;
    background: rgba(17, 20, 28, 0.9);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    padding: 6px 4px;
}
.seat-opt input:focus { outline: none; border-color: var(--gold); }

/* ---------- Summary ---------- */
.wiz-summary {
    background: rgba(201, 164, 92, 0.07);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 20px;
    display: grid;
    gap: 6px;
}
.wiz-summary h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}
.wiz-summary p { font-size: 0.86rem; color: var(--text); display: flex; gap: 10px; }
.wiz-summary p span { color: var(--muted); min-width: 110px; flex: 0 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner-photo { grid-template-columns: 1fr; gap: 28px; }
    .hero-quick { justify-self: stretch; max-width: 560px; }
    /* Mobile/tablet: show the full hero photo as a banner on top instead of a
       sliced cover background (a tall stacked hero crops the car too hard). */
    .hero-photo { min-height: 0; padding: 84px 0 56px; background: var(--bg); }
    .hero-photo::before, .hero-photo::after { display: none; }
    .hero-mobile-art {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        background-image: var(--hero-img);
        background-size: cover;
        background-position: center;
        border-radius: var(--radius);
        border: 1px solid rgba(201, 164, 92, 0.25);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    }
    .hero-copy { max-width: 560px; }
}
@media (max-width: 768px) {
    .seat-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .wiz-labels { font-size: 0.64rem; }
    .hero-quick { max-width: none; }
}

/* ---------- Social icons ---------- */
.social-row { display: flex; align-items: center; gap: 6px; }
.social-row a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--gold);
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.social-row a:hover {
    color: #14100a;
    background: var(--grad-gold);
    transform: translateY(-2px);
}
.social-row svg { width: 15px; height: 15px; }

.social-topbar { margin-right: 14px; }
.social-footer { margin-top: 18px; }
.social-footer a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
}
.social-footer svg { width: 17px; height: 17px; }

@media (max-width: 768px) {
    .social-topbar { margin-right: 4px; }
}

/* ---------- Gallery ---------- */
.gal-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.gal-filter {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--muted);
    border-radius: 999px;
    padding: 9px 22px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s ease;
}
.gal-filter:hover { border-color: var(--gold); color: var(--gold-light); }
.gal-filter.on {
    background: var(--grad-gold);
    color: #14100a;
    border-color: transparent;
    font-weight: 600;
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gal-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    cursor: zoom-in;
    aspect-ratio: 16 / 10;
}
.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 30px 16px 12px;
    font-size: 0.82rem;
    color: var(--text);
    background: linear-gradient(transparent, rgba(8, 9, 12, 0.85));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gal-item:hover figcaption { opacity: 1; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(5, 6, 8, 0.94);
    display: grid;
    place-content: center;
    gap: 14px;
    padding: 24px;
}
/* explicit display beats the hidden attribute's UA style — restore it */
.lightbox[hidden] { display: none; }
.lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 80vh;
    border-radius: 12px;
    border: 1px solid var(--line);
}
.lb-caption { text-align: center; color: var(--muted); font-size: 0.9rem; }
.lb-close {
    position: absolute;
    top: 18px; right: 24px;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 1024px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gal-grid { grid-template-columns: 1fr; } }

/* footer logo */
.footer-logo { margin-bottom: 16px; }
.footer-logo:hover .logo-text { color: var(--gold-light); }

/* lightbox prev/next arrows */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(17, 20, 28, 0.7);
    color: var(--gold-light);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    padding-bottom: 4px;
    transition: background 0.25s ease, color 0.25s ease;
}
.lb-nav:hover { background: var(--grad-gold); color: #14100a; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
@media (max-width: 600px) {
    .lb-nav { width: 42px; height: 42px; font-size: 1.6rem; }
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
}

/* drawer-only elements hidden on desktop */
@media (min-width: 1025px) {
    .mi, .drawer-head, .drawer-foot { display: none; }
}

/* ---------- Service Areas mega dropdown ---------- */
.has-mega { position: static; }
/* invisible hover bridge across the gap between the link and the panel (desktop only) */
@media (min-width: 1025px) {
    .has-mega > a { padding-top: 26px; padding-bottom: 27px; margin: -26px 0 -27px; }
}
.has-mega > a .caret {
    display: inline-block;
    font-size: 0.7em;
    color: var(--gold);
    transition: transform 0.25s ease;
}
.has-mega:hover > a .caret { transform: rotate(180deg); }

.mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(10, 11, 15, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    /* slight close delay forgives diagonal mouse travel toward the panel */
    transition: opacity 0.25s ease 0.18s, transform 0.25s ease 0.18s, visibility 0.25s 0.18s;
    pointer-events: none;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.mega-inner { padding-top: 26px; padding-bottom: 30px; }
.mega-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.mega-head .eyebrow { margin-bottom: 0; }
.mega-all { font-size: 0.85rem; letter-spacing: 0.05em; color: var(--gold-light); }
.mega-all:hover { color: #fff; }

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.mega-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 9;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.mega-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 164, 92, 0.6);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}
.mega-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.mega-card:hover img { transform: scale(1.08); }
.mega-card span {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 24px 10px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    background: linear-gradient(transparent, rgba(8, 9, 12, 0.92));
    letter-spacing: 0.02em;
}
.mega-card:hover span { color: var(--gold-light); }

@media (max-width: 768px) {
}

/* topbar phone/email icons */
.tb-item { display: inline-flex; align-items: center; gap: 6px; }
.tb-item svg { width: 13px; height: 13px; color: var(--gold); flex: 0 0 auto; }

/* mobile topbar: icons only for email/phone, larger tap targets */
@media (max-width: 768px) {
    .tb-text, .tb-sep { display: none; }
    .topbar-links { gap: 8px; }
    .tb-item {
        width: 36px;
        height: 36px;
        justify-content: center;
        border-radius: 50%;
    }
    .tb-item svg { width: 19px; height: 19px; }
    .social-row { gap: 8px; }
    .social-row a { width: 36px; height: 36px; }
    .social-row svg { width: 19px; height: 19px; }
}

/* ---------- Limo Anywhere widget panels ---------- */
.widget-panel {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--line);
    padding: 12px;
    overflow: hidden;
}
.widget-panel > a[data-ores-widget] { color: #14100a; }
.widget-full {
    max-width: 1020px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    padding: 16px;
}
.hero-widget { padding: 10px; gap: 0; max-width: 392px; }
.hero-widget .widget-panel { padding: 7px; }
.book-help { max-width: 1020px; margin: 26px auto 0; text-align: center; }
.book-help p { color: var(--muted); margin-bottom: 16px; }
.book-help .hero-trust { justify-content: center; margin-top: 0; }
