/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    color: #1a1a2e;
    background: #faf8f4;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
    --navy: #0a1f3f;
    --navy-light: #132d54;
    --gold: #d4a843;
    --gold-light: #e8c36a;
    --gold-dark: #b8912e;
    --cream: #faf8f4;
    --white: #ffffff;
    --gray-100: #f5f3ef;
    --gray-200: #e8e5de;
    --gray-400: #9e9a91;
    --gray-600: #6b6860;
    --gray-800: #2d2b26;
    --font-body: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(10,31,63,0.06);
    --shadow-md: 0 8px 30px rgba(10,31,63,0.10);
    --shadow-lg: 0 20px 60px rgba(10,31,63,0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITY ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,168,67,0.35);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}
.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION TAG ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(212,168,67,0.12);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display), serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(10,31,63,0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    position: relative;
}
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1f3f 0%, #132d54 35%, #1a3a6b 60%, #0d2240 100%);
}
.geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}
.geo-1 {
    width: 600px; height: 600px;
    background: var(--gold);
    top: -200px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.geo-2 {
    width: 400px; height: 400px;
    background: var(--gold-light);
    bottom: -100px; left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}
.geo-3 {
    width: 200px; height: 200px;
    background: var(--gold);
    top: 30%; left: 5%;
    animation: float 6s ease-in-out infinite;
}
.geo-4 {
    width: 120px; height: 120px;
    background: var(--white);
    top: 20%; right: 30%;
    opacity: 0.06;
    animation: float 7s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(212,168,67,0.15);
    border: 1px solid rgba(212,168,67,0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.hero-title {
    font-family: var(--font-display), serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
    font-family: var(--font-display), serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}
.hero-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
.hero-image { position: relative; }
.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}
.hero-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,31,63,0.9);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 50px;
}
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== LODGING ===== */
.section { padding: 100px 0; position: relative; }
.lodging { background: var(--cream); }
.lodging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}
.lodging-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.lodging-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.lodging-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 500/340;
}
.lodging-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.lodging-card:hover .lodging-card-img img { transform: scale(1.06); }
.lodging-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.lodging-card-body { padding: 28px; }
.lodging-card-body h3 {
    font-family: var(--font-display), serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.lodging-card-body p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}
.lodging-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}
.lodging-amenities li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-800);
    font-weight: 500;
}
.lodging-pattern { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; pointer-events: none; }

/* ===== EVENTS ===== */
.events {
    background: var(--navy);
    overflow: hidden;
}
.events-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.geo-e1 {
    position: absolute;
    width: 500px; height: 500px;
    background: var(--gold);
    border-radius: 50%;
    top: -250px; right: -100px;
    opacity: 0.06;
}
.geo-e2 {
    position: absolute;
    width: 300px; height: 300px;
    background: var(--gold-light);
    border-radius: 50%;
    bottom: -100px; left: 20%;
    opacity: 0.05;
}
.events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.events-text .section-tag { background: rgba(212,168,67,0.2); }
.events-text .section-title { color: var(--white); }
.events-text .section-desc { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.events-features { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.event-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.event-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(212,168,67,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-feature h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.event-feature p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}
.events-images { position: relative; }
.events-img-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.events-img-main img { width: 100%; aspect-ratio: 520/400; object-fit: cover; }
.events-img-stack {
    position: absolute;
    bottom: -40px;
    left: -40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.events-img-stack img {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 300/220;
    object-fit: cover;
}

/* ===== RECREATION ===== */
.recreation { background: var(--white); }
.rec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rec-card {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}
.rec-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.rec-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 0 var(--radius-md) 0 100%;
    opacity: 0.1;
    transition: var(--transition);
}
.rec-card:hover .rec-card-accent { opacity: 0.2; width: 140px; height: 140px; }
.rec-card-icon {
    margin-bottom: 20px;
    transition: var(--transition);
}
.rec-card h3 {
    font-family: var(--font-display), serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    transition: var(--transition);
}
.rec-card:hover h3 { color: var(--white); }
.rec-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
    transition: var(--transition);
}
.rec-card:hover p { color: rgba(255,255,255,0.6); }

/* ===== ABOUT ===== */
.about {
    background: var(--cream);
    overflow: hidden;
}
.about-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.geo-a1 {
    position: absolute;
    width: 400px; height: 400px;
    background: var(--gold);
    border-radius: 50%;
    bottom: -200px; right: -100px;
    opacity: 0.06;
}
.geo-a2 {
    position: absolute;
    width: 200px; height: 200px;
    background: var(--navy);
    border-radius: 50%;
    top: 10%; left: -60px;
    opacity: 0.04;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-primary {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-primary img { width: 100%; aspect-ratio: 480/560; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--cream);
}
.about-img-secondary img { width: 100%; aspect-ratio: 340/260; object-fit: cover; }
.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-badge-num {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 4px;
}
.about-badge-year {
    font-family: var(--font-display), serif;
    font-size: 1.1rem;
    font-weight: 700;
}
.about-text .section-tag { background: rgba(212,168,67,0.12); }
.about-text .section-title { color: var(--navy); margin-bottom: 24px; }
.about-text p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-values { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.about-value { display: flex; gap: 20px; align-items: flex-start; }
.about-value-num {
    flex-shrink: 0;
    font-family: var(--font-display), serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    opacity: 0.6;
}
.about-value h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}
.about-value p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--navy);
    overflow: hidden;
    padding: 80px 0;
}
.cta-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.geo-c1 {
    position: absolute;
    width: 300px; height: 300px;
    background: var(--gold);
    border-radius: 50%;
    top: -150px; left: 10%;
    opacity: 0.07;
}
.geo-c2 {
    position: absolute;
    width: 200px; height: 200px;
    background: var(--gold-light);
    border-radius: 50%;
    bottom: -80px; right: 20%;
    opacity: 0.06;
}
.geo-c3 {
    position: absolute;
    width: 100px; height: 100px;
    background: var(--white);
    border-radius: 50%;
    top: 20%; right: 5%;
    opacity: 0.04;
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-title {
    font-family: var(--font-display), serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-tag { background: rgba(212,168,67,0.12); }
.contact-info .section-title { color: var(--navy); margin-bottom: 16px; }
.contact-info .section-desc { color: var(--gray-600); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(212,168,67,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 4px;
}
.contact-detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
}
.contact-detail-value a { transition: var(--transition); }
.contact-detail-value a:hover { color: var(--gold-dark); }
.contact-map {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.contact-map img { width: 100%; aspect-ratio: 520/240; object-fit: cover; }
.contact-form-wrap { }
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
    font-family: var(--font-display), serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.form-sub {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success h4 {
    font-family: var(--font-display), serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin: 16px 0 8px;
}
.form-success p { color: var(--gray-600); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 80px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-col a, .footer-col span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    padding: 6px 0;
    transition: var(--transition);
    line-height: 1.5;
}
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { display: none; }
    .lodging-grid { grid-template-columns: repeat(2, 1fr); }
    .events-layout { grid-template-columns: 1fr; gap: 60px; }
    .events-images { max-width: 560px; }
    .about-layout { grid-template-columns: 1fr; gap: 60px; }
    .about-images { max-width: 560px; }
    .contact-layout { grid-template-columns: 1fr; gap: 60px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; z-index: 1001; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 1.4rem; }
    .lodging-grid { grid-template-columns: 1fr; }
    .rec-grid { grid-template-columns: 1fr 1fr; }
    .events-img-stack { position: relative; bottom: auto; left: auto; margin-top: 16px; }
    .about-img-secondary { position: relative; bottom: auto; right: auto; margin-top: 16px; }
    .about-badge { position: relative; top: auto; left: auto; display: inline-block; margin-bottom: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .section { padding: 72px 0; }
    .section-header { margin-bottom: 48px; }
    .rec-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .contact-form-card { padding: 24px; }
}
