@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

/* ==========================================================================
   1. CORE DESIGN SYSTEM & CUSTOM PROPERTIES
   Cinematic Scroll - Sunset Coral palette (light + dark)
   ========================================================================== */
:root {
    /* Fonts */
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Theme Tokens - LIGHT MODE (Default) - warm cream paper, sunset coral accents */
    --bg-primary: #fdf6ec;
    --bg-secondary: #f7e8d6;
    --bg-card: rgba(255, 255, 255, 0.78);
    --bg-glass: rgba(253, 246, 236, 0.7);

    --text-primary: #2a0f1f;
    --text-secondary: #6b4a52;
    --text-muted: #a8867f;

    --accent-forest: #c43d1f;
    --accent-forest-hover: #de4f2f;
    --accent-terracotta: #ff5e3a;
    --accent-terracotta-hover: #ff7e5f;
    --accent-gold: #feb47b;
    --accent-gold-gradient: linear-gradient(135deg, #ff5e3a, #feb47b);

    --border-color: rgba(255, 94, 58, 0.1);
    --border-glass: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 12px rgba(42, 15, 31, 0.04);
    --shadow-md: 0 12px 30px rgba(42, 15, 31, 0.08);
    --shadow-lg: 0 20px 48px rgba(42, 15, 31, 0.12);

    --blur-intensity: 14px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

[data-theme="dark"] {
    /* Theme Tokens - DARK MODE - plum-black canvas, sunset coral accents */
    --bg-primary: #1a0e14;
    --bg-secondary: #261520;
    --bg-card: rgba(38, 21, 32, 0.72);
    --bg-glass: rgba(26, 14, 20, 0.7);

    --text-primary: #fff1e6;
    --text-secondary: #c4a59d;
    --text-muted: #8b6f6a;

    --accent-forest: #ff7e5f;
    --accent-forest-hover: #feb47b;
    --accent-terracotta: #ff7e5f;
    --accent-terracotta-hover: #feb47b;
    --accent-gold: #ffb088;
    --accent-gold-gradient: linear-gradient(135deg, #ff7e5f, #feb47b);

    --border-color: rgba(255, 126, 95, 0.12);
    --border-glass: rgba(255, 255, 255, 0.05);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.55);
}

/* ==========================================================================
   2. RESET & BASE ELEMENTS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    font-weight: 400;
    transition: var(--transition-smooth);
    overflow-x: hidden;
}

/* Premium Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 em, h2 em, h3 em, h4 em,
h1 span.accent, h2 span.accent {
    font-style: italic;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero gradient text already uses span — preserve the cinematic look */
.hero-text h1 span {
    font-style: italic;
}

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

a:hover {
    color: var(--accent-terracotta-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

ul {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ==========================================================================
   3. REUSABLE PREMIUM PATTERNS (GLASSMORPHISM, BADGES, BUTTONS)
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(var(--blur-intensity));
    -webkit-backdrop-filter: blur(var(--blur-intensity));
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(221, 161, 94, 0.25);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-forest);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--accent-forest-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 54, 38, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.btn-terracotta {
    background: var(--accent-terracotta);
    color: #ffffff;
}

.btn-terracotta:hover {
    background: var(--accent-terracotta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 90, 55, 0.2);
}

.badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.badge-forest {
    background-color: rgba(20, 54, 38, 0.08);
    color: var(--accent-forest);
}

.badge-terracotta {
    background-color: rgba(204, 90, 55, 0.08);
    color: var(--accent-terracotta);
}

.badge-gold {
    background-color: rgba(221, 161, 94, 0.12);
    color: var(--accent-gold);
}

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

.section-header .sub {
    font-family: var(--font-heading);
    color: var(--accent-terracotta);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   4. NAVIGATION BAR
   ========================================================================== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.site-nav.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-intensity));
    -webkit-backdrop-filter: blur(var(--blur-intensity));
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.55rem;
    letter-spacing: 0.01em;
    color: var(--text-primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-terracotta);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.theme-toggle:hover {
    transform: scale(1.05);
    background: var(--border-color);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    fill: var(--text-primary);
}

/* Burger menu for mobile */
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   5. HERO BANNER
   ========================================================================== */
.hero {
    min-height: 90vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(255, 126, 95, 0.12) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3rem, 6.5vw, 5.4rem);
    line-height: 0.98;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.hero-text h1 span {
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Split-Hero Imagery for Japan & Germany */
.hero-visual {
    position: relative;
    height: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.split-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.split-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.split-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.split-card:hover img {
    transform: scale(1.05);
}

.split-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(15, 14, 13, 0.9) 0%, rgba(15, 14, 13, 0.4) 60%, transparent 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.split-overlay span {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.split-overlay h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.split-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ==========================================================================
   6. TRAVEL STATS HUB
   ========================================================================== */
.stats-banner {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 3.8rem;
    color: var(--accent-terracotta);
    margin-bottom: 6px;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
}

.stat-item p {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   7. DESTINATIONS INDEX & FILTER GRID
   ========================================================================== */
.destinations-section {
    padding: 100px 0;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    background: var(--bg-secondary);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.filter-tab {
    padding: 8px 24px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--accent-forest);
    color: #ffffff;
}

.search-input-wrapper {
    position: relative;
    width: 320px;
}

.search-input {
    width: 100%;
    padding: 12px 20px 12px 48px;
    border-radius: 100px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.search-input:focus {
    border-color: var(--accent-terracotta);
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    fill: var(--text-muted);
    width: 16px;
    height: 16px;
}

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

.dest-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(221, 161, 94, 0.25);
}

.dest-img-container {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.dest-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.dest-card:hover .dest-img-container img {
    transform: scale(1.04);
}

.dest-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.dest-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.dest-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dest-meta svg {
    width: 12px;
    height: 12px;
    fill: var(--text-muted);
}

.dest-body h3 {
    font-size: 1.45rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.dest-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.dest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.dest-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.dest-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.dest-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dest-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: var(--transition-fast);
}

.dest-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   8. INDIVIDUAL BLOG ITINERARY PAGE (BARCELONA)
   ========================================================================== */
.article-hero {
    height: 55vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.article-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: brightness(0.7);
}

.article-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, var(--bg-primary) 0%, rgba(15, 14, 13, 0.4) 60%, transparent 100%);
}

.article-hero .container {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.article-header-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.article-title {
    font-size: 3.2rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.article-main-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 48px;
    padding: 80px 0;
}

.article-body {
    max-width: 720px;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.article-body p {
    margin-bottom: 24px;
}

.article-body blockquote {
    padding-left: 20px;
    border-left: 4px solid var(--accent-terracotta);
    font-style: italic;
    color: var(--text-secondary);
    margin: 32px 0;
    font-size: 1.15rem;
}

.article-section-title {
    font-size: 1.8rem;
    margin: 48px 0 20px 0;
}

/* Interactive Itinerary Timeline */
.timeline-container {
    position: relative;
    padding-left: 36px;
    margin: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-step {
    position: relative;
    margin-bottom: 40px;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 3px solid var(--accent-terracotta);
    box-shadow: 0 0 0 4px var(--bg-primary);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-step:hover::before {
    background-color: var(--accent-terracotta);
}

.timeline-step h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-step h4 span {
    font-size: 0.72rem;
    background: var(--bg-secondary);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--accent-forest);
    font-family: var(--font-heading);
}

.timeline-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Monetization Inline Guide Box */
.tour-box {
    margin: 36px 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
    overflow: hidden;
}

.tour-img {
    height: 100%;
    min-height: 180px;
    position: relative;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.tour-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-details h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.tour-details p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.tour-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-price {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tour-price strong {
    font-size: 1.2rem;
    color: var(--text-primary);
    display: block;
}

/* Sidebar Widgets */
.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 100px;
}

.widget {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-terracotta);
}

.widget-about {
    text-align: center;
}

.widget-about-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 16px auto;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.widget-about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-about p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background: var(--accent-terracotta);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--text-primary);
}

.social-btn:hover svg {
    fill: #ffffff;
}

/* ==========================================================================
   9. COLLABORATION / MEDIA KIT PAGE (`collab.html`)
   ========================================================================== */
.media-kit-hero {
    padding: 140px 0 80px 0;
    background: radial-gradient(circle at 10% 80%, rgba(204, 90, 55, 0.05) 0%, transparent 60%);
    border-bottom: 1px solid var(--border-color);
}

.media-kit-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.collab-service {
    padding: 36px;
    text-align: center;
}

.collab-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--accent-terracotta);
}

.collab-service-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.collab-service h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.collab-service p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Demographic Stats Graph Card */
.demographics-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    margin: 80px 0;
}

.demo-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-bar-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.demo-bar-container {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.demo-bar {
    height: 100%;
    border-radius: 10px;
    background: var(--accent-gold-gradient);
    width: 0;
    transition: width 1.5s ease-out;
}

/* ==========================================================================
   10. CONTACT PAGE & PARTNERSHIP FORM
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    padding: 100px 0;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-forest);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-detail-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Intricate Contact Form */
.premium-form {
    padding: 40px;
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.form-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    font-size: 0.92rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-terracotta);
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.form-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ==========================================================================
   11. NEWSLETTER & COLLAPSIBLE BOTTOM SIGNUP
   ========================================================================== */
.newsletter-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(20, 54, 38, 0.05) 0%, rgba(221, 161, 94, 0.05) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.newsletter-box p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 24px;
    border-radius: 100px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    border-color: var(--accent-forest);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--bg-secondary);
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.footer-links-grid a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links-grid a:hover {
    color: var(--accent-terracotta);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   13. DYNAMIC SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   14. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text p {
        margin: 0 auto 36px auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 580px;
        margin: 0 auto;
        width: 100%;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar-wrapper {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* Mobile menu handling in JS */
    }
    
    .nav-toggle {
        display: block;
        color: var(--text-primary);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .media-kit-layout {
        grid-template-columns: 1fr;
    }
    
    .demographics-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .tour-box {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   15. DROPDOWN NAVIGATION MENU
   ========================================================================== */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-card);
    backdrop-filter: blur(var(--blur-intensity));
    -webkit-backdrop-filter: blur(var(--blur-intensity));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 12px;
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    pointer-events: none;
    text-align: left;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    color: var(--text-primary) !important;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.dropdown-item::after {
    display: none !important; /* Remove link bottom line effect for dropdown items */
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--accent-terracotta) !important;
}

.dropdown-category {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 6px 16px;
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
}

.dropdown-category:first-of-type {
    margin-top: 0;
    border-top: none;
}

/* Mega Dropdown columns & layout adjustments for desktop */
@media screen and (min-width: 769px) {
    .dropdown-menu {
        display: grid;
        grid-template-columns: repeat(4, 180px);
        gap: 20px;
        padding: 24px;
        min-width: 820px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .dropdown-col {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .dropdown-col .dropdown-category {
        margin-top: 0;
        border-top: none;
        padding: 4px 12px;
        margin-bottom: 4px;
    }
    
    .dropdown-col .dropdown-item {
        padding: 6px 12px;
    }
}

/* Tablet Mega Menu Adjustments */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .dropdown-menu {
        grid-template-columns: repeat(2, 180px);
        min-width: 420px;
        max-height: 500px;
        overflow-y: auto;
    }
}

@media screen and (max-width: 768px) {
    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }

    .nav-links {
        max-height: calc(100dvh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }

    .nav-item-dropdown {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none; /* Controlled by custom JS or toggle */
        padding: 10px 0;
        min-width: auto;
        transition: none;
    }
    
    .nav-item-dropdown:hover .dropdown-menu,
    .nav-item-dropdown.open .dropdown-menu {
        transform: none;
        display: block;
    }
    
    .dropdown-item {
        padding: 6px 0;
        font-size: 0.88rem;
    }
    
    .dropdown-col {
        margin-top: 15px;
    }
    
    .dropdown-col .dropdown-category {
        border-top: 1px solid var(--border-color);
        padding-top: 10px;
    }
    
    .dropdown-col:first-of-type .dropdown-category {
        border-top: none;
        padding-top: 0;
    }
}

/* ==========================================================================
   16. CINEMATIC SUNSET POLISH (applies sitewide, both light and dark)
   ========================================================================== */

/* Soft radial sunset glow behind the whole page — subtle in light, atmospheric in dark */
body {
    background-image: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 126, 95, 0.10), transparent 70%);
    background-attachment: fixed;
}
[data-theme="dark"] body {
    background-image: radial-gradient(ellipse 90% 70% at 50% -5%, rgba(255, 126, 95, 0.14), transparent 70%);
}

/* Italic accent inside any heading uses the sunset gradient */
h1 em, h2 em, h3 em, h4 em {
    font-style: italic;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero subtle parallax/scale on its imagery for the cinematic feel */
.hero-visual .split-card img,
.dest-img-container img,
.article-hero-bg img {
    transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}

/* Smooth-rise the hero text on page load (no JS needed) */
.hero-text > * {
    opacity: 0;
    transform: translateY(28px);
    animation: heroRise 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.18s; }
.hero-text > *:nth-child(3) { animation-delay: 0.32s; }
.hero-text > *:nth-child(4) { animation-delay: 0.46s; }
@keyframes heroRise {
    to { opacity: 1; transform: translateY(0); }
}

/* Section header sub-label: less harsh in the new palette */
.section-header .sub {
    color: var(--accent-terracotta);
}

/* Buttons: slightly more elegant on a serif site */
.btn {
    letter-spacing: 0.04em;
    font-weight: 500;
}
.btn-primary {
    background: var(--accent-gold-gradient);
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background: var(--accent-gold-gradient);
    filter: brightness(1.08);
    box-shadow: 0 8px 24px rgba(255, 94, 58, 0.28);
}
[data-theme="dark"] .btn-primary {
    color: #1a0e14;
}

/* Glass card hover border tinted to sunset */
.glass-card:hover {
    border-color: rgba(255, 126, 95, 0.35);
}

/* Destination card hover border tint */
.dest-card:hover {
    border-color: rgba(255, 126, 95, 0.3);
}

/* Newsletter banner gradient with sunset tones */
.newsletter-banner {
    background: linear-gradient(135deg, rgba(255, 94, 58, 0.06) 0%, rgba(254, 180, 123, 0.08) 100%);
}
[data-theme="dark"] .newsletter-banner {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.06) 0%, rgba(255, 176, 136, 0.06) 100%);
}

/* Theme toggle: tidy with the new palette */
.theme-toggle {
    border-radius: 999px;
}

/* Selection highlight */
::selection {
    background: rgba(255, 126, 95, 0.35);
    color: var(--text-primary);
}

/* ==========================================================================
   17. CINEMATIC FULL-VIEWPORT HERO (homepage)
   ========================================================================== */
.cinematic-hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff1e6;
    background: #1a0e14;
}
.cinematic-hero .ch-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cinematic-hero .ch-bg img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    border-radius: 0;
    filter: brightness(0.55) saturate(1.15) hue-rotate(-5deg);
    will-change: transform;
    transition: none;
}
.cinematic-hero .ch-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,14,20,0.35) 0%, rgba(42,22,38,0.25) 40%, rgba(26,14,20,0.95) 100%);
    z-index: 1;
}
.cinematic-hero .ch-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.cinematic-hero .ch-kicker {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #ff7e5f;
    margin-bottom: 30px;
    opacity: 0;
    animation: chFade 1s 0.3s forwards;
}
.cinematic-hero h1 {
    font-family: var(--font-display);
    color: #fff1e6;
    font-size: clamp(3.2rem, 9vw, 8.5rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
}
.cinematic-hero h1 .ch-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: chRise 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    margin-right: 0.18em;
}
.cinematic-hero h1 .ch-word:last-child { margin-right: 0; }
.cinematic-hero h1 .ch-word.accent {
    font-style: italic;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cinematic-hero p.ch-sub {
    max-width: 620px;
    margin: 0 auto 40px;
    color: #c4a59d;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0;
    animation: chFade 1s 1.2s forwards;
}
.cinematic-hero .ch-buttons {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: chFade 1s 1.5s forwards;
}
.cinematic-hero .ch-buttons .btn-secondary {
    color: #fff1e6;
    border-color: rgba(255, 241, 230, 0.4);
}
.cinematic-hero .ch-buttons .btn-secondary:hover {
    background: rgba(255, 241, 230, 0.08);
    border-color: #fff1e6;
}
.cinematic-hero .ch-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c4a59d;
    opacity: 0;
    animation: chFade 1s 1.9s forwards;
}
.cinematic-hero .ch-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: #ff7e5f;
    margin: 14px auto 0;
    animation: chDrop 2.2s infinite;
}
@keyframes chFade { to { opacity: 1; } }
@keyframes chRise { to { opacity: 1; transform: translateY(0); } }
@keyframes chDrop {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Recently Visited strip — preserves the previous split-card content below the cinematic hero */
.recent-strip {
    padding: 70px 0 30px;
    background: var(--bg-primary);
}
.recent-strip h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.recent-strip h2 em {
    font-style: italic;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.recent-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 768px) {
    .recent-strip-grid { grid-template-columns: 1fr; }
    .cinematic-hero h1 { font-size: clamp(2.6rem, 12vw, 4.6rem); }
}

/* ==========================================================================
   18. CINEMATIC SCROLL SECTIONS — ticker, sticky storytelling,
       horizontal showcase, big final CTA (homepage)
   ========================================================================== */

/* MARQUEE TICKER */
.cs-ticker {
    padding: 22px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--bg-secondary);
}
.cs-ticker-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: csScroll 45s linear infinite;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-terracotta);
    width: max-content;
}
.cs-ticker-track span { display: inline-flex; align-items: center; }
.cs-ticker-track span::after {
    content: '✦';
    color: var(--text-muted);
    margin-left: 60px;
    font-size: 0.9rem;
}
@keyframes csScroll { to { transform: translateX(-50%); } }

/* STICKY STORYTELLING */
.cs-story {
    padding: 140px 0 80px;
    max-width: 1280px;
    margin: 0 auto;
}
.cs-story-head {
    text-align: center;
    padding: 0 24px 80px;
}
.cs-story-head .sub {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent-terracotta);
    margin-bottom: 18px;
    font-weight: 600;
}
.cs-story-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    max-width: 18ch;
    margin: 0 auto 18px;
}
.cs-story-head h2 em {
    font-style: italic;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cs-story-head p {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.cs-story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    min-height: 90vh;
    align-items: center;
    padding: 60px 40px;
}
.cs-story-row.flip { direction: rtl; }
.cs-story-row.flip > * { direction: ltr; }
.cs-story-row .visual {
    position: sticky;
    top: 100px;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}
.cs-story-row .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cs-story-row:hover .visual img { transform: scale(1.05); }
.cs-story-row .text .num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-style: italic;
    color: var(--accent-terracotta);
    line-height: 1;
}
.cs-story-row .text .place {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin: 28px 0 14px;
    font-weight: 600;
}
.cs-story-row .text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.cs-story-row .text h2 em {
    font-style: italic;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cs-story-row .text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.02rem;
    max-width: 46ch;
    margin-bottom: 18px;
}
.cs-story-row .text .read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--accent-terracotta);
    color: var(--accent-terracotta);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    transition: gap 0.3s;
}
.cs-story-row .text .read-more:hover { gap: 20px; }

/* HORIZONTAL SCROLL SHOWCASE */
.cs-horizontal {
    padding: 120px 0 0;
    overflow: hidden;
    background: var(--bg-secondary);
}
.cs-horizontal-head {
    padding: 0 40px 60px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 20px;
}
.cs-horizontal-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    max-width: 16ch;
}
.cs-horizontal-head h2 em {
    font-style: italic;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cs-horizontal-head p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 320px;
}
.cs-track {
    display: flex;
    gap: 28px;
    padding: 0 40px 100px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.cs-track::-webkit-scrollbar { display: none; }
.cs-h-card {
    flex: 0 0 380px;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    scroll-snap-align: start;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
}
.cs-h-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.cs-h-card:hover img { transform: scale(1.07); }
.cs-h-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.88) 100%);
}
.cs-h-card .info {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    z-index: 2;
}
.cs-h-card .info span {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
}
.cs-h-card .info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 8px;
    color: #fff1e6;
}

/* BIG FINAL CTA */
.cs-cta-final {
    padding: 160px 24px;
    text-align: center;
}
.cs-cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: var(--text-primary);
}
.cs-cta-final h2 em {
    font-style: italic;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cs-cta-final .big-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 22px 48px;
    border: 1px solid var(--accent-terracotta);
    color: var(--accent-terracotta);
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.4s, color 0.4s, gap 0.4s;
}
.cs-cta-final .big-btn:hover {
    background: var(--accent-terracotta);
    color: var(--bg-primary);
    gap: 24px;
}

@media (max-width: 900px) {
    .cs-story-row,
    .cs-story-row.flip {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
        padding: 40px 24px;
        min-height: auto;
    }
    .cs-story-row .visual { position: relative; top: 0; }
    .cs-h-card { flex: 0 0 280px; }
}

/* ============================================
   19. INSTAGRAM STRIP + WORLD MAP
   ============================================ */

.ig-strip {
    padding: 120px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ig-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.ig-kicker {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: var(--accent-terracotta);
    margin-bottom: 16px;
}
.ig-head h2 {
    font-family: var(--font-display, 'Instrument Serif'), serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 14px;
}
.ig-head h2 em {
    font-style: italic;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ig-head p {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 46ch;
}
.ig-follow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border: 1px solid var(--accent-terracotta);
    border-radius: 999px;
    color: var(--accent-terracotta);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, gap 0.3s;
}
.ig-follow svg { width: 18px; height: 18px; }
.ig-follow:hover {
    background: var(--accent-terracotta);
    color: var(--bg-primary);
    gap: 14px;
}
.ig-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.ig-tile {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}
.ig-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.ig-tile:hover img { transform: scale(1.08); }
.ig-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,126,95,0.85), rgba(254,180,123,0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.ig-hover svg { width: 32px; height: 32px; color: #fff; }
.ig-tile:hover .ig-hover { opacity: 1; }

@media (max-width: 900px) {
    .ig-grid { grid-template-columns: repeat(3, 1fr); }
    .ig-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px) {
    .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* WORLD MAP */
.world-map-sec {
    padding: 140px 0;
    background: var(--bg-primary);
}
.wm-head {
    text-align: center;
    margin-bottom: 70px;
}
.wm-head .sub {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 18px;
}
.wm-head h2 {
    font-family: var(--font-display, 'Instrument Serif'), serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 18px;
}
.wm-head h2 em {
    font-style: italic;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wm-head p {
    color: var(--text-secondary);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.7;
}
.wm-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2/1;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-secondary);
}
.wm-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}
[data-theme="dark"] .wm-bg {
    opacity: 0.7;
    filter: invert(1);
}
.wm-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    margin-top: -7px;
    border-radius: 50%;
    background: var(--accent-terracotta);
    box-shadow: 0 0 0 4px rgba(255,126,95,0.18);
    cursor: pointer;
    z-index: 2;
}
.wm-pin span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent-terracotta);
    animation: wmPulse 2.2s ease-out infinite;
}
@keyframes wmPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3.2); opacity: 0; }
}
.wm-pin::after {
    content: attr(data-label);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
}
.wm-pin:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.wm-pin:hover {
    transform: scale(1.35);
    transition: transform 0.25s;
}
.wm-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    text-align: center;
}
.wm-stats > div {
    border-left: 1px solid var(--border);
    padding: 10px 20px;
}
.wm-stats > div:first-child { border-left: none; }
.wm-stats strong {
    display: block;
    font-family: var(--font-display, 'Instrument Serif'), serif;
    font-style: italic;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1;
    color: var(--accent-terracotta);
    margin-bottom: 10px;
}
.wm-stats span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

@media (max-width: 700px) {
    .wm-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .wm-stats > div:nth-child(3) { border-left: none; }
    .wm-pin { width: 10px; height: 10px; margin-left: -5px; margin-top: -5px; }
}

/* ============================================
   20. POST ENGAGEMENT (LIKES + COMMENTS)
   ============================================ */
.post-engagement {
    padding: 60px 0 80px;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}
.post-engagement .container { max-width: 820px; }
.post-engagement-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}
.like-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
}
.like-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-terracotta);
    fill: none;
    stroke-width: 2;
    transition: fill 0.25s, transform 0.3s;
}
.like-btn:hover {
    border-color: var(--accent-terracotta);
    transform: translateY(-2px);
}
.like-btn.liked svg {
    fill: var(--accent-terracotta);
    animation: pop 0.4s ease;
}
.like-btn.liked {
    color: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
}
.like-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}
.like-label {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.like-btn.liked .like-label { color: var(--accent-terracotta); }
@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.share-row > span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-right: 4px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.25s;
    font: inherit;
}
.share-btn svg { width: 16px; height: 16px; }
.share-btn:hover {
    background: var(--accent-terracotta);
    color: #fff;
    border-color: var(--accent-terracotta);
    transform: translateY(-2px);
}
.copy-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.82rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 9999;
}
.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.comments-head {
    margin-bottom: 24px;
}
.comments-head h3 {
    font-family: var(--font-display, 'Instrument Serif'), serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.comments-head h3 em {
    font-style: italic;
    color: var(--accent-terracotta);
}
.comments-head p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
#cusdis_thread {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 24px;
    min-height: 200px;
}

/* ============================================
   21. LEGAL PAGES
   ============================================ */
.legal-page {
    padding: 140px 0 100px;
    background: var(--bg-primary);
}
.legal-page .container { max-width: 760px; }
.legal-page .kicker {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 18px;
}
.legal-page h1 {
    font-family: var(--font-display, 'Instrument Serif'), serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 12px;
}
.legal-page .meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 50px;
}
.legal-page h2 {
    font-family: var(--font-display, 'Instrument Serif'), serif;
    font-size: 1.7rem;
    font-weight: 400;
    margin: 44px 0 14px;
    color: var(--text-primary);
}
.legal-page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 28px 0 10px;
    color: var(--text-primary);
}
.legal-page p,
.legal-page li {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 14px;
}
.legal-page ul { padding-left: 22px; margin-bottom: 14px; }
.legal-page a {
    color: var(--accent-terracotta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* footer legal row */
.footer-legal {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--text-secondary);
}
.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s;
}
.footer-legal a:hover { color: var(--accent-terracotta); }
.footer-legal span { opacity: 0.4; }

