/* GET IN THE HOLE™ - Ultra Premium Luxury Design */
/* Inspired by Rolex, Augusta National & High Fashion */
/* Enhanced Edition - 2024 */

:root {
    /* Brand Colors - Masters/Rolex Inspired */
    --green-deep: #006039;
    --green-dark: #004d2e;
    --green-darker: #003d24;
    --green-light: #007a48;
    --green-glow: rgba(0, 96, 57, 0.3);

    --gold: #A37E2C;
    --gold-light: #c9a24a;
    --gold-dark: #7d6122;
    --gold-glow: rgba(163, 126, 44, 0.4);
    --gold-shimmer: linear-gradient(135deg, #A37E2C 0%, #d4af37 50%, #A37E2C 100%);

    --white: #FFFFFF;
    --white-premium: #F8F5EE;
    --white-warm: #FAF8F3;

    --black: #000000;
    --black-deep: #0A0A0A;
    --black-soft: #1a1a1a;

    --grey-beige: #C9C0A0;
    --grey-warm: #9a9080;
    --grey-light: #e8e4db;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 140px;
    --container-width: 1280px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --transition-fast: 0.2s var(--ease-out-quart);
    --transition-medium: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
    --transition-slower: 1.2s var(--ease-out-expo);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--black-deep);
    background-color: var(--white-premium);
    overflow-x: hidden;
}

/* Global Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

::selection {
    background: var(--gold);
    color: var(--white);
}

/* Smooth scroll behavior for reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   SMOOTH SCROLL WRAPPER
   ============================================ */
#smooth-wrapper {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

#smooth-content {
    overflow: visible;
    width: 100%;
    /* Will be transformed by JS */
}

/* ============================================
   CURSOR GLOW (Desktop only)
   ============================================ */

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    mix-blend-mode: soft-light;
}

@media (hover: hover) {
    .cursor-glow {
        opacity: 0.6;
    }
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-deep);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white-premium);
    margin-bottom: 30px;
}

.preloader-line {
    width: 120px;
    height: 2px;
    background: rgba(163, 126, 44, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: preloaderLine 1.5s ease-in-out infinite;
}

@keyframes preloaderLine {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 10vw, 7rem);
}

h2 {
    font-size: clamp(2.25rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
    line-height: 1.8;
}

.lead {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.9;
    color: var(--black-soft);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* ============================================
   CONTAINER & SECTION
   ============================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 20rem);
    font-weight: 600;
    color: var(--green-deep);
    opacity: 0.03;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.05em;
}

.section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-header.centered {
    text-align: center;
}

.section-label-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-label-wrap.centered {
    justify-content: center;
}

.section-label-wrap.light .section-number,
.section-label-wrap.light .section-label {
    color: var(--gold);
}

.section-number {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    opacity: 0.7;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    color: var(--black-deep);
}

.section-title.light {
    color: var(--white-premium);
}

.section-title .title-italic {
    font-style: italic;
    color: var(--green-deep);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--grey-warm);
    margin-top: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-medium);
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 245, 238, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.nav.scrolled::before {
    opacity: 1;
}

.nav.scrolled {
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(0, 96, 57, 0.08);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--gold-shimmer);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
    transition: width 0.1s linear;
    z-index: 10;
}

@keyframes shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* Section Indicator Dots */
.section-indicators {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.section-indicators.visible {
    opacity: 1;
}

.section-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--grey-warm);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.section-indicator::before {
    content: attr(data-label);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-warm);
    white-space: nowrap;
    opacity: 0;
    transition: all var(--transition-fast);
    pointer-events: none;
}

.section-indicator:hover::before {
    opacity: 1;
    right: 24px;
}

.section-indicator:hover {
    border-color: var(--gold);
    transform: scale(1.2);
}

.section-indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .section-indicators {
        display: none;
    }
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    transition: transform var(--transition-fast);
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white-premium);
    transition: color var(--transition-fast);
}

.logo-tm {
    font-size: 0.625rem;
    color: var(--gold);
}

.nav.scrolled .logo-text {
    color: var(--black-deep);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.nav-menu a {
    position: relative;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.nav.scrolled .nav-menu a {
    color: var(--black-soft);
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-medium);
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-cta {
    padding: 12px 28px !important;
    background: var(--gold);
    color: var(--white) !important;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.6875rem !important;
    transition: all var(--transition-medium) !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(163, 126, 44, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white-premium);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--black-deep);
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

/* ============================================
   HERO SECTION (WOW EDITION)
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, #004d2e 0%, #002a19 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 1200px;
    mix-blend-mode: normal;
}

.hero-title {
    margin-bottom: 40px;
    position: relative;
}

.title-line {
    display: block;
    overflow: hidden;
    /* For reveal animation */
}

.title-word {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white-premium);
    transform: translateY(100%);
    opacity: 0;
    animation: revealUp 1.2s var(--ease-out-expo) forwards;
}

.title-line-1 .title-word {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-right: 0.2em;
}

.title-line-2 {
    margin-top: -0.2em;
}

.title-accent {
    font-size: clamp(5rem, 15vw, 12rem) !important;
    color: transparent !important;
    -webkit-text-stroke: 2px var(--gold);
    font-weight: 800;
    letter-spacing: 0.02em !important;
    position: relative;
}

/* Mask Overlay for "HOLE" */
.title-mask-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gold), #fff, var(--gold));
    mix-blend-mode: overlay;
    opacity: 0.5;
    pointer-events: none;
    display: none;
    /* Enabled via JS if needed or kept simple */
}

@keyframes revealUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 60px;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards;
}

/* Scroll Hint */
.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background: var(--white);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(163, 126, 44, 0.35);
}

.btn-primary .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--white-premium);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
    border: none;
}

.btn-whatsapp .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #20bd5a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.btn-whatsapp:hover .btn-bg {
    transform: scaleX(1);
}

.btn-whatsapp .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.btn-form {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-form .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.btn-form:hover .btn-bg {
    transform: scaleX(1);
}

.btn-form .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color var(--transition-medium);
}

.btn-form:hover .btn-content {
    color: var(--white);
}

.btn-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(163, 126, 44, 0.25);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */

.experience {
    background: var(--white-premium);
}

.experience-intro {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
    position: relative;
}

.intro-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 30px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.grid-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-warm);
    margin-bottom: 40px;
}

.title-decoration {
    width: 24px;
    height: 1px;
    background: var(--gold);
}

/* Duration Cards */
.duration-cards {
    display: flex;
    gap: 20px;
}

.duration-card {
    flex: 1;
    position: relative;
    padding: 50px 24px;
    background: var(--white);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* 3D Tilt Effect on Hover */
.duration-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow:
        0 25px 50px -12px rgba(0, 96, 57, 0.15),
        0 0 0 1px var(--gold);
}

.duration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(0, 96, 57, 0.08);
    transition: border-color var(--transition-medium);
}

.duration-card:hover::before,
.duration-card.featured::before {
    border-color: var(--gold);
}

/* Shine Effect on Hover */
.duration-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(163, 126, 44, 0.1) 50%,
            transparent 70%);
    transform: translateX(-100%) rotate(45deg);
    transition: none;
    pointer-events: none;
}

.duration-card:hover::after {
    animation: cardShine 0.6s ease forwards;
}

@keyframes cardShine {
    to {
        transform: translateX(100%) rotate(45deg);
    }
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.duration-card:hover .card-glow {
    opacity: 0.3;
}

.duration-card.featured .card-glow {
    opacity: 0.2;
}

.card-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.card-corner-tl {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.card-corner-br {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.duration-card:hover .card-corner,
.duration-card.featured .card-corner {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--gold);
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.duration-time {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    color: var(--green-deep);
    line-height: 1;
    margin-bottom: 12px;
    transition: color var(--transition-medium);
}

.duration-card:hover .duration-time,
.duration-card.featured .duration-time {
    color: var(--gold);
}

.time-unit {
    font-size: 2rem;
    color: var(--grey-warm);
}

.duration-holes {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--grey-warm);
}

/* Pillars */
.pillar-list {
    list-style: none;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    position: relative;
}

.pillar-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 96, 57, 0.1), transparent);
}

.pillar-number {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    opacity: 0.5;
}

.pillar-text {
    font-size: 1rem;
    color: var(--black-soft);
}

/* Distinction */
.experience-distinction {
    background: var(--green-deep);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.distinction-content {
    max-width: 700px;
    margin: 0 auto;
}

.distinction-item {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.distinction-item.crossed {
    display: block;
}

.cross-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    animation: crossLine 0.8s var(--ease-out-expo) forwards;
}

@keyframes crossLine {
    to {
        transform: scaleX(1);
    }
}

.distinction-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 32px 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: rgba(163, 126, 44, 0.3);
}

.divider-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
}

.divider-icon svg {
    width: 100%;
    height: 100%;
}

.distinction-item.highlight {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--white-premium);
    margin-bottom: 0;
}

.distinction-item.highlight em {
    display: block;
    color: var(--gold);
    font-style: italic;
    margin-top: 8px;
}

/* ============================================
   DIRECTOR SECTION
   ============================================ */

.director {
    background: linear-gradient(180deg, #f7f5ef 0%, var(--white-premium) 100%);
    position: relative;
}

.director-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 96, 57, 0.03) 0%, transparent 100%);
}

.director-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

/* Director Image */
.director-image {
    position: relative;
}

.image-frame {
    position: relative;
    aspect-ratio: 3/4;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    z-index: 2;
}

.frame-tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.frame-tr {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.frame-bl {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.frame-br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(163, 126, 44, 0.1) 0%, transparent 50%);
}

.image-placeholder .initials {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.2;
}

.image-accent {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(163, 126, 44, 0.2);
    z-index: -1;
}

/* Director Content */
.director-name {
    margin-bottom: 8px;
}

.name-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--black-deep);
    line-height: 1.1;
}

.name-accent {
    color: var(--green-deep);
}

.director-role {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.director-intro {
    font-size: 1.125rem;
    color: var(--black-soft);
    line-height: 1.8;
    margin-bottom: 40px;
}

.director-achievements {
    list-style: none;
    margin-bottom: 40px;
}

.director-achievements li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 96, 57, 0.08);
    font-size: 1rem;
    color: var(--black-soft);
    transition: all var(--transition-fast);
}

.director-achievements li:hover {
    padding-left: 8px;
    border-bottom-color: var(--gold);
}

.achievement-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.achievement-icon svg {
    width: 100%;
    height: 100%;
}

.director-quote {
    position: relative;
    padding-left: 30px;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: 0;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.director-quote p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--green-deep);
    line-height: 1.7;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
    background: var(--white-premium);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            rgba(163, 126, 44, 0.1) 0%,
            rgba(163, 126, 44, 0.3) 50%,
            rgba(163, 126, 44, 0.1) 100%);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--gold), var(--gold-light));
    transition: height 0.3s ease;
    box-shadow: 0 0 20px rgba(163, 126, 44, 0.5);
}

.process-step {
    display: flex;
    gap: 50px;
    padding: 50px 0;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover {
    transform: translateX(10px);
}

.step-marker {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.marker-number {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.process-step:hover .marker-number {
    opacity: 1;
    transform: scale(1.1);
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--white-premium);
    border: 3px solid var(--gold);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 0 0 0 rgba(163, 126, 44, 0.4);
}

.process-step:hover .marker-dot {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 0 10px rgba(163, 126, 44, 0.1),
        0 0 20px rgba(163, 126, 44, 0.3);
}

.marker-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover .marker-dot::after {
    opacity: 1;
}

.step-content {
    flex: 1;
    padding: 20px 40px;
    background: var(--white);
    border: 1px solid rgba(0, 96, 57, 0.08);
    border-left: 3px solid transparent;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease-out-expo);
}

.process-step:hover .step-content::before {
    transform: scaleY(1);
}

.process-step:hover .step-content {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(163, 126, 44, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(163, 126, 44, 0.1);
}

.step-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(163, 126, 44, 0.3);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--black-deep);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.process-step:hover .step-content h3 {
    color: var(--green-deep);
}

.step-content p {
    color: var(--black-soft);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Highlight Step */
.process-step.highlight .step-content {
    background: linear-gradient(135deg,
            rgba(0, 96, 57, 0.03) 0%,
            rgba(163, 126, 44, 0.03) 100%);
    border-color: var(--gold);
}

.process-step.highlight .marker-dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 8px rgba(163, 126, 44, 0.15),
        0 0 30px rgba(163, 126, 44, 0.4);
}

.process-step.highlight .marker-dot::after {
    opacity: 1;
    background: var(--white);
}

/* ============================================
   FORMULES SECTION
   ============================================ */

.formules {
    background: var(--green-deep);
    position: relative;
}

.formules-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.formules-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 90%, rgba(163, 126, 44, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(163, 126, 44, 0.08) 0%, transparent 40%);
}

.formules-content {
    position: relative;
    z-index: 1;
}

.formules-durations {
    margin-bottom: 80px;
}

.formules-subtitle {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-beige);
    margin-bottom: 40px;
}

.durations-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.duration-item {
    text-align: center;
}

.duration-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--white-premium);
    line-height: 1;
}

.duration-unit {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--grey-beige);
}

.duration-separator {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.format-card {
    position: relative;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(163, 126, 44, 0.15);
    text-align: center;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Glassmorphism Glow */
.format-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(163, 126, 44, 0.1) 0%,
            transparent 50%,
            rgba(163, 126, 44, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.format-card:hover::before {
    opacity: 1;
}

.format-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.3),
        0 0 40px -10px rgba(163, 126, 44, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.format-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--gold);
    opacity: 0.8;
    transition: all var(--transition-medium);
}

.format-card:hover .format-icon {
    opacity: 1;
    transform: scale(1.1);
}

.format-icon svg {
    width: 100%;
    height: 100%;
}

.format-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white-premium);
    margin-bottom: 8px;
}

.format-players {
    font-size: 0.875rem;
    color: var(--grey-beige);
}

.format-line {
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.format-card:hover .format-line {
    transform: scaleX(1);
}

.formules-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    padding: 24px;
    border: 1px solid rgba(163, 126, 44, 0.2);
}

.note-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.note-icon svg {
    width: 100%;
    height: 100%;
}

.formules-note p {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gold);
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location {
    background: var(--white-premium);
}

.location-options {
    display: flex;
    align-items: stretch;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    flex: 1;
    position: relative;
    padding: 60px 40px;
    background: var(--white);
    border: 1px solid rgba(0, 96, 57, 0.08);
    text-align: center;
    transition: all var(--transition-medium);
}

.location-card:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 96, 57, 0.08);
    transform: translateY(-10px);
}

/* Location card shine effect */
.location-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(163, 126, 44, 0.1),
            transparent);
    transition: none;
}

.location-card:hover::after {
    animation: locationShine 0.8s ease forwards;
}

@keyframes locationShine {
    to {
        left: 100%;
    }
}

.location-number {
    position: absolute;
    top: 20px;
    left: 20px;
}

.location-number span {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    opacity: 0.5;
}

.location-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--green-deep);
    transition: all var(--transition-medium);
}

.location-card:hover .location-icon {
    color: var(--gold);
    transform: scale(1.1);
}

.location-icon svg {
    width: 100%;
    height: 100%;
}

.location-card h3 {
    font-size: 1.25rem;
    color: var(--black-deep);
    margin-bottom: 16px;
}

.location-card p {
    color: var(--black-soft);
    margin-bottom: 8px;
}

.location-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: var(--gold);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.location-note {
    font-style: italic;
    color: var(--gold) !important;
    font-size: 0.875rem !important;
    margin-top: 16px !important;
}

.location-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--grey-warm);
}

/* ============================================
   RESERVATION SECTION
   ============================================ */

.reservation {
    position: relative;
    text-align: center;
    padding: 160px 0;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.reservation-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #f5f2eb 0%, var(--white-premium) 50%, #f5f2eb 100%);
}

.reservation-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.reservation-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--gold);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.reservation-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--black-deep);
    margin-bottom: 60px;
    line-height: 1.1;
}

.reservation-title .title-accent {
    display: block;
    color: var(--green-deep);
}

.channels-intro {
    font-size: 1rem;
    color: var(--grey-warm);
    margin-bottom: 32px;
}

.channel-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
    margin: 0 auto;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--white-premium);
    padding: 60px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform var(--transition-medium);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(0, 96, 57, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    border-color: var(--gold);
    background: var(--gold);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--black-soft);
    transition: color var(--transition-fast);
}

.modal-close:hover svg {
    color: var(--white);
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header h3 {
    font-size: 2rem;
    color: var(--green-deep);
    margin-bottom: 12px;
}

.modal-header p {
    font-size: 0.9375rem;
    color: var(--grey-warm);
}

/* Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black-soft);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: 1px solid rgba(0, 96, 57, 0.15);
    background: var(--white);
    color: var(--black-deep);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--grey-warm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(163, 126, 44, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 18px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all var(--transition-medium);
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(163, 126, 44, 0.3);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--black-deep);
    color: var(--white-premium);
}

.footer-top {
    padding: 100px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--grey-beige);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-beige);
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-contact li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a,
.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
    color: var(--gold);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credits {
    font-style: italic;
}

/* ============================================
   ANIMATIONS
   ============================================ */

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Text Reveal Mask Animation */
.text-reveal {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.text-reveal-inner {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s var(--ease-out-expo);
}

.text-reveal.revealed .text-reveal-inner {
    transform: translateY(0);
}

/* Split Text Animation */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s var(--ease-out-expo);
}

.split-text.animate .char {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Stagger delays for chars */
.split-text .char:nth-child(1) {
    transition-delay: 0.05s;
}

.split-text .char:nth-child(2) {
    transition-delay: 0.1s;
}

.split-text .char:nth-child(3) {
    transition-delay: 0.15s;
}

.split-text .char:nth-child(4) {
    transition-delay: 0.2s;
}

.split-text .char:nth-child(5) {
    transition-delay: 0.25s;
}

.split-text .char:nth-child(6) {
    transition-delay: 0.3s;
}

.split-text .char:nth-child(7) {
    transition-delay: 0.35s;
}

.split-text .char:nth-child(8) {
    transition-delay: 0.4s;
}

.split-text .char:nth-child(9) {
    transition-delay: 0.45s;
}

.split-text .char:nth-child(10) {
    transition-delay: 0.5s;
}

/* Blur In Animation */
.blur-in {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.95);
    transition: all 1s var(--ease-out-expo);
}

.blur-in.visible {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* Slide Up Stagger */
.stagger-up>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out-expo);
}

.stagger-up.visible>*:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-up.visible>*:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-up.visible>*:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-up.visible>*:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-up.visible>*:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

/* Scale In Animation */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s var(--ease-bounce);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Rotate In Animation */
.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0) translateY(0);
}

/* Draw Line Animation */
.draw-line {
    width: 0;
    transition: width 1s var(--ease-out-expo);
}

.draw-line.visible {
    width: 100%;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Pulse Glow Animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(163, 126, 44, 0.4);
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(163, 126, 44, 0.2);
    }
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* ============================================
   FLOATING PARTICLES
   ============================================ */

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 1.5s;
    animation-duration: 14s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 3.5s;
    animation-duration: 12s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: 4.5s;
    animation-duration: 16s;
}

.particle:nth-child(11) {
    left: 25%;
    animation-delay: 0.5s;
    animation-duration: 13s;
}

.particle:nth-child(12) {
    left: 75%;
    animation-delay: 2.2s;
    animation-duration: 15s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Larger floating orbs */
.particle-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(163, 126, 44, 0.2), transparent 70%);
    filter: blur(1px);
    animation: orbFloat 20s ease-in-out infinite;
}

.particle-orb:nth-child(1) {
    width: 100px;
    height: 100px;
    left: 5%;
    top: 20%;
    animation-delay: 0s;
}

.particle-orb:nth-child(2) {
    width: 60px;
    height: 60px;
    right: 10%;
    top: 40%;
    animation-delay: -5s;
}

.particle-orb:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 50%;
    bottom: 20%;
    animation-delay: -10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-10px, 20px) scale(0.9);
    }

    75% {
        transform: translate(15px, 10px) scale(1.05);
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--green-deep);
    border: 1px solid rgba(163, 126, 44, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all var(--transition-medium);
    overflow: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 15px 40px rgba(163, 126, 44, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--white-premium);
    transition: transform var(--transition-fast);
}

.back-to-top:hover svg {
    transform: translateY(-2px);
    animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Progress ring around button */
.back-to-top::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.back-to-top:hover::before {
    opacity: 1;
    animation: progressSpin 1s linear infinite;
}

@keyframes progressSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   ANIMATED SVG GOLF ELEMENTS
   ============================================ */

.golf-ball-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
}

.golf-ball-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff 0%, #e8e4db 50%, #c9c0a0 100%);
    box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.1);
}

/* Golf flag animation */
.golf-flag {
    position: relative;
    display: inline-block;
}

.golf-flag-wave {
    animation: flagWave 2s ease-in-out infinite;
    transform-origin: left center;
}

@keyframes flagWave {

    0%,
    100% {
        transform: skewY(0deg);
    }

    25% {
        transform: skewY(2deg);
    }

    75% {
        transform: skewY(-2deg);
    }
}

/* Animated underline for links */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
}

.animated-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============================================
   ENHANCED MICRO-INTERACTIONS
   ============================================ */

/* Button ripple effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Hover lift effect */
.hover-lift {
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Magnetic hover area */
.magnetic-area {
    transition: transform var(--transition-fast);
}

/* Image reveal on hover */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal img {
    transition: transform var(--transition-slow);
}

.image-reveal:hover img {
    transform: scale(1.1);
}

.image-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.image-reveal:hover::after {
    opacity: 1;
}

/* Border animation */
.border-animate {
    position: relative;
}

.border-animate::before,
.border-animate::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-medium);
}

.border-animate::before {
    top: 0;
    left: 0;
}

.border-animate::after {
    bottom: 0;
    right: 0;
}

.border-animate:hover::before,
.border-animate:hover::after {
    width: 100%;
}

/* Glow on focus for inputs */
.input-glow:focus {
    box-shadow:
        0 0 0 3px rgba(163, 126, 44, 0.1),
        0 0 20px rgba(163, 126, 44, 0.1);
}

/* Skeleton loading animation */
.skeleton {
    background: linear-gradient(90deg,
            rgba(0, 96, 57, 0.05) 25%,
            rgba(0, 96, 57, 0.1) 50%,
            rgba(0, 96, 57, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Smooth section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--gold) 50%,
            transparent 100%);
    opacity: 0.3;
    margin: 0 auto;
    max-width: 200px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
    }

    .hero-side-text {
        display: none;
    }

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

    .director-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .director-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .formats-grid {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--green-deep);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        font-size: 1.5rem !important;
        color: var(--white-premium) !important;
    }

    .nav-menu .nav-cta {
        font-size: 0.875rem !important;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .feature-divider {
        width: 1px;
        height: 30px;
        background: linear-gradient(180deg, transparent, var(--gold), transparent);
    }

    .duration-cards {
        flex-direction: column;
    }

    .durations-display {
        flex-direction: column;
        gap: 30px;
    }

    .duration-separator {
        width: 1px;
        height: 40px;
        background: linear-gradient(180deg, transparent, var(--gold), transparent);
    }

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

    .location-options {
        flex-direction: column;
    }

    .location-divider {
        transform: rotate(90deg);
        margin: 20px 0;
    }

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

    .modal-content {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .experience-distinction {
        padding: 60px 30px;
    }

    .timeline-line {
        left: 15px;
    }

    .process-step {
        gap: 24px;
    }

    .step-marker {
        width: 30px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .particles-container {
        opacity: 0.5;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

    .nav,
    .preloader,
    .cursor-glow,
    .back-to-top,
    .section-indicators,
    .particles-container,
    .hero-float {
        display: none !important;
    }

    .section {
        padding: 40px 0;
    }

    body::before {
        display: none;
    }
}