/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold: #dfad56;
    --gold-light: #d4b660;
    --dark: #03091a;
    --dark2: #06091e;
    --dark3: #0a0d22;
    --light: #f5f0e6;
    --light2: #ede8da;
    --text: #e8e0d0;
    --text-muted: #888070;
    --text-dark: #1a1a1a;
    --text-dark2: #333;
    --border: rgba(201,168,76,0.15);
    --border-dark: rgba(255,255,255,0.06);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}
.btn-gold {
    background: var(--gold);
    color: #03091a;
    border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-dark {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.08); }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }

/* ===== FLASH MESSAGES ===== */
.flash-messages { padding: 12px 24px; }
.flash { padding: 12px 20px; margin-bottom: 8px; border-radius: 2px; font-size: 14px; }
.flash-success { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid var(--border); }
.flash-error { background: rgba(180,60,60,0.15); color: #e07070; border: 1px solid rgba(180,60,60,0.3); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(7, 8, 13, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    height: 86px;
}
.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}
.footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #ccc;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 14px; right: 14px;
    height: 1px;
    background: var(--gold);
}
.nav-link svg { opacity: 0.6; flex-shrink: 0; }
.nav-btn {
    display: inline-block;
    margin-left: 10px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-btn:hover { background: var(--gold); color: var(--dark); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: #ccc;
    transition: all 0.25s;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(3,9,22,0.98);
    border: 1px solid var(--border);
    min-width: 160px;
    z-index: 100;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ccc;
    transition: color 0.2s;
}
.dropdown-menu li a:hover { color: var(--gold); }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* ===== GOLD UTILITIES ===== */
.gold-line {
    width: 44px; height: 2px;
    background: var(--gold);
    margin: 12px 0 14px;
}
.gold-line.short { width: 32px; }

/* Section title decorator: ————◆ on one row */
.gold-decorator {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 12px 0 16px;
}
.gold-decorator .gd-line {
    display: block;
    width: 90px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}
.gold-decorator .gd-dot {
    color: var(--gold);
    font-size: 7px;
    font-style: normal;
    line-height: 1;
    flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding-top: 86px;
    background: var(--dark);
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: stretch;
}
.hero-img-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 35%;
    z-index: 1;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Dark panel (::before, z-index:2) overlaps and hides left portion — no clip-path needed */
}
.hero-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}
.hero-img-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(3,9,22,0.75) 0%,
        rgba(3,9,22,0.45) 15%,
        rgba(3,9,22,0.1) 30%,
        transparent 45%,
        transparent 85%,
        rgba(3,9,22,0.15) 100%
    );
    pointer-events: none;
}
/* Solid dark left panel — straight diagonal */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--dark);
    clip-path: polygon(0 0, 44% 0, 37% 100%, 0 100%);
}
/* Gold diagonal stripe — clip-path follows exact edge of dark panel */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background: var(--gold);
    clip-path: polygon(44% 0, calc(44% + 2px) 0, calc(37% + 2px) 100%, 37% 100%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 50px 0 56px 4.5vw;
    display: flex;
    flex-direction: column;
}
.hero-breadcrumb {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #565656;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-breadcrumb span { margin: 0 6px; color: #3a3a3a; }
.hero-text { max-width: 42vw; }
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(52px, 5.4vw, 78px);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.0;
    color: #fff;
    white-space: nowrap;
    margin-bottom: 10px;
}
.hero-decorator {
    margin: 8px 0 6px;
}
.hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: 14px;
    color: #7a7060;
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 28px;
}
.hero-subtitle strong { color: #a09080; font-weight: 600; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Breadcrumb active segment */
.breadcrumb-active { color: var(--gold); }

/* Hero description row with icon */
.hero-desc-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;
}
.hero-desc-icon {
    width: 32px; height: 32px;
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--gold);
}
.hero-desc-row .hero-subtitle {
    margin-bottom: 0;
}

/* Book hero sub-brand line */
.hero-subbrand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.hero-subbrand-line {
    display: inline-block;
    width: 36px; height: 1.5px;
    background: var(--gold);
    vertical-align: middle;
}
.hero-subbrand-diamond { font-size: 8px; }

/* ===== FEATURES BAR ===== */
.features-bar {
    background: #06091e;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1440px;
    margin: 0 auto;
}
.feature-item {
    padding: 48px 40px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.02); }
.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}
.feature-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}
.feature-item h3 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.6;
}
.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--light);
}
.services-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 60px;
    gap: 80px;
    align-items: start;
}
.services-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.services-diamond {
    font-size: 9px;
    color: var(--gold);
    margin-bottom: 16px;
}
.services-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    max-width: 380px;
}
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.service-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 28px 24px;
    border: 1px solid #e0d8c8;
    margin: -1px 0 0 -1px;
    transition: background 0.2s;
}
.service-card:hover { background: rgba(201,168,76,0.04); }
.service-icon {
    width: 42px; height: 42px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.service-icon svg {
    width: 18px; height: 18px;
    color: var(--gold);
}
.service-text h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.service-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
}

/* ===== PREMIUM EXPERIENCE ===== */
.premium-section {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
}
.premium-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: -30%;
    bottom: -30%;
    background-size: cover;
    background-position: center center;
    z-index: 0;
    will-change: transform;
}
.premium-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(3,9,22,0.95) 0%,
        rgba(3,9,22,0.85) 35%,
        rgba(3,9,22,0.4) 65%,
        rgba(3,9,22,0.15) 100%
    );
}
.premium-content {
    position: relative;
    z-index: 2;
    padding: 72px 4.5vw;
    max-width: 500px;
}
.premium-title {
    font-family: var(--font-serif);
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.premium-diamond {
    font-size: 9px;
    color: var(--gold);
    margin-bottom: 12px;
}
.premium-desc {
    font-size: 14px;
    color: #888070;
    line-height: 1.8;
    max-width: 340px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--light);
    border-top: 1px solid #e0d8c8;
    border-bottom: 1px solid #e0d8c8;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1440px;
    margin: 0 auto;
}
.stat-item {
    padding: 52px 36px;
    text-align: center;
    border-right: 1px solid #e0d8c8;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 52px; height: 52px;
    border: 1px solid rgba(201,168,76,0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.stat-icon svg {
    width: 22px; height: 22px;
    color: var(--gold);
}
.stat-value {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1;
}
.stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.stat-item p {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 36px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cta-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cta-icon img { width: 52px; height: 52px; object-fit: contain; }
.cta-text h3 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.cta-text p { font-size: 13px; color: var(--text-muted); }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border-dark);
}
.footer-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 44px 60px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo-link { display: flex; align-items: center; gap: 10px; }
.footer-tagline {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #5a5550;
    letter-spacing: 0.06em;
    line-height: 1.9;
    margin-top: 14px;
}
.footer-col-title {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,0.12);
}
/* Contact column */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.footer-contact-list li {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}
.footer-contact-label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.55);
    flex-shrink: 0;
    min-width: 46px;
}
.footer-contact-list a,
.footer-contact-list span {
    font-family: var(--font-sans);
    font-size: 12px;
    color: #9a9088;
    line-height: 1.5;
    transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--gold); }
/* Legal column */
.footer-legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-legal-list > li + li { border-top: 1px solid rgba(255,255,255,0.04); }
.footer-legal-list a {
    font-family: var(--font-sans);
    font-size: 12px;
    color: #9a9088;
    transition: color 0.2s;
    letter-spacing: 0.02em;
}
.footer-legal-list a:hover { color: var(--gold); }
.footer-legal-info {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #5e5a55;
    letter-spacing: 0.02em;
    display: flex;
    gap: 6px;
    align-items: baseline;
}
.footer-legal-info span {
    color: #7a746e;
    font-weight: 500;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 14px 60px;
    text-align: center;
}
.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #4a4642;
    letter-spacing: 0.06em;
}

/* ===== BOOKING PAGE ===== */
.booking-section {
    background: var(--dark);
    padding: 52px 0 60px;
}
.booking-outer {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0;
    border: 1px solid rgba(201,168,76,0.45);
}
.booking-container {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    align-items: start;
}
.booking-form-col {
    padding: 40px 44px 40px 40px;
    border-right: 1px solid rgba(201,168,76,0.3);
}
.booking-sidebar {
    padding: 36px 30px;
}
.booking-form-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.booking-icon {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-icon svg { width: 16px; height: 16px; color: var(--gold); }
.booking-form-header h2 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #fff;
    text-transform: uppercase;
}
.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #888;
    text-transform: uppercase;
}
.optional { font-weight: 400; letter-spacing: 0.1em; color: #555; }
.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
/* Address autocomplete dropdown */
.ac-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 999;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    background: #0c1428;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    max-height: 220px;
    overflow-y: auto;
}
.ac-item {
    padding: 9px 14px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: #b0a898;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    line-height: 1.4;
}
.ac-item:hover,
.ac-item--active {
    background: rgba(201,168,76,0.08);
    color: #e8dfc8;
}
.input-icon-wrap svg {
    position: absolute;
    left: 14px;
    width: 15px; height: 15px;
    color: #555;
    pointer-events: none;
    flex-shrink: 0;
}
.input-icon-wrap input,
.input-icon-wrap select,
.input-icon-wrap textarea {
    width: 100%;
    padding: 12px 14px 12px 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.3);
    color: #c8bfaf;
    font-family: var(--font-sans);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    border-radius: 0;
}
.input-icon-wrap input:focus,
.input-icon-wrap select:focus,
.input-icon-wrap textarea:focus {
    border-color: rgba(201,168,76,0.4);
}
.input-icon-wrap input::placeholder,
.input-icon-wrap textarea::placeholder { color: #454035; }
.input-icon-wrap select option { background: #111; color: #d0c8b8; }
.select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #555;
    pointer-events: none;
}
.textarea-wrap { align-items: flex-start; }
.textarea-wrap svg { top: 14px; }
.input-icon-wrap textarea { resize: vertical; min-height: 80px; }

/* ===== CUSTOM PICKERS ===== */
.picker-display { cursor: pointer !important; }
.picker-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 1000;
    background: #080f22;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 3px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    min-width: 280px;
}
.picker-dropdown.open { display: block; }

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cal-header-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e8dfc8;
    font-family: var(--font-sans);
}
.cal-nav {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 2px 8px;
    font-size: 18px;
    line-height: 1;
    transition: color 0.15s;
}
.cal-nav:hover { color: #fff; }
.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px 12px 4px;
}
.cal-weekday {
    text-align: center;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: #3a3a3a;
    text-transform: uppercase;
    font-family: var(--font-sans);
}
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 4px 12px 12px;
    gap: 2px;
}
.cal-day {
    text-align: center;
    padding: 7px 2px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.12s;
    background: none;
    border: none;
    font-family: var(--font-sans);
    line-height: 1;
}
.cal-day:hover:not(.disabled):not(.empty) { background: rgba(201,168,76,0.12); color: var(--gold); }
.cal-day.today { color: var(--gold); }
.cal-day.selected { background: var(--gold); color: #03091a; font-weight: 700; }
.cal-day.disabled { color: #252525; cursor: default; pointer-events: none; }
.cal-day.empty { cursor: default; }

.time-picker-dropdown { min-width: 160px; }
.time-list {
    max-height: 224px;
    overflow-y: auto;
    padding: 6px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,168,76,0.25) transparent;
}
.time-list::-webkit-scrollbar { width: 3px; }
.time-list::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.25); border-radius: 2px; }
.time-option {
    padding: 8px 20px;
    font-size: 12px;
    color: #777;
    cursor: pointer;
    transition: all 0.12s;
    letter-spacing: 0.08em;
    font-family: var(--font-sans);
}
.time-option:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.time-option.selected { color: var(--gold); background: rgba(201,168,76,0.06); }

.btn-booking-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-booking-submit:hover { background: var(--gold-light); }
.booking-security {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #555;
    justify-content: center;
}
.booking-security svg { color: #555; flex-shrink: 0; }

/* Pricing Sidebar */
.pricing-card {
    background: transparent;
    border: none;
    padding: 0;
}
.pricing-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.pricing-header-icon { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }
.pricing-card-header span {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
}
.pricing-title-deco {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}
.pricing-title-deco .deco-line {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}
.pricing-title-deco .deco-diamond {
    font-size: 7px;
    color: var(--gold);
    line-height: 1;
}
.pricing-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #d4cfc5;
    line-height: 1.6;
    margin-bottom: 20px;
}
/* Inner route card */
.pricing-route {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.45);
    padding: 22px 20px;
}
.pricing-route-icons {
    margin-bottom: 16px;
}
.pricing-route-group-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.route-from {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.route-arrow {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.pricing-from {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.pricing-price {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}
.pricing-note {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #d4cfc5;
    line-height: 1.65;
    margin-bottom: 12px;
}
.pricing-highlight {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}
.btn-get-quote {
    display: block;
    width: 100%;
    padding: 13px;
    text-align: center;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all 0.2s;
}
.btn-get-quote:hover { background: var(--gold); color: var(--dark); }

/* Booking Trust Bar */
.booking-trust {
    background: var(--dark);
    border-top: 1px solid var(--border-dark);
}
.booking-trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 28px;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-icon img { width: 48px; height: 48px; object-fit: contain; }
.trust-item h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.trust-item p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===== ABOUT PAGE ===== */
.page-hero {
    position: relative;
    padding-top: 86px;
    background: var(--dark);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--dark);
    clip-path: polygon(0 0, 47% 0, 40% 100%, 0 100%);
}
.page-hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 45% center;
}
.page-hero-img-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 40%, rgba(3,9,22,0.2) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 3;
    padding: 56px 0 56px 4.5vw;
}
.page-hero-breadcrumb {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.page-hero-breadcrumb span { margin: 0 6px; color: #3a3a3a; }
.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
}
.page-hero-sub {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

/* About content sections */
.about-section {
    background: var(--light);
    padding: 80px 60px;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.about-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.values-section {
    background: var(--dark2);
    padding: 80px 60px;
}
.values-container { max-width: 1200px; margin: 0 auto; }
.values-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.values-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 48px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-dark);
    padding: 32px 28px;
}
.value-card-icon {
    width: 46px; height: 46px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.value-card-icon svg { width: 20px; height: 20px; color: var(--gold); }
.value-card h3 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-section {
    background: var(--dark2);
    padding: 72px 0;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}
.contact-info-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.contact-info-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}
.contact-detail-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg { width: 17px; height: 17px; color: var(--gold); }
.contact-detail-text h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.contact-detail-text p { font-size: 14px; color: #ccc; }
.contact-form-wrap {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-dark);
    padding: 36px;
}
.contact-form-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dark);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #777;
    text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.09);
    color: #d0c8b8;
    font-family: var(--font-sans);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(201,168,76,0.4); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #454035; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-submit {
    padding: 14px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.contact-form .btn-submit:hover { background: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero { min-height: 420px; }
    .hero::before { clip-path: polygon(0 0, 46% 0, 39% 100%, 0 100%); }
    .hero::after  { clip-path: polygon(46% 0, calc(46% + 2px) 0, calc(39% + 2px) 100%, 39% 100%); }
    .hero-img-panel { left: 37%; }
    .hero-text { max-width: 40vw; }
    .services-container { padding: 60px 40px; gap: 50px; }
    .booking-outer { padding: 0 40px; }
    .booking-container { grid-template-columns: 1fr 300px; }
}

@media (max-width: 900px) {
    /* Hero: shrink left panel so image has more room */
    .hero { min-height: 380px; }
    .hero::before { clip-path: polygon(0 0, 48% 0, 42% 100%, 0 100%); }
    .hero::after  { clip-path: polygon(48% 0, calc(48% + 2px) 0, calc(42% + 2px) 100%, 42% 100%); }
    .hero-img-panel { left: 40%; }
    .hero-text { max-width: 42vw; }
    /* Other sections */
    .features-container, .stats-container { grid-template-columns: 1fr 1fr; }
    .feature-item, .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .stat-item { border-bottom: 1px solid #e0d8c8; }
    .services-container { grid-template-columns: 1fr; gap: 40px; }
    .booking-outer { padding: 0 20px; border-left: none; border-right: none; }
    .booking-container { grid-template-columns: 1fr; }
    .booking-form-col { padding: 28px 20px; border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); }
    .booking-sidebar { padding: 28px 20px; }
    .booking-trust-container { grid-template-columns: 1fr 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); flex-direction: column; align-items: center; text-align: center; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 28px 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .cta-container { flex-direction: column; align-items: flex-start; padding: 36px 40px; }
    .contact-container { grid-template-columns: 1fr; }
    .about-container { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
    .footer-bottom { padding: 12px 24px; }
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-container { padding: 0 16px; }
    .nav-logo-img { height: 60px; }
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 86px; left: 0; right: 0;
        background: rgba(3,9,22,0.99);
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
        gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 14px 32px; width: 100%; }
    .nav-link.active::after { display: none; }
    .nav-btn { margin: 12px 32px; display: block; text-align: center; }

    /* Hero — stacked layout: text on top, image below */
    .hero {
        flex-direction: column;
        min-height: auto;
        align-items: stretch;
        padding-top: 86px;
        overflow: visible;
    }
    .hero::before { display: none; }
    .hero::after  { display: none; }
    .hero-inner {
        padding: 36px 24px 28px;
        background: var(--dark);
        position: relative;
        z-index: 4;
    }
    .hero-text { max-width: 100%; }
    .hero-title { font-size: clamp(38px, 11vw, 58px); white-space: normal; }
    .hero-subtitle { max-width: 100%; }
    /* Image panel: full-width block BELOW text */
    .hero-img-panel {
        position: relative;
        top: auto; right: auto; bottom: auto; left: auto;
        width: 100%;
        height: 260px;
        flex-shrink: 0;
        order: 2;
    }
    .hero-inner { order: 1; }
    .hero-img-panel img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    /* Grids */
    .features-container, .stats-container, .booking-trust-container { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .cta-container { padding: 28px 24px; }
    .footer-bottom { padding: 16px 24px; text-align: center; }
    .about-section, .values-section { padding: 60px 24px; }
    .booking-section { padding: 40px 0; }
    .booking-container { padding: 0 24px; }
    .booking-trust-container { padding: 0 24px; }
    .services-container { padding: 60px 24px; }
    /* Trust bar mobile — compact */
    .trust-item { padding: 20px 16px; gap: 14px; flex-direction: row; align-items: center; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .trust-item:last-child { border-bottom: none; }
    .trust-icon { width: 48px; height: 48px; flex-shrink: 0; }
    .trust-icon svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
    .hero-img-panel { height: 220px; }
    .hero-title { font-size: clamp(32px, 10vw, 48px); }
    .hero-btns { flex-direction: column; gap: 8px; }
    .hero-btns .btn { text-align: center; }
}

/* ===== ABOUT PAGE (REDESIGN) ===== */
.about-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 86px;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(3,9,22,0.65) 0%,
        rgba(3,9,22,0.45) 40%,
        rgba(3,9,22,0.75) 80%,
        rgba(3,9,22,0.95) 100%);
}
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 40px;
    max-width: 620px;
    margin: 0 auto;
}
.about-hero-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
}
.about-hero-icon svg { width: 100%; height: 100%; }
.about-hero-icon img { width: 100%; height: 100%; object-fit: contain; }
.about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 6vw, 60px);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.35em;
    margin: 0 0 40px;
    line-height: 1;
}
.about-hero-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
    margin-bottom: 22px;
    font-family: var(--font-sans);
    font-weight: 300;
}
.about-hero-text p:last-child { margin-bottom: 0; }

/* Car image — parallax */
.about-car-img {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 62vw;
    max-height: 680px;
    min-height: 340px;
}
.about-car-img-inner {
    position: absolute;
    inset: -15% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 55%;
    will-change: transform;
    transition: transform 0.05s linear;
}
@media (max-width: 768px) {
    .about-car-img { height: 56vw; min-height: 200px; }
    .about-car-img-inner { inset: 0; }
}

/* Pillars */
.about-pillars {
    background: var(--dark);
    padding: 90px 60px;
}
.about-pillars-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pillar-card {
    background: rgba(255,255,255,0.022);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 44px 32px;
    text-align: center;
    transition: border-color 0.3s;
}
.pillar-card:hover { border-color: rgba(201,168,76,0.25); }
.pillar-icon {
    width: clamp(36px, 4.5vw, 45px);
    height: clamp(36px, 4.5vw, 45px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.pillar-icon img {
    width: clamp(36px, 4.5vw, 45px);
    height: clamp(36px, 4.5vw, 45px);
    object-fit: contain;
}
.pillar-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-family: var(--font-sans);
}
.pillar-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 20px;
    opacity: 0.55;
}
.pillar-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.85;
}
.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pillar-list li {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA about override */
.cta-about-title {
    font-size: 16px !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    font-weight: 600 !important;
    color: #fff !important;
}

/* ===== FOOTER ACCORDION (MOBILE) ===== */
.footer-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-col-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
    transition: transform 0.25s;
}
.footer-col-toggle.open { transform: rotate(45deg); }

@media (max-width: 768px) {
    .footer-col-toggle { display: block; }
    .footer-col-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.3s ease;
        opacity: 0;
    }
    .footer-col-content.open {
        max-height: 400px;
        opacity: 1;
    }
    .about-pillars { padding: 60px 24px; }
    .about-pillars-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-car-img { height: 240px; }
    .about-hero-content { padding: 60px 24px; }
}

@media (min-width: 769px) {
    .footer-col-content { max-height: none !important; opacity: 1 !important; overflow: visible !important; }
}


/* ===== LEGAL PAGES (Privacy Policy / Terms & Conditions) ===== */
.legal-hero {
    padding-top: 86px;
    background: var(--dark);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    text-align: center;
    padding-bottom: 52px;
    padding-top: calc(86px + 52px);
}

.legal-hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-hero-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--font-sans);
    margin-bottom: 14px;
}

.legal-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.legal-hero-sub {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.legal-body {
    background: var(--dark);
    padding: 60px 0 100px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 48px;
    padding: 16px 20px;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 3px;
}

.legal-meta span {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--gold);
    font-family: var(--font-sans);
}

.legal-section {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 32px;
}

.legal-section h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.legal-section h3 {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 20px 0 10px;
    font-weight: 600;
}

.legal-section p {
    font-size: 14px;
    line-height: 1.85;
    color: #a8a09a;
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.legal-section ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #a8a09a;
    padding: 5px 0 5px 18px;
    position: relative;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 5px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.legal-section a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    transition: border-color 0.2s;
}

.legal-section a:hover {
    border-color: var(--gold);
}

.legal-section strong {
    color: #ccc5bb;
    font-weight: 600;
}

.legal-footer-note {
    margin-top: 48px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 3px;
    text-align: center;
}

.legal-footer-note p {
    font-size: 11px;
    color: #555;
    letter-spacing: 0.06em;
    margin: 0;
}

@media (max-width: 600px) {
    .legal-container { padding: 0 20px; }
    .legal-hero { padding-top: calc(86px + 36px); padding-bottom: 36px; }
    .legal-meta { flex-direction: column; gap: 6px; }
    .legal-section h2 { font-size: 1.1rem; }
}
