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

:root {
    --primary: #000000;
    --accent: #d4af37;
    --text: #1a1a1a;
    --text-light: #666666;
    --bg: #ffffff;
    --bg-light: #f8f8f8;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', 'Helvetica Neue', sans-serif;
}

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

/* Hero Wrapper */
.hero-wrapper {
    padding: 1.5rem;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.hero-card {
    flex: 1;
    background: var(--bg-light);
    border-radius: 28px;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    padding: 2rem 3rem;
    z-index: 1000;
    position: relative;
}

.navbar.scrolled {
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Hero Inner */
.hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 3rem 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 2rem;
    color: var(--text);
}

.hero-title .highlight {
    font-style: italic;
    color: var(--accent);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 450px;
    margin-bottom: 4rem;
}

.scroll-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--accent);
    transform: translateY(5px);
}

/* Hero Video */
.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 600px;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.image-placeholder {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 8rem 4rem;
    background: var(--bg-light);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 3rem;
    max-width: 1000px;
}

.about-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 6rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meta-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.meta-value {
    font-weight: 500;
}

.meta-year {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.feature {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}

/* Experiences Section */
.experiences {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.experiences-header {
    margin-bottom: 6rem;
}

.section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.experiences-header h2 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 1rem;
}

.experiences-header h2 .highlight {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.experiences-header h3 {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.experience-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
    align-items: center;
}

.experience-name {
    font-family: var(--font-display);
    display: flex;
    gap: 1rem;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.experience-type {
    font-weight: 400;
    color: var(--text-light);
}

.experience-description {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.spec-label {
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.05rem;
    font-weight: 500;
}

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

.experience-card {
    padding: 3rem 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.experience-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.card-image {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.experience-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.experience-card p {
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 8rem 4rem;
    background: var(--bg-light);
}

.how-it-works h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 6rem;
}

.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-image {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
}

/* Destinations */
.destinations {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.stats {
    display: flex;
    gap: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
}

.destinations-header h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
}

.destinations-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.destination {
    font-family: var(--font-display);
    padding: 2rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.destination.visible {
    opacity: 1;
    transform: translateY(0);
}

.destination:hover {
    background: var(--bg-light);
    color: var(--accent);
    transform: translateY(-5px);
}

.globe-placeholder {
    width: 100%;
    aspect-ratio: 2/1;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
}

/* CTA */
.cta {
    padding: 10rem 4rem;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.cta-content > p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.button-primary {
    padding: 1.5rem 3rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255,255,255,0.2);
}

.cta-subtext {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 4rem;
    background: var(--bg-light);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-info a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-wrapper {
        padding: 0.75rem;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-video {
        width: 100%;
        height: 300px;
        border-radius: 20px;
    }

    .navbar {
        padding: 1.5rem;
    }

    .about-features,
    .experience-showcase,
    .benefits-grid,
    .destinations-list {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}
