:root {
    --bg: #070707;
    --bg-soft: #101010;
    --bg-card: #151515;
    --text: #f7f1e6;
    --muted: #b9b0a3;
    --gold: #c9a25d;
    --gold-light: #f0d192;
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

body.nav-open { overflow: hidden; }

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

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

button, input, select, textarea { font: inherit; }

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 7, 7, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 162, 93, 0.52);
    border-radius: 50%;
    color: var(--gold-light);
    background: radial-gradient(circle at 30% 20%, rgba(240, 209, 146, 0.24), rgba(201, 162, 93, 0.06) 45%, transparent 70%);
    font-family: "Playfair Display", serif;
}

.brand-text { font-size: 1.08rem; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-link {
    padding: 10px 13px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.94rem;
    border-radius: 999px;
    transition: 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 50%;
    padding: 11px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
    color: #14100a;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 12px 34px rgba(201, 162, 93, 0.18);
}

.btn-outline {
    border-color: rgba(201, 162, 93, 0.45);
    color: var(--gold-light);
    background: rgba(201, 162, 93, 0.08);
}

.btn-small {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.92rem;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 78px;
    background:
        radial-gradient(circle at 18% 18%, rgba(201, 162, 93, 0.20), transparent 30%),
        radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #0b0b0b, #070707 65%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, var(--bg));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
    align-items: center;
    gap: 50px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

h1, h2, h3 {
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

h1, h2 { font-family: "Playfair Display", Georgia, serif; }

h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 7vw, 6.6rem);
    max-width: 760px;
}

h2 {
    font-size: clamp(2.15rem, 4vw, 4.2rem);
    max-width: 820px;
}

h3 { font-size: 1.28rem; }

.lead {
    margin: 22px 0 0;
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(1.03rem, 1.35vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-media {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(240, 209, 146, 0.22), transparent 38%);
}

.hero-media img { position: relative; z-index: 1; width: 100%; }

.hero-badge {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 24px;
    padding: 14px 16px;
    max-width: 260px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(16px);
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-badge strong { display: block; color: var(--text); font-size: 1.04rem; }

.section { padding: 92px 0; }

.section.alt { background: var(--bg-soft); }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 38px;
}

.section-head p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
}

.text-block {
    max-width: 850px;
    color: var(--muted);
    font-size: 1.05rem;
}

.grid {
    display: grid;
    gap: 22px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
    position: relative;
    min-height: 100%;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    box-shadow: 0 18px 55px rgba(0,0,0,0.18);
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: rgba(201, 162, 93, 0.08);
}

.card h3 { margin-bottom: 12px; }
.card p { margin: 0; color: var(--muted); }

.icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    color: var(--gold-light);
    background: rgba(201, 162, 93, 0.12);
    border: 1px solid rgba(201, 162, 93, 0.20);
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.lux-panel {
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(201, 162, 93, 0.20), rgba(255,255,255,0.04));
    border: 1px solid rgba(201, 162, 93, 0.22);
    box-shadow: var(--shadow);
}

.lux-panel p { color: var(--muted); }

.check-list {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 12px;
    color: var(--muted);
}

.check-list li::before {
    content: "✓";
    color: var(--gold-light);
    font-weight: 900;
}

.fleet-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vehicle-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 188px;
    margin: -6px -6px 2px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% 20%, rgba(201,162,93,0.18), transparent 42%),
        linear-gradient(145deg, #1b1b1b, #0b0b0b);
    border: 1px solid rgba(255,255,255,0.08);
}

.vehicle-img img { width: 92%; }

.specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.specs h4, .feature-list h4 {
    margin: 0 0 10px;
    color: var(--gold-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.specs ul, .feature-list ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.destination-card {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.86)),
        radial-gradient(circle at 28% 22%, rgba(240, 209, 146, 0.25), transparent 34%),
        linear-gradient(135deg, #262626, #080808);
}

.destination-card h3, .destination-card p { position: relative; z-index: 1; }

.cta {
    padding: 72px 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(201,162,93,0.24), transparent 30%),
        linear-gradient(135deg, #15100a, #070707 62%);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border: 1px solid rgba(201,162,93,0.24);
    border-radius: 34px;
    background: rgba(255,255,255,0.045);
}

.cta-box p { color: var(--muted); max-width: 700px; margin: 14px 0 0; }

.booking-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 34px;
    align-items: start;
}

.booking-info {
    position: sticky;
    top: 102px;
}

.form-card {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(201,162,93,0.24);
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

label {
    color: var(--text);
    font-weight: 700;
    font-size: 0.92rem;
}

input, select, textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.32);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea { resize: vertical; min-height: 130px; }

input:focus, select:focus, textarea:focus {
    border-color: rgba(240,209,146,0.68);
    box-shadow: 0 0 0 4px rgba(201,162,93,0.10);
}

::placeholder { color: rgba(185,176,163,0.72); }

.form-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.94rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.alert {
    padding: 15px 17px;
    border-radius: 16px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
}

.alert.success {
    color: #eaffef;
    background: rgba(56, 180, 102, 0.14);
    border-color: rgba(56, 180, 102, 0.28);
}

.alert.error {
    color: #ffe8e8;
    background: rgba(215, 78, 78, 0.14);
    border-color: rgba(215, 78, 78, 0.28);
}

.testimonial {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stars { color: var(--gold-light); letter-spacing: 0.12em; }

.quote {
    font-size: 1.02rem;
    color: var(--muted);
}

.author {
    margin-top: auto;
    color: var(--text);
    font-weight: 800;
}

.page-hero {
    padding: 105px 0 74px;
    background:
        radial-gradient(circle at 20% 18%, rgba(201, 162, 93, 0.20), transparent 28%),
        linear-gradient(180deg, #101010, #070707);
    border-bottom: 1px solid var(--line);
}

.page-hero .lead { max-width: 820px; }

.site-footer {
    padding: 60px 0 26px;
    border-top: 1px solid var(--line);
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr;
    gap: 42px;
}

.footer-grid p { color: var(--muted); margin: 12px 0 0; }
.footer-grid h3 { font-size: 1rem; margin-bottom: 12px; }
.footer-link { color: var(--gold-light); font-weight: 800; display: inline-block; margin-top: 10px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 28px;
    margin-top: 36px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-bottom a { color: var(--gold-light); font-weight: 700; }

@media (max-width: 960px) {
    .hero-grid, .split, .booking-layout, .footer-grid { grid-template-columns: 1fr; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .booking-info { position: static; }
    .section-head { align-items: start; flex-direction: column; }
    .cta-box { align-items: flex-start; flex-direction: column; }
    .hero { padding-top: 82px; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, var(--container)); }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        inset: 78px 14px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(10,10,10,0.96);
        box-shadow: var(--shadow);
    }
    body.nav-open .main-nav { display: flex; }
    .nav-link, .main-nav .btn { justify-content: center; text-align: center; }
    h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
    .grid-2, .grid-3, .grid-4, .form-grid, .specs { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .page-hero { padding: 82px 0 58px; }
    .hero-grid { gap: 32px; }
    .hero-media { border-radius: 24px; }
    .footer-bottom { flex-direction: column; }
    .form-card, .lux-panel, .cta-box { padding: 24px; }
}
