/* ============================================
   CELLAR + SKY — Reserve Concierge
   Brand Colors (per Brand Guidelines):
     Cellar Red:      #941C2E
     Sky / Midnight Navy: #0A1C2E
     Concierge Gray:  #59595B
     White:           #FFFFFF
   Typography:
     Primary: Playfair Display (Didone serif)
     Secondary: Montserrat (geometric sans)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #941C2E;
    --burgundy-light: #B02338;
    --navy: #0A1C2E;
    --navy-light: #142B43;
    --gold: #941C2E;
    --gold-light: #B02338;
    --gold-dark: #6E1421;
    --gray: #59595B;
    --warm-gray: #C8C4BC;
    --cream: #F6F4F0;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --font-primary: 'Playfair Display', 'Georgia', serif;
    --font-secondary: 'Montserrat', 'Helvetica Neue', sans-serif;
    --shadow-sm: 0 2px 8px rgba(10, 28, 46, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 28, 46, 0.1);
    --shadow-lg: 0 20px 60px rgba(10, 28, 46, 0.12);
    --shadow-gold: 0 8px 30px rgba(148, 28, 46, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--navy);
    background-color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

::selection {
    background: var(--burgundy);
    color: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 130px 0;
    position: relative;
}

.section-dark {
    background-color: var(--navy);
    color: var(--white);
}

.section-cream {
    background-color: var(--cream);
}

/* --- Ornamental Divider --- */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 28px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-diamond {
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s cubic-bezier(0.4, 0, 0, 1), visibility 1s cubic-bezier(0.4, 0, 0, 1);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-text {
    font-family: var(--font-primary);
    color: var(--cream);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

.preloader-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    animation: expandLine 1.5s ease infinite;
}

@keyframes expandLine {
    0%, 100% { width: 30px; opacity: 0.5; }
    50% { width: 80px; opacity: 1; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0, 1);
}

#navbar.scrolled {
    background: rgba(26, 39, 68, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0;
    box-shadow: 0 4px 40px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 42px;
    width: auto;
    transition: height 0.4s cubic-bezier(0.4, 0, 0, 1);
}

#navbar.scrolled .nav-logo img {
    height: 34px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    padding: 13px 30px !important;
    border-radius: 0;
    letter-spacing: 0.2em !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0, 1) !important;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
    transition: left 0.6s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--burgundy-light) !important;
    box-shadow: 0 4px 20px rgba(107, 26, 43, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);
    transform-origin: center;
}

/* --- Hero --- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 2s cubic-bezier(0.4, 0, 0, 1), transform 10s cubic-bezier(0.4, 0, 0, 1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        160deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(26, 39, 68, 0.55) 50%,
        rgba(107, 26, 43, 0.25) 100%
    );
    z-index: 1;
}

/* Vignette effect */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 860px;
    padding: 0 40px;
}

.hero-badge {
    font-family: var(--font-secondary);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.6em;
    color: var(--gold-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-badge::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.2rem, 7.5vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}

.title-cellar {
    color: #D4889A;
    text-shadow: 0 0 80px rgba(107, 26, 43, 0.3);
}

.title-plus {
    color: var(--gold);
    font-weight: 300;
    font-size: 0.85em;
}

.title-sky {
    color: var(--white);
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.1);
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.6em;
    color: var(--gold-light);
    margin-bottom: 36px;
}

.hero-description {
    font-family: var(--font-secondary);
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 48px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Animations */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0, 1), transform 1s cubic-bezier(0.4, 0, 0, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-family: var(--font-secondary);
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.5s cubic-bezier(0.4, 0, 0, 1) infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 17px 44px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.7s cubic-bezier(0.4, 0, 0, 1);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border: 1px solid var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(107, 26, 43, 0.35);
    border-color: var(--burgundy-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(201, 169, 110, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201, 169, 110, 0.06);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 39, 68, 0.3);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Gold button variant */
.btn-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* --- Section Headers --- */
.section-label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.section-dark .section-label {
    color: var(--gold);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 22px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 520px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Decorative line below section headers */
.section-header::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 28px auto 0;
}

.section-dark .section-header::after {
    background: var(--gold-dark);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0, 1), transform 1s cubic-bezier(0.4, 0, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.3s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }
.reveal[data-delay="4"] { transition-delay: 0.6s; }
.reveal[data-delay="5"] { transition-delay: 0.75s; }

/* --- Intro Section --- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.intro-description {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 2;
    color: var(--navy);
    margin-bottom: 20px;
    opacity: 0.82;
}

.intro-features {
    display: flex;
    gap: 50px;
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid var(--warm-gray);
}

.intro-feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-number {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--burgundy);
    line-height: 1;
}

.feature-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0, 1);
}

.image-frame:hover img {
    transform: scale(1.04);
}

/* Gold corner accents on image frames */
.image-frame::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    z-index: 2;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    z-index: 2;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.image-frame:hover::before,
.image-frame:hover::after {
    opacity: 1;
    width: 60px;
    height: 60px;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
    border-color: rgba(201, 169, 110, 0.25);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(26, 39, 68, 0.95), transparent);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--gold-light);
}

.service-content p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
}

.service-price {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

/* --- Parallax --- */
.parallax-section {
    position: relative;
    height: 520px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.8), rgba(107, 26, 43, 0.5));
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 40px;
    max-width: 700px;
}

.parallax-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.parallax-content p {
    font-family: var(--font-secondary);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    color: var(--gold-light);
}

/* Decorative quotes */
.parallax-content::before {
    content: '\201C';
    display: block;
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}

/* --- Experience Section --- */
.experience-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
}

.experience-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    color: var(--navy);
    opacity: 0.82;
    margin-bottom: 34px;
}

.experience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--navy);
    padding: 6px 0;
    transition: padding-left 0.3s ease;
}

.experience-list li:hover {
    padding-left: 8px;
}

.list-icon {
    color: var(--gold);
    font-size: 0.45rem;
}

/* --- Pricing / Wine Tours --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    padding: 50px 38px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(200, 196, 188, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0, 1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.4, 0, 0, 1);
}

.pricing-card:hover::before {
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 1px solid var(--gold);
    transform: scale(1.04);
    box-shadow: 0 24px 70px rgba(201, 169, 110, 0.12);
}

.pricing-card.featured::before {
    width: 100%;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    height: 3px;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    padding: 7px 26px;
    white-space: nowrap;
}

.pricing-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.45em;
    color: var(--gold);
    margin-bottom: 12px;
}

.pricing-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 18px;
}

.pricing-amount {
    font-family: var(--font-primary);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--burgundy);
    margin-bottom: 18px;
    line-height: 1;
}

.pricing-card.featured .pricing-amount {
    background: linear-gradient(135deg, var(--burgundy), #A0334D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-description {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 34px;
}

.pricing-features li {
    padding: 11px 0;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--navy);
    border-bottom: 1px solid rgba(200, 196, 188, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    margin-top: 55px;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* --- Airport Section --- */
.airport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.airport-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(255,255,255,0.72);
    margin-bottom: 44px;
}

.route-list {
    margin-bottom: 44px;
}

.route-item {
    display: flex;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
    transition: all 0.3s ease;
}

.route-item:hover {
    padding-left: 12px;
    border-bottom-color: rgba(201, 169, 110, 0.3);
}

.route-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
}

.route-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(201, 169, 110, 0.25);
    margin: 0 18px;
    min-width: 40px;
    position: relative;
    top: -4px;
}

.route-price {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--gold);
    white-space: nowrap;
}

.airport-includes {
    margin-bottom: 34px;
}

.airport-includes h4 {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.includes-grid span {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
}

.includes-grid span::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.65rem;
}

.airport-note {
    margin-top: 22px;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
}

.airport-image-stack {
    position: relative;
    height: 600px;
}

.stack-img {
    position: absolute;
    width: 82%;
    object-fit: cover;
    box-shadow: 0 24px 70px rgba(0,0,0,0.45);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0, 1);
}

.stack-img.stack-1 {
    top: 0;
    left: 0;
    height: 55%;
    z-index: 2;
}

.stack-img.stack-2 {
    bottom: 0;
    right: 0;
    height: 55%;
    z-index: 1;
}

.airport-image-stack:hover .stack-1 {
    transform: translate(-4px, -4px);
}

.airport-image-stack:hover .stack-2 {
    transform: translate(4px, 4px);
}

/* --- Gallery Slider --- */
.gallery-slider {
    position: relative;
    overflow: hidden;
}

.gallery-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--navy);
}

.gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0, 1);
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Subtle vignette on each slide */
.gallery-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 39, 68, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

/* Caption + Counter bar */
.gallery-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(200, 196, 188, 0.25);
}

.gallery-caption-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-caption-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    transition: opacity 0.4s ease;
}

.gallery-caption-sub {
    font-family: var(--font-secondary);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    transition: opacity 0.4s ease;
}

.gallery-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-secondary);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.05em;
}

#galleryCurrentNum {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--burgundy);
}

.gallery-counter-sep {
    width: 30px;
    height: 1px;
    background: var(--warm-gray);
}

#galleryTotalNum {
    color: var(--gray);
}

/* Navigation arrows */
.gallery-arrow {
    position: absolute;
    top: 0;
    height: calc(100% - 80px); /* viewport only, not the caption bar */
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease, background 0.3s ease;
}

.gallery-slider:hover .gallery-arrow {
    opacity: 1;
}

.gallery-prev {
    left: 0;
    padding-left: 16px;
    background: linear-gradient(to right, rgba(26, 39, 68, 0.4), transparent);
}

.gallery-next {
    right: 0;
    padding-right: 16px;
    background: linear-gradient(to left, rgba(26, 39, 68, 0.4), transparent);
}

.gallery-arrow:hover {
    background: rgba(26, 39, 68, 0.5);
}

.gallery-arrow svg {
    transition: transform 0.3s ease;
}

.gallery-prev:hover svg {
    transform: translateX(-3px);
}

.gallery-next:hover svg {
    transform: translateX(3px);
}

/* Dot indicators */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 8px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--warm-gray);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);
    padding: 0;
}

.gallery-dot.active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    transform: scale(1.2);
}

.gallery-dot:hover:not(.active) {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.2);
}

/* Thumbnail strip */
.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--warm-gray) transparent;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--warm-gray);
    border-radius: 2px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 66px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.45;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

.gallery-thumb:hover:not(.active) {
    opacity: 0.75;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Area Section --- */
.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.area-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    color: var(--navy);
    opacity: 0.82;
    margin-bottom: 16px;
}

.area-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 36px 24px;
    border: 1px solid var(--warm-gray);
    transition: all 0.5s cubic-bezier(0.4, 0, 0, 1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(201, 169, 110, 0.06), transparent);
    transition: height 0.5s ease;
}

.stat:hover::before {
    height: 100%;
}

.stat:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
    position: relative;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--gray);
    font-weight: 400;
    position: relative;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(255,255,255,0.72);
    margin-bottom: 44px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(6px);
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--gold);
    width: 24px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-item a,
.contact-item span {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 300;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 169, 110, 0.12);
    padding: 44px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-secondary);
    font-size: 0.92rem;
    padding: 15px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201, 169, 110, 0.15);
    color: var(--white);
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);
    -webkit-appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.04);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group textarea::placeholder {
    color: rgba(255,255,255,0.28);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.28);
}

/* Submit button special treatment */
.contact-form .btn-primary {
    margin-top: 8px;
    padding: 19px 44px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    border: 1px solid rgba(201, 169, 110, 0.2);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
}

.contact-form .btn-primary:hover {
    box-shadow: 0 14px 44px rgba(107, 26, 43, 0.4);
}

/* --- Footer --- */
#footer {
    background: #0B1219;
    color: rgba(255,255,255,0.55);
    padding: 90px 0 44px;
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 65px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links h4 {
    font-family: var(--font-secondary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.footer-links a,
.footer-links span {
    font-size: 0.88rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding-top: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.78rem;
    font-weight: 300;
}

.footer-legal {
    max-width: 500px;
    text-align: right;
    font-size: 0.7rem !important;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .section { padding: 100px 0; }

    .intro-grid,
    .experience-grid,
    .airport-grid,
    .area-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-viewport {
        aspect-ratio: 16 / 10;
    }

    .gallery-thumb {
        width: 85px;
        height: 56px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .airport-image-stack {
        height: 400px;
    }

    .image-frame::before,
    .image-frame::after {
        display: none;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }

    /* Nav Mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(26, 39, 68, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 110px 40px 40px;
        gap: 26px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0, 1);
        box-shadow: -10px 0 60px rgba(0,0,0,0.4);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 0.78rem;
        letter-spacing: 0.2em;
    }

    .nav-cta {
        margin-top: 20px;
        text-align: center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -5px);
    }

    /* Hero mobile */
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .hero-badge::before,
    .hero-badge::after {
        width: 24px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 210px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    /* Gallery */
    .gallery-viewport {
        aspect-ratio: 4 / 3;
    }

    .gallery-arrow {
        width: 44px;
        opacity: 1;
    }

    .gallery-info {
        padding: 18px 0;
    }

    .gallery-caption-title {
        font-size: 1.05rem;
    }

    .gallery-thumb {
        width: 70px;
        height: 46px;
    }

    .gallery-dots {
        gap: 8px;
        padding: 16px 0 6px;
    }

    .gallery-dot {
        width: 7px;
        height: 7px;
    }

    /* Airport */
    .airport-image-stack {
        height: 300px;
    }

    /* Area */
    .area-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }

    /* Parallax - disable on mobile */
    .parallax-section {
        background-attachment: scroll;
        height: 360px;
    }

    .parallax-content::before {
        font-size: 3rem;
        margin-bottom: 8px;
    }

    /* Intro stats - 3 across */
    .intro-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        text-align: center;
    }

    .intro-feature {
        align-items: center;
    }

    .feature-number {
        font-size: 2rem;
    }

    .feature-label {
        font-size: 0.62rem;
        letter-spacing: 0.1em;
    }

    /* Ornament */
    .ornament {
        padding: 20px 0;
    }

    .ornament-line {
        width: 50px;
    }

    /* Gallery mobile */
    .gallery-thumbs {
        margin-top: 16px;
    }

    /* Contact form wrapper */
    .contact-form-wrapper {
        padding: 20px;
        border: none;
        background: rgba(255,255,255,0.02);
    }

    /* Section header decorative line */
    .section-header::after {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 15px 34px;
        font-size: 0.68rem;
    }

    .gallery-grid {
        grid-auto-rows: 160px;
    }

    .stat {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* ============================================
   Live availability + Reserve modal (Rezdy)
   ============================================ */

.pricing-availability {
    margin: 18px 0 24px;
    font-family: var(--font-secondary);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    min-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-availability strong {
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.pricing-availability .avail-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--burgundy);
    box-shadow: 0 0 0 0 rgba(148, 28, 46, 0.5);
    animation: availPulse 2.4s ease-out infinite;
}

@keyframes availPulse {
    0%   { box-shadow: 0 0 0 0 rgba(148, 28, 46, 0.45); }
    70%  { box-shadow: 0 0 0 10px rgba(148, 28, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(148, 28, 46, 0); }
}

.pricing-card .btn[data-reserve] {
    cursor: pointer;
    border: none;
    font-family: var(--font-secondary);
}


.reserve-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.reserve-modal.open {
    display: flex;
}

.reserve-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 28, 46, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: fadeBackdrop 0.3s ease;
}

@keyframes fadeBackdrop {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.reserve-modal-panel {
    position: relative;
    background: var(--white);
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: liftPanel 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes liftPanel {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reserve-modal-header {
    padding: 28px 40px 20px;
    border-bottom: 1px solid rgba(10, 28, 46, 0.08);
}

.reserve-modal-header .section-label {
    color: var(--burgundy);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
}

.reserve-modal-header h3 {
    margin: 8px 0 0;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--navy);
    font-weight: 500;
}

.reserve-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--navy);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 2;
}

.reserve-modal-close:hover {
    background: rgba(10, 28, 46, 0.06);
    color: var(--burgundy);
}

.reserve-modal-body {
    flex: 1;
    overflow: auto;
    padding: 0;
    background: var(--cream);
}

.reserve-modal-body p {
    padding: 24px 40px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray);
}

.reserve-modal-body .btn {
    margin: 0 40px 32px;
}

.reserve-iframe {
    display: block;
    width: 100%;
    height: 70vh;
    min-height: 560px;
    border: 0;
    background: var(--cream);
}

.reserve-launch {
    padding: 36px 40px 40px;
    text-align: center;
    background: var(--white);
}

.reserve-launch .reserve-lede {
    padding: 0 !important;
    margin: 0 0 28px !important;
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--navy) !important;
    line-height: 1.5;
}

.reserve-launch .reserve-or {
    padding: 0 !important;
    margin: 18px 0 !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gray) !important;
}

.reserve-launch .btn {
    margin: 0 !important;
}

.reserve-launch .btn + .btn {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .reserve-launch {
        padding: 28px 24px 32px;
    }
}

@media (max-width: 768px) {
    .reserve-modal {
        padding: 0;
    }
    .reserve-modal-panel {
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
    }
    .reserve-modal-header {
        padding: 20px 24px 14px;
    }
    .reserve-modal-header h3 {
        font-size: 1.4rem;
    }
    .reserve-iframe {
        height: calc(100vh - 110px);
        min-height: 0;
    }
}
