/* ============================================
   Gold Rain Retreat - Luxury Mountain Cabin
   Color Palette:
   - Deep Forest:  #1a2e1a
   - Pine Green:   #2d4a2d
   - Warm Brown:   #5c3a1e
   - Rich Leather: #8b6914
   - Gold:         #c9a84c
   - Light Gold:   #e8d5a3
   - Cream:        #f5f0e8
   - Dark Charcoal:#1a1a17
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --deep-forest: #1a2e1a;
    --pine: #2d4a2d;
    --pine-light: #3d6b3d;
    --brown: #5c3a1e;
    --brown-light: #7a5230;
    --leather: #8b6914;
    --gold: #c9a84c;
    --gold-light: #dcc06a;
    --gold-pale: #e8d5a3;
    --cream: #f5f0e8;
    --cream-dark: #ebe3d4;
    --charcoal: #1a1a17;
    --charcoal-light: #2a2a24;
    --text-dark: #2c2c26;
    --text-medium: #5a5a50;
    --text-light: #f5f0e8;
    --white: #fffef9;
    --shadow: rgba(26, 26, 23, 0.15);
    --shadow-heavy: rgba(26, 26, 23, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Raleway', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 500;
    line-height: 1.2;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 20px;
}

.loader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 3px;
    white-space: nowrap;
}

.loader-logo {
    height: 100px;
    width: auto;
}

.gold-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: pulseLine 1.5s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% { opacity: 0.3; width: 40px; }
    50% { opacity: 1; width: 70px; }
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
    background: rgba(26, 26, 23, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px var(--shadow);
}

#navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold) !important;
    font-size: 1.1rem;
}

.nav-logo-img {
    height: 70px;
    width: auto;
    border-radius: 4px;
}

.logo-icon {
    font-size: 1.4rem;
    color: var(--gold);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--cream);
}

.logo-accent {
    color: var(--gold);
    margin-left: 4px;
}

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

.nav-link {
    color: var(--cream) !important;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.nav-cta {
    background: var(--gold);
    border: 1px solid var(--gold) !important;
    border-radius: 2px;
    margin-left: 12px;
    padding: 10px 22px !important;
    color: var(--charcoal) !important;
    font-weight: 600;
    box-shadow: 0 3px 14px rgba(201,168,76,0.25);
}

.nav-cta:hover {
    background: var(--gold-light);
    border-color: var(--gold-light) !important;
    color: var(--charcoal) !important;
    box-shadow: 0 6px 22px rgba(201,168,76,0.45);
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 115vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(26,46,26,0.30) 0%, rgba(26,26,23,0.22) 50%, rgba(92,58,30,0.28) 100%),
        url('images/hero-view.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(45,74,45,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(92,58,30,0.15) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    top: -20px;
    background: var(--gold);
    border-radius: 50%;
    animation: rainDown linear infinite;
}

@keyframes rainDown {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: var(--opacity, 0.3); }
    90% { opacity: var(--opacity, 0.3); }
    100% { transform: translateY(120vh); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 800px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-accent {
    color: var(--gold);
    display: inline-block;
}

.hero-logo {
    max-width: 650px;
    width: 85vw;
    height: auto;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-divider::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.divider-diamond {
    color: var(--gold);
    font-size: 0.7rem;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--cream-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 20px 44px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 4px 18px rgba(201,168,76,0.25);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--charcoal) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(201,168,76,0.5);
}

.btn-outline {
    background: transparent;
    color: var(--cream) !important;
    border: 1px solid var(--gold-pale);
}

.btn-outline:hover {
    background: rgba(201,168,76,0.15);
    border-color: var(--gold);
    color: var(--gold) !important;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--charcoal) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold-pale) !important;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bobDown 2s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 1.2rem;
}

@keyframes bobDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Fade-up Animations --- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light .section-tagline,
.section-header.light .section-title,
.section-header.light .section-description {
    color: var(--cream);
}

.section-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.section-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- About Section --- */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-grid.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 400px;
    background-image: url('images/about-exterior.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.about-image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    z-index: 0;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

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

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-medium);
}

.about-subtitle {
    font-size: 1.6rem;
    color: var(--deep-forest);
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text-col p {
    color: var(--text-medium);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-quote {
    margin: 30px 0;
    padding: 24px 30px;
    border-left: 3px solid var(--gold);
    background: var(--cream);
}

.about-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--deep-forest) !important;
    margin: 0 !important;
}

/* --- Ideal For Section --- */
.ideal-for-section {
    background: var(--charcoal);
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ideal-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 4px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ideal-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.ideal-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--gold);
}

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

.ideal-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 14px;
}

.ideal-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    color: rgba(245,240,232,0.7);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .ideal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .ideal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- Gallery Section --- */
.gallery-section {
    background: var(--cream);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--cream-dark);
    background: var(--white);
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    grid-auto-flow: dense;
    gap: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

/* Gallery image backgrounds */
.gi-living         { background: url('images/gal-living.jpg') center/cover no-repeat; }
.gi-living-dining  { background: url('images/gal-living-dining.jpg') center/cover no-repeat; }
.gi-deck           { background: url('images/gal-deck.jpg') center/cover no-repeat; }
.gi-kitchen-dining { background: url('images/gal-kitchen-dining.jpg') center/cover no-repeat; }
.gi-kitchen        { background: url('images/gal-kitchen.jpg') center/cover no-repeat; }
.gi-pantry         { background: url('images/gal-pantry.jpg') center/cover no-repeat; }
.gi-arcade         { background: url('images/gal-arcade.jpg') center/cover no-repeat; }
.gi-downstairs     { background: url('images/gal-downstairs-view.jpg') center/cover no-repeat; }
.gi-junior         { background: url('images/gal-junior.jpg') center/cover no-repeat; }
.gi-bunk           { background: url('images/gal-bunk.jpg') center/cover no-repeat; }
.gi-master-bath    { background: url('images/gal-master-bath.jpg') center/cover no-repeat; }
.gi-hottub         { background: url('images/gal-hottub.jpg') center/cover no-repeat; }
.gi-drone          { background: url('images/gal-drone.jpg') center/cover no-repeat; }
.gi-wetbar         { background: url('images/gal-wetbar.jpg') center/cover no-repeat; }
.gi-front          { background: url('images/about-exterior.jpg') center/cover no-repeat; }
.gi-view2          { background: url('images/gal-view2.jpg') center/cover no-repeat; }
.gi-primary-view   { background: url('images/gal-primary-view.jpg') center/cover no-repeat; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,23,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-sublabel {
    font-size: 0.8rem;
    color: var(--gold-pale);
    letter-spacing: 1px;
}

/* --- Amenities Section --- */
.amenities-section {
    position: relative;
    background: var(--charcoal);
    overflow: hidden;
}

.amenities-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(45,74,45,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.08) 0%, transparent 40%);
}

.amenities-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.amenity-category {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 36px 32px;
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.amenity-category.revealed {
    opacity: 1;
    transform: translateY(0);
}

.amenity-category:nth-child(2).revealed { transition-delay: 0.1s; }
.amenity-category:nth-child(3).revealed { transition-delay: 0.2s; }
.amenity-category:nth-child(4).revealed { transition-delay: 0.3s; }
.amenity-category:nth-child(5).revealed { transition-delay: 0.4s; }

.amenity-category:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.amenity-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--gold);
}

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

.amenity-title {
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.amenity-list {
    list-style: none;
}

.amenity-list li {
    font-size: 0.9rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.6;
    padding: 6px 0 6px 20px;
    position: relative;
}

.amenity-list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 13px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

/* --- Attractions Section --- */
.attractions-section {
    background: var(--white);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.attraction-card {
    background: var(--cream);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.attraction-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.attraction-card:nth-child(2).revealed { transition-delay: 0.15s; }
.attraction-card:nth-child(3).revealed { transition-delay: 0.3s; }
.attraction-card:nth-child(4).revealed { transition-delay: 0.1s; }
.attraction-card:nth-child(5).revealed { transition-delay: 0.25s; }
.attraction-card:nth-child(6).revealed { transition-delay: 0.4s; }

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px var(--shadow);
}

.attraction-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.attr-ski { background: url('images/ski.jpg') center bottom/cover no-repeat; }
.attr-lake { background: url('images/lake-junaluska.jpg') center/cover no-repeat; }
.attr-trail { background: url('images/parkway.jpg') center/cover no-repeat; }
.attr-town { background: url('images/casino.jpg') center/cover no-repeat; }
.attr-springs { background: url('images/river.jpg') center/cover no-repeat; }
.attr-wildlife { background: url('images/mainstreet.jpg') center/cover no-repeat; }
.attr-biltmore { background: url('images/biltmore.jpg') center/cover no-repeat; }
.attr-smokies { background: url('images/smokies.jpg') center/cover no-repeat; }
.attr-wheels { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); }

.attraction-content {
    padding: 24px;
}

.attraction-distance {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.attraction-content h3 {
    font-size: 1.3rem;
    color: var(--deep-forest);
    margin: 8px 0 12px;
}

.attraction-content h3 a {
    color: var(--deep-forest);
}

.attraction-content h3 a:hover {
    color: var(--gold);
}

.attraction-content p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.attraction-season {
    font-size: 0.78rem;
    color: var(--brown-light);
    font-style: italic;
}

/* --- Testimonial Section --- */
.testimonial-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-forest), var(--charcoal));
    text-align: center;
    overflow: hidden;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.testimonial-slider {
    position: relative;
    min-height: 180px;
}

.testimonial {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--cream);
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--gold-pale);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 4px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* --- Pricing Section --- */
.pricing-section {
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:nth-child(2).revealed { transition-delay: 0.15s; }
.pricing-card:nth-child(3).revealed { transition-delay: 0.3s; }

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px var(--shadow);
}

.pricing-card.featured {
    border-color: var(--gold);
    position: relative;
    transform: scale(1.03);
    box-shadow: 0 20px 60px var(--shadow);
}

.pricing-card.featured.revealed {
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 24px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
}

.pricing-header {
    padding: 36px 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--cream-dark);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--deep-forest);
    margin-bottom: 6px;
}

.pricing-period {
    font-size: 0.82rem;
    color: var(--text-medium);
}

.pricing-body {
    padding: 32px;
    text-align: center;
}

.price {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 8px;
}

.amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--deep-forest);
    line-height: 1;
}

.per {
    font-size: 0.9rem;
    color: var(--text-medium);
    align-self: flex-end;
    margin-bottom: 4px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--cream);
    padding-left: 20px;
    position: relative;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.pricing-notes {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.pricing-notes.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pricing-notes h4 {
    font-size: 1.3rem;
    color: var(--deep-forest);
    margin-bottom: 24px;
    text-align: center;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.note-item {
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.note-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}

/* --- Contact Section --- */
.contact-section {
    background: var(--charcoal);
    position: relative;
}

.book-direct {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 36px;
    margin-bottom: 48px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 2px;
    background: rgba(201,168,76,0.06);
}

.book-direct-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--cream);
    margin: 0 0 6px;
}

.book-direct-text p {
    color: rgba(245,240,232,0.75);
    font-size: 0.95rem;
    margin: 0;
}

.book-direct .btn {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .book-direct {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.contact-grid.revealed {
    opacity: 1;
    transform: translateY(0);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.contact-info > p {
    color: rgba(245,240,232,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

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

.contact-item strong {
    display: block;
    color: var(--cream);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: rgba(245,240,232,0.7);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-pale);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 40px;
    border-radius: 2px;
}

.contact-form h3 {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 28px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--cream);
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    border-radius: 2px;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245,240,232,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #c44;
}

.form-group select option {
    background: var(--charcoal);
    color: var(--cream);
}

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

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(245,240,232,0.4);
    margin-top: 16px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--cream);
    margin-bottom: 12px;
}

.form-success p {
    color: rgba(245,240,232,0.7);
    line-height: 1.8;
}

/* --- Dining Section --- */
.dining-section {
    background: var(--cream);
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.dining-category {
    padding: 30px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
}

.dining-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.3);
}

.dining-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dining-item a {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: color 0.3s ease;
}

.dining-item a:hover {
    color: var(--gold);
}

.dining-item-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.dining-detail {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-top: 3px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .dining-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* --- Drive Times Section --- */
.drive-times-section {
    background: var(--charcoal-light);
}

.drive-times-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.drive-time-item {
    text-align: center;
    padding: 28px 16px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.drive-time-item:hover {
    border-color: var(--gold);
}

.drive-time-minutes {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.drive-time-unit {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
    margin-bottom: 14px;
}

.drive-time-label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    color: var(--cream);
    line-height: 1.4;
}

.drive-time-label small {
    color: rgba(245,240,232,0.5);
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .drive-times-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .drive-times-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .drive-time-minutes {
        font-size: 1.8rem;
    }
}

/* --- FAQ Section --- */
.faq-section {
    background: var(--charcoal);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item[open] {
    border-color: var(--gold);
}

.faq-question {
    padding: 18px 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 24px 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: rgba(245,240,232,0.7);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: #111110;
    padding-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-brand .logo-icon {
    display: block;
    margin-bottom: 6px;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: rgba(245,240,232,0.5);
    margin-top: 12px;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-family: 'Raleway', sans-serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a,
.footer-col li {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.6);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.4);
}

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .amenities-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
    .gallery-item.large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 12px 0;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
    }

    /* Grids to single column */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .amenities-categories {
        grid-template-columns: 1fr;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured.revealed {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

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

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

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .testimonial-text {
        font-size: 1.15rem;
        padding: 0 16px;
    }

    .about-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* --- Gallery Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 8, 0.94);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    pointer-events: auto;
}

.lightbox-caption {
    text-align: center;
    margin-top: 18px;
    pointer-events: auto;
}

.lightbox-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.lightbox-sublabel {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(245, 240, 232, 0.75);
    margin-top: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--cream);
    font-size: 1.8rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

body.lightbox-open {
    overflow: hidden;
}

.gallery-item { cursor: pointer; }

@media (max-width: 640px) {
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.4rem; }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .lightbox-label { font-size: 1.25rem; }
}

/* --- Print Styles --- */
@media print {
    #navbar, .hero-particles, .scroll-indicator, #preloader, .gallery-filters {
        display: none !important;
    }
    .section { padding: 30px 0; }
    body { color: #000; background: #fff; }
}
