/* ═══════════════════════════════════════════
   VADATTUPARA — LUXURY PREMIUM CSS
   ═══════════════════════════════════════════ */

:root {
    --gold: #C6A87C;
    --gold-light: #D4BC8E;
    --gold-dark: #A8895E;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --dark: #0A0F0D;
    --dark-2: #111A15;
    --dark-3: #1A2720;
    --dark-4: #223530;
    --forest: #1B3A2D;
    --forest-light: #2A5A42;
    --emerald: #059669;
    --text: #E8E0D0;
    --text-muted: #8A9690;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: var(--font-sans); background: var(--dark); color: var(--text); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
a { text-decoration: none; color: inherit; transition: all 0.4s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
em { font-style: italic; color: var(--gold); }

/* ═══════ PRELOADER ═══════ */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--dark); display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-line { position: relative; width: 80px; height: 80px; margin: 0 auto; }
.preloader-svg { width: 80px; height: 80px; transform: rotate(-90deg); }
.preloader-circle {
    fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round;
    stroke-dasharray: 226; stroke-dashoffset: 226;
    animation: preloaderDraw 2s var(--ease) forwards;
}
@keyframes preloaderDraw { to { stroke-dashoffset: 0; } }
.preloader-leaf {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 24px; color: var(--gold); animation: leafPulse 1.5s ease-in-out infinite;
}
@keyframes leafPulse { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.15); } }
.preloader-brand { margin-top: 30px; }
.preloader-name { display: block; font-family: var(--font-serif); font-size: 36px; color: var(--cream); letter-spacing: 6px; font-weight: 300; }
.preloader-tagline { display: block; font-family: var(--font-sans); font-size: 11px; color: var(--gold); letter-spacing: 5px; text-transform: uppercase; margin-top: 8px; }

/* ═══════ CUSTOM CURSOR ═══════ */
.cursor, .cursor-follower {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99998; border-radius: 50%;
    transform: translate(-50%, -50%); transition: opacity 0.3s;
}
.cursor { width: 6px; height: 6px; background: var(--gold); }
.cursor-follower { width: 36px; height: 36px; border: 1px solid rgba(198,168,124,0.4); transition: width 0.3s, height 0.3s, border 0.3s, transform 0.15s; }
@media (hover: none) { .cursor, .cursor-follower { display: none; } }
@media (max-width: 1024px) { .cursor, .cursor-follower { display: none; } }

/* ═══════ NAVIGATION ═══════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 30px 0; transition: all 0.5s var(--ease);
}
.nav.scrolled { padding: 18px 0; background: rgba(10,15,13,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(198,168,124,0.08); }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-serif); font-size: 26px; color: var(--cream); letter-spacing: 2px; font-weight: 300; }
.nav-logo-icon { font-size: 22px; }
.nav-links { display: flex; gap: 40px; }
.nav-link { font-size: 11px; font-weight: 500; color: rgba(245,240,232,0.7); letter-spacing: 3px; text-transform: uppercase; position: relative; padding: 5px 0; white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
    font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    padding: 14px 32px; border: 1px solid var(--gold); color: var(--gold); border-radius: 0;
    transition: all 0.4s var(--ease); white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }
.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; }
.nav-toggle span { width: 28px; height: 1px; background: var(--cream); transition: all 0.3s; }
.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); }

@media (max-width: 1024px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 320px; height: 100vh; background: var(--dark-2);
        flex-direction: column; padding: 120px 40px; gap: 25px; transition: right 0.5s var(--ease);
        border-left: 1px solid rgba(198,168,124,0.1); overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-link { font-size: 13px; letter-spacing: 4px; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-inner { padding: 0 20px; }
}

/* ═══════ BUTTONS ═══════ */
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-sans); font-size: 11px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; padding: 18px 40px;
    cursor: pointer; transition: all 0.5s var(--ease); border: none; outline: none;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(198,168,124,0.3); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }
.btn-full { width: 100%; justify-content: center; }

/* ═══════ HERO ═══════ */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 25s ease-in-out infinite; }
@keyframes heroZoom { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,15,13,0.7) 0%, rgba(10,15,13,0.4) 40%, rgba(10,15,13,0.8) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 1000px; padding: 0 40px; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 20px;
    font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 40px;
}
.hero-line { width: 50px; height: 1px; background: var(--gold); }
.hero-title { font-size: clamp(60px, 12vw, 160px); font-weight: 300; color: var(--cream); letter-spacing: -2px; line-height: 0.9; }
.hero-title-line { display: inline; }
.hero-title-accent { color: var(--gold); font-style: italic; }
.hero-subtitle {
    font-family: var(--font-sans); font-size: clamp(14px, 2vw, 18px); letter-spacing: 10px;
    text-transform: uppercase; color: var(--gold-light); margin-top: 30px; font-weight: 300;
}
.hero-desc {
    font-family: var(--font-serif); font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(245,240,232,0.8); max-width: 600px; margin: 30px auto; font-weight: 300; line-height: 1.8;
}
.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.hero-scroll {
    position: absolute; bottom: 50px; left: 50px; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 15px;
    font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
}
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-credit { position: absolute; bottom: 20px; right: 40px; z-index: 2; font-size: 10px; color: var(--text-muted); letter-spacing: 2px; }

/* ═══════ PAGE HERO (Sub-pages) ═══════ */
.page-hero {
    position: relative; height: 55vh; min-height: 400px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    padding-top: 80px;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3) saturate(0.8); }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(10,15,13,0.6); }
.page-hero-content { position: relative; z-index: 1; text-align: center; padding-top: 40px; }
.page-hero-title {
    font-size: clamp(42px, 8vw, 100px); font-weight: 300; color: var(--cream);
    letter-spacing: -1px; line-height: 1.05;
}

/* ═══════ REVEAL ANIMATIONS ═══════ */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: translate(0); }

/* ═══════ SECTION SHARED ═══════ */
.section-eyebrow {
    display: block; font-family: var(--font-sans); font-size: 11px; letter-spacing: 5px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500;
}
.section-eyebrow.light { color: var(--gold); }
.section-title {
    font-size: clamp(36px, 5vw, 64px); font-weight: 300; color: var(--cream);
    letter-spacing: -1px; margin-bottom: 0;
}
.section-title.light { color: var(--cream); }
.section-line { width: 60px; height: 1px; background: var(--gold); margin-top: 30px; margin-bottom: 0; }
.section-line.gold { background: var(--gold); }
.section-header-center { text-align: center; }
.section-header-center .section-line { margin-left: auto; margin-right: auto; }

/* ═══════ ABOUT ═══════ */
.about { padding: 160px 0; background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { overflow: hidden; }
.about-img-main img { width: 100%; height: 600px; object-fit: cover; filter: brightness(0.85) saturate(1.1); transition: filter 0.5s; }
.about-img-main:hover img { filter: brightness(0.95) saturate(1.2); }
.about-img-accent {
    position: absolute; bottom: -60px; right: -60px; width: 280px; height: 280px;
    border: 4px solid var(--dark); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
    position: absolute; top: -30px; right: 40px; background: var(--gold);
    padding: 25px 30px; display: flex; align-items: center; gap: 15px;
    box-shadow: 0 15px 40px rgba(198,168,124,0.3);
}
.about-badge-number { font-family: var(--font-serif); font-size: 48px; color: var(--dark); font-weight: 700; line-height: 1; }
.about-badge-text { font-size: 11px; color: var(--dark); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; line-height: 1.4; }
.about-content { padding-top: 20px; }
.about-text { font-size: 17px; color: var(--text-muted); line-height: 2; margin-bottom: 25px; font-weight: 300; }
.about-text strong { color: var(--gold); font-weight: 600; }
.about-signature { display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(198,168,124,0.15); flex-wrap: wrap; }
.signature-item { display: flex; align-items: center; gap: 15px; }
.signature-item i { font-size: 20px; color: var(--gold); }
.signature-item strong { display: block; font-size: 14px; color: var(--cream); }
.signature-item span { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }
.about-credits { margin-top: 30px; font-size: 10px; color: var(--text-muted); letter-spacing: 2px; }

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 80px; }
    .about-img-accent { right: 20px; bottom: -40px; width: 200px; height: 200px; }
}

/* ═══════ STATS DIVIDER ═══════ */
.stats-divider { padding: 80px 0; background: var(--dark-2); border-top: 1px solid rgba(198,168,124,0.08); border-bottom: 1px solid rgba(198,168,124,0.08); }
.stats-row { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-serif); font-size: 56px; color: var(--gold); font-weight: 300; line-height: 1; }
.stat-label { font-size: 11px; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; margin-top: 10px; display: block; }
.stat-sep { width: 1px; height: 60px; background: rgba(198,168,124,0.2); }
@media (max-width: 768px) { .stats-row { gap: 30px; } .stat-sep { display: none; } .stat-num { font-size: 40px; } }

/* ═══════ EXPERIENCES ═══════ */
.experiences { padding: 160px 0; background: var(--dark); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 80px; }
.exp-card {
    position: relative; background: var(--dark-2); overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.exp-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.exp-large { grid-column: span 2; display: grid; grid-template-columns: 1.2fr 1fr; }
.exp-img { position: relative; overflow: hidden; }
.exp-card:not(.exp-large) .exp-img { height: 350px; }
.exp-large .exp-img { min-height: 500px; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(1.1); transition: all 0.6s var(--ease); }
.exp-card:hover .exp-img img { filter: brightness(0.85) saturate(1.2); transform: scale(1.05); }
.exp-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,15,13,0.6) 100%); }
.exp-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.exp-tag { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 15px; font-weight: 600; }
.exp-body h3 { font-size: 32px; color: var(--cream); margin-bottom: 15px; font-weight: 400; }
.exp-body p { font-size: 15px; color: var(--text-muted); line-height: 1.9; font-weight: 300; }
.exp-meta { display: flex; gap: 25px; margin-top: 20px; flex-wrap: wrap; }
.exp-meta span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.exp-meta i { color: var(--gold); }
.exp-credit { position: absolute; bottom: 15px; left: 15px; font-size: 9px; color: rgba(245,240,232,0.4); letter-spacing: 2px; z-index: 3; }

.wildlife-showcase { background: var(--dark-2); border: 1px solid rgba(198,168,124,0.08); padding: 60px; margin-top: 0; }
.wildlife-inner { text-align: center; }
.wildlife-inner h3 { font-size: 36px; color: var(--cream); margin-bottom: 40px; font-weight: 300; }
.wildlife-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.wildlife-card { padding: 40px 20px; border: 1px solid rgba(198,168,124,0.1); transition: all 0.4s var(--ease); }
.wildlife-card:hover { border-color: var(--gold); background: rgba(198,168,124,0.05); transform: translateY(-5px); }
.wildlife-emoji { font-size: 52px; margin-bottom: 15px; }
.wildlife-card h4 { font-family: var(--font-sans); font-size: 14px; color: var(--cream); font-weight: 600; letter-spacing: 1px; margin-bottom: 5px; }
.wildlife-card span { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

@media (max-width: 1024px) {
    .exp-grid { grid-template-columns: 1fr; }
    .exp-large { grid-column: span 1; grid-template-columns: 1fr; }
    .wildlife-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════ CINEMA ═══════ */
.cinema { position: relative; padding: 160px 0; overflow: hidden; }
.cinema-bg { position: absolute; inset: 0; z-index: 0; }
.cinema-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2) saturate(0.8); }
.cinema-overlay { position: absolute; inset: 0; background: rgba(10,15,13,0.75); }
.cinema .container { position: relative; z-index: 1; }
.cinema-content { text-align: center; margin-bottom: 70px; }
.cinema-desc { font-family: var(--font-serif); font-size: 20px; color: rgba(245,240,232,0.7); max-width: 700px; margin: 30px auto 0; font-weight: 300; line-height: 1.8; }
.cinema-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-bottom: 60px; }
.cinema-card { perspective: 1000px; }
.cinema-card-inner {
    padding: 35px 15px; border: 1px solid rgba(198,168,124,0.2);
    text-align: center; transition: all 0.4s var(--ease); background: rgba(10,15,13,0.5);
}
.cinema-card:hover .cinema-card-inner { border-color: var(--gold); background: rgba(198,168,124,0.08); transform: translateY(-5px); }
.cinema-card i { font-size: 24px; color: var(--gold); margin-bottom: 12px; display: block; }
.cinema-card h4 { font-family: var(--font-sans); font-size: 12px; color: var(--cream); font-weight: 500; letter-spacing: 1px; line-height: 1.5; }
.cinema-quote { text-align: center; max-width: 800px; margin: 0 auto; }
.cinema-quote i { font-size: 28px; color: var(--gold); opacity: 0.4; }
.cinema-quote p { font-family: var(--font-serif); font-size: 22px; color: rgba(245,240,232,0.8); font-style: italic; margin: 20px 0; line-height: 1.8; }
.cinema-credit { text-align: center; margin-top: 40px; font-size: 10px; color: var(--text-muted); letter-spacing: 2px; }

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

/* ═══════ JOURNEY ═══════ */
.journey { padding: 160px 0; background: var(--dark); }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 80px; }
.journey-card { background: var(--dark-2); border: 1px solid rgba(198,168,124,0.08); overflow: hidden; }
.journey-card-header {
    padding: 30px 40px; border-bottom: 1px solid rgba(198,168,124,0.08);
    display: flex; align-items: center; gap: 15px;
}
.journey-card-header i { font-size: 20px; color: var(--gold); }
.journey-card-header h3 { font-family: var(--font-sans); font-size: 16px; color: var(--cream); font-weight: 500; letter-spacing: 3px; text-transform: uppercase; }
.journey-list { padding: 30px 40px; }
.journey-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(198,168,124,0.05); }
.journey-item:last-child { border-bottom: none; }
.journey-item-icon { width: 48px; height: 48px; border: 1px solid rgba(198,168,124,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.journey-item-icon i { font-size: 16px; color: var(--gold); }
.journey-item strong { display: block; font-size: 14px; color: var(--cream); margin-bottom: 4px; font-family: var(--font-sans); }
.journey-item p { font-size: 13px; color: var(--text-muted); }

.season-list { padding: 30px 40px; }
.season-card { display: flex; gap: 20px; padding: 25px; margin-bottom: 15px; border: 1px solid rgba(198,168,124,0.08); transition: all 0.3s var(--ease); }
.season-card:last-child { margin-bottom: 0; }
.season-card:hover { border-color: var(--gold); background: rgba(198,168,124,0.03); }
.season-icon { font-size: 32px; flex-shrink: 0; }
.season-card strong { display: block; font-size: 14px; color: var(--cream); font-family: var(--font-sans); }
.season-card span { display: block; font-size: 12px; color: var(--gold); letter-spacing: 2px; margin: 3px 0 8px; }
.season-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.nearby, .stays { margin-bottom: 60px; }
.nearby h3, .stays h3 { font-family: var(--font-sans); font-size: 14px; color: var(--cream); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 30px; font-weight: 500; }
.nearby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.nearby-item { display: flex; align-items: center; gap: 15px; padding: 25px; border: 1px solid rgba(198,168,124,0.08); transition: all 0.3s var(--ease); }
.nearby-item:hover { border-color: var(--gold); }
.nearby-item i { font-size: 24px; color: var(--gold); }
.nearby-item strong { display: block; font-size: 13px; color: var(--cream); font-family: var(--font-sans); }
.nearby-item span { font-size: 12px; color: var(--gold); letter-spacing: 1px; }

.stays-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.stay-item { display: flex; align-items: center; gap: 10px; padding: 18px 20px; border: 1px solid rgba(198,168,124,0.08); font-size: 12px; color: var(--text-muted); font-family: var(--font-sans); transition: all 0.3s var(--ease); }
.stay-item:hover { border-color: var(--gold); color: var(--cream); }
.stay-item i { color: var(--gold); font-size: 10px; }

.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tip-card { padding: 40px 30px; border: 1px solid rgba(198,168,124,0.08); text-align: center; }
.tip-card i { font-size: 28px; color: var(--gold); margin-bottom: 20px; display: block; }
.tip-card h4 { font-family: var(--font-sans); font-size: 14px; color: var(--cream); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 25px; }
.tip-card li { font-size: 13px; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid rgba(198,168,124,0.05); }

@media (max-width: 1024px) {
    .journey-grid { grid-template-columns: 1fr; }
    .nearby-grid { grid-template-columns: repeat(2, 1fr); }
    .stays-grid { grid-template-columns: repeat(2, 1fr); }
    .tips-grid { grid-template-columns: 1fr; }
    .journey-list, .season-list { padding: 25px 30px; }
    .journey-card-header { padding: 25px 30px; }
}
@media (max-width: 576px) {
    .nearby-grid { grid-template-columns: 1fr; }
    .stays-grid { grid-template-columns: 1fr; }
}

/* ═══════ GALLERY ═══════ */
.gallery { padding: 160px 0; background: var(--dark-2); }
.gallery-masonry { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; height: 300px; }
.gallery-tall { grid-row: span 2; height: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) saturate(1.05); transition: all 0.6s var(--ease); }
.gallery-item:hover img { filter: brightness(0.9) saturate(1.2); transform: scale(1.08); }
.gallery-hover { position: absolute; inset: 0; background: rgba(10,15,13,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s; }
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover i { font-size: 24px; color: var(--gold); }
.gallery-credits { text-align: center; margin-top: 40px; font-size: 10px; color: var(--text-muted); letter-spacing: 1px; }

@media (max-width: 1024px) { .gallery-masonry { grid-template-columns: repeat(2, 1fr); } .gallery-item, .gallery-tall { height: 300px; grid-row: span 1; } }
@media (max-width: 576px) { .gallery-masonry { grid-template-columns: 1fr; } }

/* ═══════ TESTIMONIALS ═══════ */
.testimonials { padding: 160px 0; background: var(--dark); border-top: 1px solid rgba(198,168,124,0.08); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.test-card { padding: 50px 40px; border: 1px solid rgba(198,168,124,0.08); transition: all 0.4s var(--ease); }
.test-card:hover { border-color: var(--gold); background: rgba(198,168,124,0.02); }
.test-stars { margin-bottom: 25px; }
.test-stars i { color: var(--gold); font-size: 14px; }
.test-card > p { font-family: var(--font-serif); font-size: 18px; color: rgba(245,240,232,0.8); font-style: italic; line-height: 1.8; margin-bottom: 30px; }
.test-author { display: flex; align-items: center; gap: 15px; }
.test-avatar { width: 48px; height: 48px; background: var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 16px; font-weight: 700; }
.test-author strong { display: block; font-size: 14px; color: var(--cream); font-family: var(--font-sans); }
.test-author span { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }

@media (max-width: 1024px) { .test-grid { grid-template-columns: 1fr; } }

/* ═══════ CONTACT CTA PREVIEW ═══════ */
.contact-preview { padding: 100px 0; background: var(--dark-2); }
.contact-cta-box {
    display: flex; align-items: center; justify-content: space-between; gap: 60px;
    padding: 80px; border: 1px solid rgba(198,168,124,0.12);
    background: linear-gradient(135deg, rgba(198,168,124,0.03), rgba(198,168,124,0.01));
}
.contact-cta-content p { font-size: 16px; color: var(--text-muted); margin-top: 20px; font-weight: 300; }
@media (max-width: 768px) {
    .contact-cta-box { flex-direction: column; text-align: center; padding: 50px 30px; gap: 30px; }
}

/* ═══════ CONTACT (Home section) ═══════ */
.contact { padding: 160px 0; background: var(--dark-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px; }
.contact-desc { font-size: 16px; color: var(--text-muted); line-height: 2; margin-bottom: 40px; font-weight: 300; }
.contact-details { display: flex; flex-direction: column; gap: 25px; margin-bottom: 40px; }
.contact-detail { display: flex; gap: 20px; align-items: flex-start; }
.contact-detail i { font-size: 18px; color: var(--gold); margin-top: 3px; }
.contact-detail strong { display: block; font-size: 14px; color: var(--cream); font-family: var(--font-sans); margin-bottom: 3px; }
.contact-detail span { font-size: 13px; color: var(--text-muted); }
.contact-social { display: flex; gap: 12px; }
.social-btn {
    width: 48px; height: 48px; border: 1px solid rgba(198,168,124,0.2);
    display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-muted);
    transition: all 0.3s var(--ease);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(198,168,124,0.05); }

.contact-form-wrap { background: var(--dark); border: 1px solid rgba(198,168,124,0.08); padding: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-weight: 500; }
.form-group input, .form-group textarea {
    padding: 16px 20px; background: var(--dark-2); border: 1px solid rgba(198,168,124,0.1);
    color: var(--cream); font-family: var(--font-sans); font-size: 14px; outline: none;
    transition: border 0.3s; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 40px 30px; }
}

/* ═══════ PAGE SECTION (Sub-pages) ═══════ */
.page-section { padding: 100px 0 160px; background: var(--dark); }

/* Content Grid (About page) */
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 80px; }
.content-main p { font-size: 16px; color: var(--text-muted); line-height: 2; margin-bottom: 25px; font-weight: 300; }
.content-main strong { color: var(--cream); font-weight: 500; }
.content-heading { font-size: 28px; color: var(--cream); margin: 50px 0 20px; font-weight: 400; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 25px; }
.value-item { padding: 30px; border: 1px solid rgba(198,168,124,0.08); transition: all 0.3s var(--ease); }
.value-item:hover { border-color: var(--gold); background: rgba(198,168,124,0.02); }
.value-item i { font-size: 24px; color: var(--gold); margin-bottom: 12px; display: block; }
.value-item h4 { font-family: var(--font-sans); font-size: 14px; color: var(--cream); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.value-item p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.content-sidebar { display: flex; flex-direction: column; gap: 25px; }
.sidebar-card { padding: 30px; border: 1px solid rgba(198,168,124,0.08); }
.sidebar-card h4 { font-family: var(--font-sans); font-size: 12px; color: var(--cream); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.sidebar-card h4 i { color: var(--gold); }
.sidebar-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.sidebar-card li { font-size: 13px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid rgba(198,168,124,0.05); }
.sidebar-cta { background: rgba(198,168,124,0.05); border-color: rgba(198,168,124,0.15); }

@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

/* ═══════ CONTACT PAGE ═══════ */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; margin-bottom: 100px; }
.contact-info-panel .contact-desc { font-size: 16px; color: var(--text-muted); line-height: 2; margin-bottom: 40px; font-weight: 300; }
.contact-info-panel .contact-details { margin-bottom: 30px; }
.contact-info-panel .contact-social { margin-bottom: 30px; }

.map-embed h4 { font-family: var(--font-sans); font-size: 12px; color: var(--cream); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.map-embed h4 i { color: var(--gold); }
.contact-form-panel .contact-form-wrap { background: var(--dark); border: 1px solid rgba(198,168,124,0.08); padding: 60px; }

.faq-section { border-top: 1px solid rgba(198,168,124,0.08); padding-top: 80px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.faq-item { padding: 30px; border: 1px solid rgba(198,168,124,0.08); transition: all 0.3s var(--ease); }
.faq-item:hover { border-color: var(--gold); }
.faq-item h4 { font-family: var(--font-sans); font-size: 14px; color: var(--cream); letter-spacing: 1px; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.faq-item h4 i { color: var(--gold); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

@media (max-width: 1024px) {
    .contact-page-grid { grid-template-columns: 1fr; gap: 50px; }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-form-panel .contact-form-wrap { padding: 40px 30px; }
}

/* ═══════ LEGAL PAGES ═══════ */
.legal-content { max-width: 900px; margin: 0 auto; }
.legal-updated { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 50px; }
.legal-block { margin-bottom: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(198,168,124,0.08); }
.legal-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-block h3 { font-size: 28px; color: var(--cream); margin-bottom: 20px; font-weight: 400; }
.legal-block h4 { font-family: var(--font-sans); font-size: 14px; color: var(--cream); letter-spacing: 1px; text-transform: uppercase; margin: 25px 0 12px; }
.legal-block p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 15px; }
.legal-block ul { margin-bottom: 15px; padding-left: 0; }
.legal-block li { font-size: 14px; color: var(--text-muted); line-height: 1.8; padding: 5px 0; padding-left: 20px; position: relative; }
.legal-block li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }
.legal-contact-box {
    padding: 25px 30px; border: 1px solid rgba(198,168,124,0.08); margin-top: 20px;
    background: var(--dark-2);
}
.legal-contact-box p { margin-bottom: 10px; }

/* ═══════ FOOTER ═══════ */
.footer { background: var(--dark); border-top: 1px solid rgba(198,168,124,0.08); padding: 80px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 80px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-serif); font-size: 28px; color: var(--cream); margin-bottom: 20px; font-weight: 300; letter-spacing: 2px; display: flex; align-items: center; gap: 10px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--font-sans); font-size: 11px; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 25px; }
.footer-col a, .footer-col span { display: block; font-size: 13px; color: var(--text-muted); padding: 6px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(198,168,124,0.08); padding-top: 30px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }
.footer-credits { font-style: italic; font-size: 10px !important; }

@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr; } .footer-links { gap: 40px; } }
@media (max-width: 576px) { .footer-links { flex-direction: column; gap: 30px; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ═══════ BACK TO TOP ═══════ */
.btt {
    position: fixed; bottom: 40px; right: 40px; width: 50px; height: 50px;
    background: var(--gold); color: var(--dark); border: none; font-size: 16px;
    cursor: pointer; z-index: 999; opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease); display: flex; align-items: center; justify-content: center;
}
.btt.visible { opacity: 1; visibility: visible; }
.btt:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ═══════ LIGHTBOX ═══════ */
.lightbox {
    position: fixed; inset: 0; background: rgba(10,15,13,0.97); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
    position: absolute; top: 30px; right: 30px; width: 50px; height: 50px;
    background: none; border: 1px solid var(--gold); color: var(--gold);
    font-size: 18px; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--gold); color: var(--dark); }
#lightbox-img { max-width: 90%; max-height: 90%; object-fit: contain; }

/* ═══════ NOTIFICATION ═══════ */
.notification {
    position: fixed; top: 100px; right: 30px; padding: 18px 30px; z-index: 10000;
    display: flex; align-items: center; gap: 12px; animation: notifIn 0.4s var(--ease);
    max-width: 90vw;
}
.notification i { font-size: 18px; }
.notification span { font-size: 13px; font-family: var(--font-sans); }
@keyframes notifIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes notifOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 576px) {
    .container { padding: 0 20px; }
    .about, .experiences, .cinema, .journey, .gallery, .testimonials, .contact, .contact-preview { padding: 80px 0; }
    .page-section { padding: 60px 0 100px; }
    .page-hero { min-height: 320px; height: 45vh; }
    .hero-actions { flex-direction: column; align-items: center; }
    .about-signature { flex-direction: column; gap: 20px; }
    .about-img-main img { height: 400px; }
    .about-img-accent { display: none; }
    .about-badge { top: 20px; right: 20px; padding: 15px 20px; }
    .about-badge-number { font-size: 32px; }
    .wildlife-grid { grid-template-columns: 1fr 1fr; }
    .exp-card:not(.exp-large) .exp-img { height: 250px; }
    .exp-large .exp-img { min-height: 300px; }
    .exp-body { padding: 25px; }
    .exp-body h3 { font-size: 24px; }
    .wildlife-showcase { padding: 30px 20px; }
    .hero-scroll, .hero-credit { display: none; }
    .hero-content { padding: 0 20px; }
    .btn { padding: 16px 30px; font-size: 10px; letter-spacing: 2px; }
    .stats-divider { padding: 50px 0; }
    .stat-num { font-size: 36px; }
    .journey-card-header { padding: 20px; }
    .journey-list, .season-list { padding: 20px; }
    .cinema-content { margin-bottom: 40px; }
    .test-card { padding: 30px 25px; }
    .contact-cta-box { padding: 40px 25px; }
    .footer { padding: 50px 0 30px; }
    .footer-top { margin-bottom: 40px; }
    .legal-block h3 { font-size: 22px; }
    .legal-block p { font-size: 14px; }
    .legal-block li { font-size: 13px; }
    .faq-item { padding: 20px; }
    .values-grid { gap: 15px; }
    .value-item { padding: 20px; }
    .btt { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

/* ═══════ MOBILE TOUCH IMPROVEMENTS ═══════ */
@media (max-width: 1024px) {
    .nav-link { padding: 10px 0; min-height: 44px; display: flex; align-items: center; }
    .nav-cta { min-height: 48px; display: flex; align-items: center; justify-content: center; }
    .btn { min-height: 48px; }
    .social-btn { width: 52px; height: 52px; }
    .nearby-item, .stay-item { min-height: 52px; }
    .gallery-item { height: 250px; }
    .season-card { padding: 20px; }
    .journey-item { padding: 15px 0; }
    .faq-item h4 { font-size: 13px; }
}

/* ═══════ SKIP LINK ═══════ */
.skip-link {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--dark); padding: 12px 24px;
    font-family: var(--font-sans); font-size: 14px; font-weight: 600;
    z-index: 100000; transition: top 0.3s; border-radius: 0 0 8px 8px;
    text-decoration: none;
}
.skip-link:focus { top: 0; outline: 3px solid var(--cream); outline-offset: 2px; }

/* ═══════ FOCUS STYLES ═══════ */
:focus-visible {
    outline: 2px solid var(--gold) !important;
    outline-offset: 3px !important;
}
.btn:focus-visible, .nav-link:focus-visible, .nav-cta:focus-visible, .social-btn:focus-visible {
    outline: 2px solid var(--gold) !important;
    outline-offset: 3px !important;
}
.nav-link:focus-visible { background: rgba(198,168,124,0.1); }
.gallery-item:focus-visible { outline-offset: -4px; }
.form-group input:focus-visible, .form-group textarea:focus-visible {
    outline: 2px solid var(--gold) !important;
    outline-offset: 0 !important;
}

/* ═══════ REDUCED MOTION ═══════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-img { animation: none !important; }
    .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
    .preloader { display: none !important; }
    .cursor, .cursor-follower { display: none !important; }
}

/* ═══════ HIGH CONTRAST ═══════ */
@media (prefers-contrast: high) {
    :root { --gold: #D4A84C; --text-muted: #B0B8B4; }
    .nav-link { color: var(--cream); }
    .section-title { color: var(--cream); }
    .exp-body h3 { color: var(--cream); }
}

/* ═══════ PRINT STYLES ═══════ */
@media print {
    .nav, .btt, .preloader, .cursor, .cursor-follower, .lightbox, .hero-scroll, .contact-preview { display: none !important; }
    body { background: white; color: #222; font-size: 12pt; }
    .hero { height: auto; min-height: auto; }
    .hero-media, .cinema-bg { display: none; }
    .hero-content { color: #222; }
    .hero-title, .section-title { color: #111; }
    em { color: #333; }
    a { color: #333; text-decoration: underline; }
    .container { max-width: 100%; padding: 0; }
    .section { padding: 20px 0; }
    img { break-inside: avoid; }
}

/* ═══════ WHATSAPP QUICK CONTACT ═══════ */
.whatsapp-btn {
    position: fixed; bottom: 40px; left: 40px; width: 56px; height: 56px;
    background: #25D366; color: #fff; border-radius: 50%; z-index: 998;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4); transition: all 0.4s var(--ease);
}
.whatsapp-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 40px rgba(37,211,102,0.55); }
.whatsapp-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (max-width: 576px) { .whatsapp-btn { bottom: 20px; left: 20px; width: 48px; height: 48px; font-size: 24px; } }

/* ═══════ LANGUAGE TOGGLE ═══════ */
.lang-toggle {
    font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold); background: transparent;
    border: 1px solid rgba(198,168,124,0.35); padding: 10px 16px; cursor: pointer;
    transition: all 0.3s var(--ease); white-space: nowrap; margin-left: 12px;
}
.lang-toggle:hover { background: rgba(198,168,124,0.1); border-color: var(--gold); }
@media (max-width: 1024px) {
    .lang-toggle { margin: 10px 0 0; width: 100%; }
}

/* ═══════ COOKIE CONSENT ═══════ */
.cookie-consent {
    position: fixed; left: 20px; right: 20px; bottom: 20px; max-width: 640px; margin: 0 auto;
    background: var(--dark-2); border: 1px solid rgba(198,168,124,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); padding: 24px 28px; z-index: 10001;
    display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between;
    transform: translateY(150%); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cookie-consent.visible { transform: translateY(0); opacity: 1; }
.cookie-consent p { font-size: 13px; color: var(--text-muted); line-height: 1.7; flex: 1; min-width: 220px; }
.cookie-consent p a { color: var(--gold); text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-small { padding: 12px 22px; font-size: 10px; }
@media (max-width: 576px) {
    .cookie-consent { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
    .cookie-consent-actions { width: 100%; }
    .cookie-consent-actions .btn { flex: 1; justify-content: center; }
}

/* ═══════ MAP EMBED ═══════ */
.map-frame-wrap { border: 1px solid rgba(198,168,124,0.15); overflow: hidden; }
.map-frame-wrap iframe { width: 100%; height: 320px; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); display: block; }
.map-frame-caption { padding: 16px 20px; background: var(--dark-2); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.map-frame-caption p { font-size: 12px; color: var(--text-muted); margin: 0; }
.map-frame-caption a { font-size: 11px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }

/* ═══════ BLOG ═══════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 20px; }
.blog-card { background: var(--dark-2); border: 1px solid rgba(198,168,124,0.08); overflow: hidden; transition: all 0.4s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(0,0,0,0.4); border-color: rgba(198,168,124,0.2); }
.blog-card-img { height: 220px; overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(1.1); transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.blog-card-body h3 { font-size: 22px; color: var(--cream); font-weight: 400; }
.blog-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.8; flex: 1; }
.blog-meta { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.blog-meta i { color: var(--gold); }
.blog-credit { font-size: 9px; color: rgba(245,240,232,0.4); letter-spacing: 1px; }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } }
