/* ===================================================================
   HIDDEN ROUTES — Premium Design System
   Fully responsive, mobile-first, optimised for all devices
   =================================================================== */

/* --- CUSTOM PROPERTIES --- */
:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: #141414;
    --bg-card-hover: #1a1a18;
    --gold: #C5A059;
    --gold-light: #d4b06a;
    --gold-dim: rgba(197, 160, 89, 0.15);
    --gold-glow: rgba(197, 160, 89, 0.35);
    --gold-subtle: rgba(197, 160, 89, 0.06);
    --text-primary: #f0ece4;
    --text-secondary: #8a8278;
    --text-muted: #4a4642;
    --border: rgba(197, 160, 89, 0.12);
    --border-hover: rgba(197, 160, 89, 0.35);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius: 4px;
    --radius-lg: 8px;
    --radius-xl: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 40px rgba(197, 160, 89, 0.1);

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Safe area padding for notched devices */
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);

    /* Nav height */
    --nav-height: 64px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    padding-bottom: var(--safe-bottom);
}

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

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: 16px; /* Prevents zoom on iOS */
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* --- LAYOUT --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    padding-left: max(var(--space-md), var(--safe-left));
    padding-right: max(var(--space-md), var(--safe-right));
}

.section {
    padding: var(--space-xl) 0;
}

.section-sm {
    padding: var(--space-lg) 0;
}

/* page offset for fixed nav */
main,
.page-content {
    padding-top: var(--nav-height);
}


/* ===================================================================
   NAVBAR
   =================================================================== */
#nav-placeholder nav,
nav.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    padding-left: max(var(--space-md), var(--safe-left));
    padding-right: max(var(--space-md), var(--safe-right));
    padding-top: var(--safe-top);
    height: calc(var(--nav-height) + var(--safe-top));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity var(--transition);
    white-space: nowrap;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-secondary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: calc(var(--nav-height) + var(--safe-top));
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        padding: var(--space-lg) 0;
        padding-bottom: var(--safe-bottom);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1.25rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 0.18em;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:active {
        background: var(--gold-dim);
        color: var(--gold);
    }
}


/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: calc(var(--nav-height) + 3rem) var(--space-md) var(--space-xl);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(197, 160, 89, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(197, 160, 89, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(197, 160, 89, 0.025) 80px),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(197, 160, 89, 0.025) 80px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.9s 0.2s forwards;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.05;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--text-secondary);
    max-width: 460px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.9s 0.6s forwards;
}

/* Search bar */
.hero-search {
    display: flex;
    align-items: stretch;
    max-width: 620px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
}

.hero-search:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(197, 160, 89, 0.15);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 300;
    padding: 1rem 1.25rem;
    letter-spacing: 0.02em;
}

.hero-search input::placeholder {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--bg);
    border: none;
    padding: 0 1.25rem;
    cursor: pointer;
    transition: background var(--transition);
    flex-shrink: 0;
}

.hero-search-btn:hover {
    background: var(--gold-light);
}

.hero-search-btn:active {
    transform: scale(0.96);
}

.hero-search-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.9s 1.2s forwards;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s 1.5s infinite;
}

/* Hero mobile tweaks */
@media (max-width: 640px) {
    .hero {
        padding: calc(var(--nav-height) + 2rem) var(--space-sm) var(--space-lg);
        min-height: 100svh;
    }

    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
    }

    .hero-search {
        flex-direction: row;
    }

    .hero-search input {
        padding: 0.9rem 1rem;
    }

    .hero-search input::placeholder {
        font-size: 0.75rem;
    }

    .hero-search-btn {
        padding: 0 1rem;
    }

    .hero-scroll {
        bottom: 1.5rem;
    }
}


/* ===================================================================
   HERO TAGS
   =================================================================== */
.hero-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.9s 1s forwards;
}

.hero-tag-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero-tag {
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform 0.2s;
}

.hero-tag:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-dim);
}

.hero-tag:active {
    transform: scale(0.95);
}

@media (max-width: 640px) {
    .hero-tags {
        gap: 0.4rem;
    }
    .hero-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
    }
}


/* ===================================================================
   TICKER MARQUEE
   =================================================================== */
.ticker-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
    background: var(--bg-elevated);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
    width: max-content;
}

.ticker-track span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ticker-dot {
    color: var(--gold) !important;
    opacity: 0.5;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
    .ticker-wrap {
        padding: 0.7rem 0;
    }
    .ticker-track {
        gap: 1rem;
    }
    .ticker-track span {
        font-size: 0.65rem;
    }
}


/* ===================================================================
   SECTION HEADERS
   =================================================================== */
.destinations-section {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-label {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-primary);
}

.section-cta {
    text-align: center;
    margin-top: var(--space-lg);
}


/* ===================================================================
   DESTINATION CARDS
   =================================================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 960px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.dest-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-spring), border-color var(--transition), box-shadow var(--transition), background var(--transition);
    cursor: pointer;
    will-change: transform;
}

.dest-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-hover), var(--shadow-gold);
}

@media (hover: none) {
    .dest-card:hover {
        transform: none;
    }
}

.dest-card:active {
    transform: scale(0.98);
}

.dest-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-elevated);
    position: relative;
}

.dest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(0.85) saturate(0.9);
}

.dest-card:hover .dest-card-image img {
    transform: scale(1.06);
    filter: brightness(0.95) saturate(1);
}

.dest-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1812 0%, #141210 50%, #1c1a14 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-card-image-placeholder::after {
    content: attr(data-icon);
    font-size: 2.5rem;
    opacity: 0.35;
    transition: transform var(--transition-slow), opacity var(--transition);
}

.dest-card:hover .dest-card-image-placeholder::after {
    transform: scale(1.15);
    opacity: 0.5;
}

.dest-card-body {
    padding: var(--space-md);
}

.dest-card-region {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.dest-card-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.dest-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-card-footer {
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dest-card-tag {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.dest-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.dest-card:hover .dest-card-arrow {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateX(2px);
}

.dest-card-arrow svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: color var(--transition);
}

.dest-card:hover .dest-card-arrow svg {
    color: var(--bg);
}

/* Badge */
.dest-card-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* Card mobile adjustments */
@media (max-width: 640px) {
    .dest-card {
        border-radius: var(--radius-lg);
    }

    .dest-card-image {
        aspect-ratio: 16/10;
    }

    .dest-card-body {
        padding: var(--space-sm) var(--space-md);
    }

    .dest-card-title {
        font-size: 1.15rem;
    }

    .dest-card-desc {
        font-size: 0.82rem;
        -webkit-line-clamp: 2;
    }

    .dest-card-footer {
        padding: 0.75rem var(--space-md);
    }

    .dest-card-tag {
        font-size: 0.65rem;
    }
}


/* ===================================================================
   FORMS
   =================================================================== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    transition: color var(--transition);
}

.form-group:focus-within .form-label {
    color: var(--gold);
}

.form-input,
.form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    outline: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 300;
    padding: 0.75rem 0;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--gold);
    box-shadow: 0 1px 0 0 var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 0.65rem;
}


/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    overflow: hidden;
}

/* Ripple shimmer on hover */
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.btn:hover::before {
    transform: translateX(100%);
}

.btn:active {
    transform: scale(0.97);
}

.btn-gold {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--border-hover);
}

.btn-outline:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
}

/* Button mobile: bigger touch target */
@media (max-width: 640px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 0.72rem;
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 641px) {
    .btn {
        width: auto;
    }
}


/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-hero {
    padding: calc(var(--nav-height) + 3rem) var(--space-md) var(--space-xl);
    text-align: center;
}

.contact-hero .eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.contact-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
    padding: var(--space-lg) 0 var(--space-3xl);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-2xl);
    }
}

.contact-left-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.contact-left-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.contact-left-text strong {
    color: var(--text-primary);
    font-weight: 400;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-primary);
    transition: all var(--transition);
    background: var(--bg-elevated);
}

.instagram-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.instagram-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.15);
}

.instagram-btn:active {
    transform: scale(0.97);
}

@media (max-width: 640px) {
    .contact-hero {
        padding: calc(var(--nav-height) + 2rem) var(--space-sm) var(--space-lg);
    }

    .contact-grid {
        gap: var(--space-lg);
        padding-bottom: var(--space-2xl);
    }

    .contact-left-text {
        font-size: 0.95rem;
    }

    .instagram-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ===================================================================
   FOOTER
   =================================================================== */
#footer-placeholder footer,
footer.site-footer {
    border-top: 1px solid var(--border);
    padding: var(--space-lg) var(--space-md);
    padding-bottom: max(var(--space-lg), var(--safe-bottom));
    text-align: center;
    background: var(--bg);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
    box-shadow: 0 0 16px var(--gold-glow);
    transform: translateY(-2px);
}

.footer-social a:active {
    transform: scale(0.92);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.footer-copy span {
    color: var(--gold);
}


/* ===================================================================
   404 ERROR PAGE
   =================================================================== */
.error-page {
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    position: relative;
    overflow: hidden;
}

.error-404-bg {
    position: absolute;
    font-family: var(--font-heading);
    font-size: clamp(8rem, 30vw, 22rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(197, 160, 89, 0.08);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.04em;
}

.error-content {
    position: relative;
    z-index: 1;
    max-width: 420px;
}

.error-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.error-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.error-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 360px;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .error-404-bg {
        font-size: clamp(6rem, 35vw, 10rem);
    }
    .error-heading {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
    .error-sub {
        font-size: 0.88rem;
    }
}


/* ===================================================================
   ANIMATIONS
   =================================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.4;
        transform: scaleY(0.7);
    }
}

/* Reduce motion for accessibility */
@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;
    }
    .ticker-track {
        animation: none;
    }
}


/* ===================================================================
   UTILITY CLASSES
   =================================================================== */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}


/* ===================================================================
   ABOUT TEASER SECTION
   =================================================================== */
.about-teaser-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-teaser-grid {
        grid-template-columns: 1fr 1.4fr;
        gap: var(--space-2xl);
    }
}

.about-teaser-visual {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-teaser-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
    animation: ringPulse 4s ease-in-out infinite;
}

.about-teaser-ring-1 {
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.about-teaser-ring-2 {
    width: 130px;
    height: 130px;
    animation-delay: 0.6s;
}

.about-teaser-ring-3 {
    width: 80px;
    height: 80px;
    animation-delay: 1.2s;
    border-color: rgba(197, 160, 89, 0.25);
}

.about-teaser-icon {
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.about-teaser-title {
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    margin: 0.8rem 0 1.2rem;
    line-height: 1.15;
}

.about-teaser-title em {
    color: var(--gold);
    font-style: italic;
}

.about-teaser-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 640px) {
    .about-teaser-section {
        padding: var(--space-xl) 0;
    }
    .about-teaser-visual {
        width: 140px;
        height: 140px;
    }
    .about-teaser-ring-1 { width: 140px; height: 140px; }
    .about-teaser-ring-2 { width: 100px; height: 100px; }
    .about-teaser-ring-3 { width: 60px; height: 60px; }
    .about-teaser-icon { font-size: 1.8rem; }
    .about-teaser-text {
        font-size: 0.88rem;
    }
}


/* ===================================================================
   STATS STRIP
   =================================================================== */
.stats-strip {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s, transform 0.6s;
}

.stat-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-number em {
    font-style: normal;
    font-size: 0.65em;
}

.stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider {
    display: none; /* Using grid instead */
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg) var(--space-md);
    }
    .stat-number {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }
}


/* ===================================================================
   DESTINATIONS PAGE
   =================================================================== */
.dest-page-hero {
    position: relative;
    padding: calc(var(--nav-height) + 3rem) 0 var(--space-xl);
    overflow: hidden;
}

.dest-page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.dest-page-hero-inner {
    max-width: 700px;
}

.dest-page-title {
    font-size: clamp(2.2rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0.6rem 0 1.2rem;
}

.dest-page-title em {
    color: var(--gold);
    font-style: italic;
}

.dest-page-sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
}

/* Filter bar */
.filter-bar-wrap {
    position: sticky;
    top: var(--nav-height);
    z-index: 100;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: nowrap;
}

.filter-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}

.filter-pills {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.25rem 0;
}

.filter-pills::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    white-space: nowrap;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.filter-pill:hover {
    color: var(--gold);
    border-color: var(--border-hover);
}

.filter-pill:active {
    transform: scale(0.95);
}

.filter-pill.active {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    font-weight: 500;
}

.filter-count {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

.dest-full-section {
    padding: var(--space-lg) 0 var(--space-2xl);
}

.filter-empty {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.filter-empty-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 2;
}

.filter-empty-text span {
    color: var(--text-secondary);
}

.dest-cta-strip {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.dest-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.dest-cta-label {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.dest-cta-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

@media (max-width: 640px) {
    .dest-page-hero {
        padding: calc(var(--nav-height) + 2rem) 0 var(--space-lg);
    }

    .filter-bar {
        flex-wrap: nowrap;
    }

    .filter-label {
        display: none;
    }

    .filter-pills {
        gap: 0.4rem;
    }

    .filter-pill {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .filter-count {
        font-size: 0.6rem;
    }

    .dest-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .dest-cta-inner .btn {
        width: 100%;
    }
}


/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.about-hero {
    position: relative;
    padding: calc(var(--nav-height) + 4rem) 0 var(--space-2xl);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 30% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(197, 160, 89, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-inner {
    max-width: 760px;
}

.about-hero-title {
    font-size: clamp(2.2rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0.8rem 0 var(--space-md);
    opacity: 0;
    animation: fadeUp 0.9s 0.3s forwards;
}

.about-hero-title em {
    color: var(--gold);
    font-style: italic;
}

.about-hero-sub {
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
}

.about-hero-scroll-line {
    position: absolute;
    bottom: 0;
    left: var(--space-md);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.4;
}

/* Manifesto */
.manifesto-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
}

.manifesto-inner {
    max-width: 800px;
    position: relative;
    padding-left: 3rem;
}

.manifesto-mark {
    position: absolute;
    left: -0.5rem;
    top: -1.5rem;
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
    user-select: none;
}

.manifesto-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    border: none;
    margin: 0 0 1.2rem;
    font-weight: 400;
}

.manifesto-cite {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

@media (max-width: 640px) {
    .manifesto-inner {
        padding-left: 1.5rem;
    }
    .manifesto-mark {
        font-size: 5rem;
        left: -0.75rem;
        top: -1rem;
    }
    .manifesto-section {
        padding: var(--space-xl) 0;
    }
}

/* Story */
.about-story-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--space-2xl);
        align-items: start;
    }
}

.about-story-title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    margin-top: 0.8rem;
    line-height: 1.2;
}

.about-story-right p {
    font-size: clamp(0.88rem, 2.2vw, 0.97rem);
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.about-story-right p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .about-story-section {
        padding: var(--space-xl) 0;
    }
}

/* Values */
.values-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: border-color var(--transition), transform var(--transition-spring), background var(--transition), box-shadow var(--transition);
    opacity: 0;
    transform: translateY(16px);
}

.value-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

@media (hover: none) {
    .value-card:hover {
        transform: none;
    }
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    color: var(--gold);
    transition: background var(--transition), border-color var(--transition);
}

.value-card:hover .value-icon {
    background: var(--gold-dim);
    border-color: var(--border-hover);
}

.value-icon svg {
    width: 18px;
    height: 18px;
}

.value-title {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.value-desc {
    font-size: 0.87rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .values-section {
        padding: var(--space-xl) 0;
    }
    .value-card {
        padding: var(--space-md);
        border-radius: var(--radius-lg);
    }
}

/* Team */
.team-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s, transform 0.6s;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: opacity 0.6s, transform 0.6s, border-color var(--transition), background var(--transition);
}

.team-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover {
    border-color: var(--border);
    background: var(--bg-card);
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.team-card:hover .team-avatar {
    border-color: var(--border-hover);
    box-shadow: 0 0 20px var(--gold-dim);
}

.team-avatar::after {
    content: attr(data-initials);
}

.team-name {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .team-section {
        padding: var(--space-xl) 0;
    }

    .team-grid {
        gap: 0;
    }

    .team-card {
        flex-direction: row;
        align-items: flex-start;
        gap: var(--space-md);
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .team-card:last-child {
        border-bottom: none;
    }

    .team-card:hover {
        background: none;
        border-color: transparent;
        border-bottom-color: var(--border);
    }

    .team-card:last-child:hover {
        border-bottom: none;
    }

    .team-avatar {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        font-size: 0.95rem;
    }

    .team-name {
        font-size: 1rem;
    }

    .team-bio {
        font-size: 0.82rem;
    }
}

/* About CTA */
.about-cta-section {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
    text-align: center;
}

.about-cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: 0.8rem 0 1rem;
}

.about-cta-sub {
    font-size: clamp(0.88rem, 2.2vw, 0.97rem);
    color: var(--text-secondary);
    max-width: 440px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.about-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .about-cta-section {
        padding: var(--space-2xl) 0;
    }
    .about-cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .about-cta-actions .btn {
        width: 100%;
    }
}


/* ===================================================================
   DIVIDER
   =================================================================== */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: var(--space-xl) 0;
}


/* ===================================================================
   TOUCH DEVICE ENHANCEMENTS
   =================================================================== */

/* Larger tap targets everywhere on touch */
@media (hover: none) and (pointer: coarse) {
    .nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .filter-pill {
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .footer-social a {
        width: 48px;
        height: 48px;
    }

    /* Disable hover transforms on touch */
    .dest-card:hover {
        transform: none;
        box-shadow: none;
    }

    .value-card:hover {
        transform: none;
    }

    .footer-social a:hover {
        transform: none;
    }
}

/* High-DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-hamburger span {
        height: 1px;
    }
}


/* ===================================================================
   LANDSCAPE MOBILE (avoid cramped hero)
   =================================================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 2rem);
        padding-bottom: var(--space-lg);
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }

    .hero-sub {
        margin-bottom: var(--space-md);
    }

    .hero-scroll {
        display: none;
    }
}


/* ===================================================================
   TABLET SPECIFIC (768px - 1024px)
   =================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-teaser-grid {
        gap: var(--space-xl);
    }
}


/* ===================================================================
   LARGE SCREENS (1400px+)
   =================================================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-content {
        max-width: 960px;
    }

    .dest-card-image {
        aspect-ratio: 4/3;
    }
}


/* ===================================================================
   SECTION SUBTITLE
   =================================================================== */
.section-subtitle {
    font-size: clamp(0.88rem, 2vw, 0.97rem);
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0.5rem auto 0;
    line-height: 1.7;
}


/* ===================================================================
   EXPLORE BY REGION
   =================================================================== */
.regions-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
}

.regions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.region-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: border-color var(--transition), transform var(--transition-spring), background var(--transition), box-shadow var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.region-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle glow on hover */
.region-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at center, var(--gold-subtle) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

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

.region-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

@media (hover: none) {
    .region-card:hover { transform: none; }
}

.region-card:active {
    transform: scale(0.98);
}

.region-card-icon {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.region-card-title {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.region-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

.region-card-count {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.4rem;
}

@media (max-width: 640px) {
    .regions-section {
        padding: var(--space-xl) 0;
    }
    .region-card {
        padding: var(--space-md);
        border-radius: var(--radius-lg);
    }
}


/* ===================================================================
   TRAVEL GUIDES & TIPS
   =================================================================== */
.guides-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .guides-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: border-color var(--transition), transform var(--transition-spring), box-shadow var(--transition);
    opacity: 0;
    transform: translateY(16px);
}

.guide-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.guide-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (hover: none) {
    .guide-card:hover { transform: none; }
}

.guide-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 0.4rem;
    transition: background var(--transition), border-color var(--transition);
}

.guide-card:hover .guide-card-icon {
    background: var(--gold-dim);
    border-color: var(--border-hover);
}

.guide-card-icon svg {
    width: 20px;
    height: 20px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guide-card-title {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.guide-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

.guide-card-meta {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.5rem;
}

@media (max-width: 640px) {
    .guides-section {
        padding: var(--space-xl) 0;
    }
    .guide-card {
        padding: var(--space-md);
        border-radius: var(--radius-lg);
    }
}


/* ===================================================================
   SEASONAL CALENDAR
   =================================================================== */
.seasons-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
}

.seasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .seasons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.season-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition-spring);
    opacity: 0;
    transform: translateY(16px);
}

.season-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.season-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

@media (hover: none) {
    .season-card:hover { transform: none; }
}

.season-card-header {
    padding: var(--space-md) var(--space-md) 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.season-icon {
    font-size: 1.6rem;
}

.season-title {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.season-title span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.15rem;
    font-weight: 400;
}

.season-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.65;
    padding: 0.8rem var(--space-md);
}

.season-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0 var(--space-md) var(--space-md);
}

.season-tags span {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.2rem 0.55rem;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .seasons-section {
        padding: var(--space-xl) 0;
    }
    .season-card {
        border-radius: var(--radius-lg);
    }
}


/* ===================================================================
   INDIA IN NUMBERS
   =================================================================== */
.india-numbers-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg) var(--space-md);
    text-align: center;
}

@media (min-width: 768px) {
    .numbers-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s, transform 0.5s;
}

.number-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.number-value {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.number-value em {
    font-style: normal;
    font-size: 0.5em;
    opacity: 0.7;
}

.number-label {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .india-numbers-section {
        padding: var(--space-xl) 0;
    }
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}


/* ===================================================================
   CULTURE & HERITAGE
   =================================================================== */
.culture-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .culture-card-featured {
        grid-column: 1 / -1;
    }
}

.culture-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: border-color var(--transition), transform var(--transition-spring), box-shadow var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(16px);
}

.culture-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.culture-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (hover: none) {
    .culture-card:hover { transform: none; }
}

.culture-card-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius);
}

.culture-card-title {
    font-size: 1.15rem;
    color: var(--text-primary);
    padding-right: 4rem;
}

.culture-card-featured .culture-card-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.culture-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.culture-card-featured .culture-card-desc {
    font-size: 0.9rem;
}

.culture-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.culture-card-meta span {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.culture-card-meta span:first-child {
    color: var(--gold);
}

@media (max-width: 640px) {
    .culture-section {
        padding: var(--space-xl) 0;
    }
    .culture-card {
        padding: var(--space-md);
        border-radius: var(--radius-lg);
    }
    .culture-card-title {
        padding-right: 3rem;
        font-size: 1.05rem;
    }
}


/* ===================================================================
   NEWSLETTER
   =================================================================== */
.newsletter-section {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
    text-align: center;
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin: 0.8rem 0 1rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.newsletter-sub {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.9rem 1.25rem;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn {
    flex-shrink: 0;
}

.newsletter-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

@media (max-width: 640px) {
    .newsletter-section {
        padding: var(--space-2xl) 0;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form .btn {
        width: 100%;
    }
}


/* ===================================================================
   FAQ SECTION
   =================================================================== */
.faq-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    transition: color var(--transition);
    -webkit-tap-highlight-color: transparent;
}

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

.faq-question::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--transition);
    font-weight: 300;
    line-height: 1;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-answer {
    padding: 0 0 var(--space-md);
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 640px) {
    .faq-section {
        padding: var(--space-xl) 0;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: var(--space-sm) 0;
    }
    .faq-answer p {
        font-size: 0.85rem;
    }
}


/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
    width: 100%;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-3xl);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .nav-logo {
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.footer-credits {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.footer-credits span {
    color: var(--gold);
}

@media (max-width: 640px) {
    .footer-grid {
        gap: var(--space-lg);
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ===================================================================
   PRINT STYLES
   =================================================================== */
@media print {
    body {
        background: white;
        color: black;
    }

    .site-nav,
    .hero-scroll,
    .ticker-wrap,
    .filter-bar-wrap,
    #nav-placeholder,
    #footer-placeholder {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .dest-card {
        break-inside: avoid;
        border: 1px solid #ddd;
    }
}

/* ===================================================================
   FOOD SECTION
   =================================================================== */
.food-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.02));
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .food-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.food-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    text-align: center;
    transition: transform var(--transition-spring), border-color var(--transition), background var(--transition);
    position: relative;
    overflow: hidden;
}

.food-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.food-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-glow);
    background: var(--bg-card-hover);
}

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

.food-card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 12px rgba(197, 160, 89, 0.1));
    transition: transform var(--transition);
}

.food-card:hover .food-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.food-card-title {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.food-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.food-card-link {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    transition: opacity var(--transition);
}

.food-card:hover .food-card-link {
    opacity: 1;
}

/* ===================================================================
   BACK TO TOP
   =================================================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

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

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

@media (max-width: 640px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}