:root {
    --sea: #0f2d42;
    --sea-deep: #0a1d2f;
    --charcoal: #222226;
    --sand: #cbb391;
    --ivory: #f8f4ec;
    --champagne: #d8c0a1;
    --panel: rgba(255, 255, 255, 0.08);
    --line: rgba(255, 255, 255, 0.16);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--ivory);
    background: radial-gradient(circle at 20% -10%, #17415f 0%, #0a1b2c 45%, #081321 100%);
    line-height: 1.65;
}

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

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(8, 19, 33, 0.82);
    backdrop-filter: blur(10px);
    border-color: var(--line);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
}

.brand-mark { display: grid; gap: 0.2rem; }
.brand-kicker { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }
.brand-main { font-family: "CormorantGaramond", Georgia, serif; font-size: 1.5rem; letter-spacing: 0.03em; }

.main-nav { display: flex; align-items: center; gap: 1.2rem; font-size: 0.94rem; }
.main-nav a { opacity: 0.9; transition: opacity 0.25s ease, transform 0.25s ease; }
.main-nav a:hover { opacity: 1; transform: translateY(-1px); }

.btn {
    display: inline-block;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
}

.btn-nav {
    background: linear-gradient(120deg, var(--sand), var(--champagne));
    color: #241b13;
    font-weight: 500;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 7px 0;
    border-radius: 4px;
    background: #fff;
}

section { padding: 5.5rem 0; }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show { opacity: 1; transform: translateY(0); }

.headline-xl, h1 {
    font-family: "CormorantGaramond", Georgia, serif;
    font-size: clamp(2.4rem, 5.8vw, 5rem);
    line-height: 0.96;
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
}

h2, h3, h4 {
    font-family: "CormorantGaramond", Georgia, serif;
    margin: 0 0 0.8rem;
    letter-spacing: 0.01em;
}

h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.73rem;
    opacity: 0.82;
    margin-bottom: 1rem;
}

.split-hero {
    padding: 1.25rem 0 3rem;
}

.split-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.hero-copy {
    background: linear-gradient(180deg, rgba(20, 51, 74, 0.75), rgba(10, 25, 40, 0.96));
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: clamp(1.6rem, 4vw, 3.3rem);
}

.hero-copy p { max-width: 42ch; opacity: 0.9; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.hero-stats div {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.85rem;
}

.hero-stats strong { display: block; font-size: 1.15rem; color: var(--champagne); }

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 520px;
    border: 1px solid var(--line);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.08);
}

.selector-panel {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(370px, calc(100% - 2rem));
    background: rgba(12, 28, 42, 0.9);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
}

.selector-panel ul {
    margin: 0.7rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.selector-panel li {
    display: flex;
    justify-content: space-between;
    font-size: 0.93rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.17);
    padding-bottom: 0.4rem;
}

.price { color: var(--champagne); font-weight: 500; }

.journey-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.route-item {
    background: rgba(204, 182, 145, 0.08);
    border: 1px solid rgba(204, 182, 145, 0.34);
    border-radius: 20px;
    padding: 1.15rem 1.2rem;
}

.route-item header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.editorial-block {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 1.3rem;
    align-items: stretch;
}

.editorial-block.reverse {
    grid-template-columns: 1fr 1.08fr;
}

.editorial-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--line);
    min-height: 460px;
}

.editorial-copy {
    padding: 2rem 2rem 2rem 2.2rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(19, 41, 60, 0.72), rgba(12, 25, 39, 0.94));
}

.feature-columns {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
}

.tall-list, .service-panel {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.3rem;
    background: var(--panel);
}

.tall-list article {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.tall-list article:last-child { border-bottom: 0; }

.tall-list img {
    width: 100%;
    height: 98px;
    object-fit: cover;
    border-radius: 12px;
}

.testimonials-ribbon {
    overflow: hidden;
    border: 1px solid rgba(216, 192, 161, 0.35);
    border-radius: 20px;
    background: rgba(216, 192, 161, 0.08);
    padding: 1.2rem;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.quotes-grid blockquote {
    margin: 0;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(13, 34, 51, 0.75);
}

.final-inquiry {
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: clamp(1.4rem, 3vw, 2.3rem);
    background: linear-gradient(120deg, rgba(18, 52, 75, 0.92), rgba(47, 37, 26, 0.75));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
}

.btn-gold {
    background: linear-gradient(120deg, #ead1b0, #c8a67b);
    color: #2c1f12;
    border: 1px solid rgba(255, 255, 255, 0.32);
    font-weight: 500;
}

.page-hero {
    position: relative;
    min-height: 56vh;
    display: grid;
    align-items: end;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(7, 17, 28, 0.3), rgba(6, 13, 22, 0.95));
}

.page-hero-content { padding: 5rem 0 3rem; max-width: 70ch; }

.table-list {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.8fr 1.3fr 0.7fr;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.table-row:last-child { border-bottom: 0; }
.table-row.head { background: rgba(255, 255, 255, 0.07); font-weight: 500; }

.cards-lean {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.cards-lean article {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(13, 30, 46, 0.72);
}

.cards-lean img { width: 100%; height: 270px; object-fit: cover; }
.cards-lean .copy { padding: 1.15rem; }

form {
    display: grid;
    gap: 0.8rem;
}

input, select, textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.8rem 0.9rem;
    font: inherit;
}

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

.site-footer {
    margin-top: 5rem;
    padding: 3rem 0 1rem;
    background: #070f1a;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 1rem;
}

.site-footer h3 { font-size: 1.6rem; }
.site-footer h4 { font-size: 1.04rem; margin-bottom: 0.65rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.45rem; }
.socials { display: flex; gap: 0.8rem; margin-top: 0.8rem; font-size: 0.92rem; }

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    font-size: 0.86rem;
}

.footer-bottom nav { display: flex; gap: 1rem; }

@media (max-width: 1024px) {
    .split-hero-inner,
    .editorial-block,
    .editorial-block.reverse,
    .feature-columns,
    .footer-grid,
    .quotes-grid,
    .journey-strip {
        grid-template-columns: 1fr;
    }

    .table-row {
        grid-template-columns: 1.2fr 1fr;
    }

    .table-row span:nth-child(3),
    .table-row span:nth-child(4) {
        display: none;
    }
}

@media (max-width: 820px) {
    .mobile-toggle { display: block; }
    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 4%;
        right: 4%;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(8, 20, 34, 0.95);
        flex-direction: column;
        align-items: stretch;
        transform: scale(0.98);
        opacity: 0;
        pointer-events: none;
        transition: 0.24s ease;
    }

    .main-nav.open {
        opacity: 1;
        transform: scale(1);
        pointer-events: all;
    }

    .hero-visual { min-height: 430px; }
    .cards-lean { grid-template-columns: 1fr; }
    .final-inquiry { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
