/*
Theme Name: Time Dominance
Theme URI: https://timedominance.com
Description: v5.27 - Reduced hero spacing, removed diamonds, book page-flip template
Version: 5.30
Author: Dominic Lyon
Author URI: https://timedominance.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: time-dominance
*/

/* ===================================
   CSS RESET & BASE STYLES
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors from Book Cover */
    --navy-dark: #0F1419;
    --navy-medium: #1A2332;
    --navy-light: #2D3E50;
    
    /* Gold Colors */
    --gold-primary: #D4AF37;
    --gold-light: #E8D4A0;
    --gold-dark: #B8941F;
    
    /* Accent Colors */
    --copper: #CD7F32;
    --orange-glow: #FF8C42;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    
    /* Text Colors */
    --text-gold: #D4AF37;
    --text-white: #FFFFFF;
    --text-light: #E2E8F0;
    --text-muted: #94A3B8;
    
    /* Typography */
    --font-primary: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --spacing-3xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows - Gold Glow */
    --shadow-sm: 0 2px 8px rgba(212, 175, 55, 0.15);
    --shadow-md: 0 4px 16px rgba(212, 175, 55, 0.2);
    --shadow-lg: 0 8px 24px rgba(212, 175, 55, 0.25);
    --shadow-xl: 0 16px 40px rgba(212, 175, 55, 0.3);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.5);
}

@font-face {
    font-family: 'Rubik';
    src: url('fonts/Rubik-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: var(--font-secondary);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--navy-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-gold);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 4vw, 2.25rem); letter-spacing: -0.01em; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.0625rem;
    color: var(--text-light);
}

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

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

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

/* ===================================
   PARTICLE EFFECTS
=================================== */

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange-glow);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 8s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(30px);
        opacity: 0;
    }
}

/* ===================================
   LAYOUT COMPONENTS
=================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

/* ===================================
   HEADER & NAVIGATION
=================================== */

.site-header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.15);
    background: rgba(15, 20, 25, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 120px !important;
    width: auto !important;
    transition: all 0.3s ease;
    max-width: 600px !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    mix-blend-mode: lighten;
}

.logo-image:hover {
    opacity: 0.9 !important;
    transform: scale(1.02) !important;
}

.site-logo:hover {
    color: var(--gold-light);
    text-shadow: var(--glow-gold);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

/* Shimmer underline for all nav links */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.nav-menu a:hover::after {
    transform: scaleX(1);
    animation: shimmer-underline 1.5s ease-in-out infinite;
}

/* Keep Join Community button with its own styling */
.nav-cta:hover {
    color: var(--white) !important;
}

@keyframes shimmer-underline {
    0%, 100% {
        background-position: 0% 0;
    }
    50% {
        background-position: 100% 0;
    }
}

.nav-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 50%, #1e3a5f 100%);
    background-size: 200% 100%;
    color: var(--white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect for nav CTA */
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: var(--gold-primary);
    border: none;
    font-size: 1.5rem;
    color: var(--navy-dark);
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .site-logo {
        font-size: 1.25rem;
    }
    
    .logo-image {
        height: 100px;
        max-width: 500px;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-xl);
        padding: var(--spacing-lg);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 999;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

/* ===================================
   BUTTONS
=================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 50%, #1e3a5f 100%);
    background-size: 200% 100%;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect overlay for primary button */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 50%, #1e3a5f 100%);
    background-size: 200% 100%;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect overlay */
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: 700;
}

.btn-outline:hover {
    background-color: var(--gold-primary);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.btn-large {
    padding: 1.25rem 2.75rem;
    font-size: 1.125rem;
}

/* ===================================
   HERO SECTION - DRAMATIC WITH POCKET WATCH
=================================== */

.hero {
    background: #000000;
    padding: var(--spacing-3xl) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Pocket Watch Background - Original Placement */
.hero-watch-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.hero-watch {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(1.2) contrast(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
}

.hero h1 {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 50%, #1e3a5f 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: shimmer-title 3s ease-in-out infinite;
    position: relative;
    -webkit-text-stroke: 0.8px rgba(255, 255, 255, 1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

@keyframes shimmer-title {
    0%, 100% {
        background-position: 0% 0;
    }
    50% {
        background-position: 100% 0;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-white);
    line-height: 1.8;
    max-width: 900px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 4px 16px rgba(0, 0, 0, 0.8),
        1px 1px 0 rgba(0, 0, 0, 0.6),
        2px 2px 0 rgba(0, 0, 0, 0.5);
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    margin: 0;
}

/* ===================================
   SECTION STYLES - WITH GRADIENTS
=================================== */

.section-dark {
    background: linear-gradient(180deg, #0F1824 0%, #1A2332 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.5), transparent);
    pointer-events: none;
}

.section-medium {
    background: linear-gradient(180deg, #1A2332 0%, #233447 100%);
    position: relative;
}

.section-medium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(15, 24, 36, 0.5), transparent);
    pointer-events: none;
}

.section-light {
    background: linear-gradient(180deg, #233447 0%, #2D3E50 100%);
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(26, 35, 50, 0.5), transparent);
    pointer-events: none;
}

/* ===================================
   SECTION HEADERS
=================================== */

.section-header {
    margin-bottom: var(--spacing-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    color: var(--copper);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-sm);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   CARDS - PREMIUM
=================================== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.card {
    background: rgba(45, 62, 80, 0.5);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-gold);
    border-color: var(--gold-primary);
    background: rgba(45, 62, 80, 0.7);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    text-align: center;
}

.card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--gold-light);
}

.card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===================================
   BOOK FEATURE - PREMIUM
=================================== */

.book-feature {
    background: linear-gradient(180deg, #0F1824 0%, #1A2332 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.book-feature::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.book-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.book-cover {
    position: relative;
}

.book-cover img {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow-gold);
    width: 100%;
    max-width: 450px;
    transition: all 0.4s ease;
}

.book-cover img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.6);
}

.book-info h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--gold-primary);
    text-transform: uppercase;
}

.book-subtitle {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.book-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}

.book-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .book-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

/* ===================================
   NEWSLETTER - PREMIUM
=================================== */

.newsletter-section {
    background: linear-gradient(135deg, #1A2332 0%, #0F1824 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-section h2 {
    color: var(--gold-primary);
    margin-bottom: var(--spacing-md);
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: rgba(26, 35, 50, 0.6);
    color: var(--text-white);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(26, 35, 50, 0.8);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    min-width: 150px;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ===================================
   TESTIMONIALS - PREMIUM
=================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.testimonial-card {
    background: rgba(45, 62, 80, 0.5);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--gold-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-gold);
    background: rgba(45, 62, 80, 0.7);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.author-name {
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===================================
   VIDEOS & RESOURCES
=================================== */

.video-grid,
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.video-card,
.resource-card {
    background: rgba(45, 62, 80, 0.5);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.video-card:hover,
.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-gold);
    border-color: var(--gold-primary);
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%;
    background: var(--navy-dark);
}

.video-thumbnail iframe,
.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content,
.resource-content {
    padding: var(--spacing-lg);
}

.video-title,
.resource-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--gold-light);
}

.video-description,
.resource-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.video-meta,
.resource-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    color: var(--navy-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.resource-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.resource-download:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

/* ===================================
   FOOTER
=================================== */

.site-footer {
    background: var(--navy-dark);
    color: var(--text-light);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-section h3 {
    color: var(--gold-primary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.footer-menu li {
    margin-bottom: var(--spacing-sm);
}

.footer-menu a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--gold-primary);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-gold);
    background: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: var(--spacing-lg);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===================================
   UTILITY CLASSES
=================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 992px) {
    :root {
        --spacing-3xl: 5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-3xl: 4rem;
    }
    
    .hero {
        min-height: 70vh;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }
    
    .site-logo {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 90px;
        max-width: 440px;
    }
}

/* ===================================
   THE BOOK PAGE - CUSTOM STYLES
=================================== */

/* Book Hero Section */
.book-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1A2332 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.book-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.book-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-3d-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.3));
    transition: transform 0.5s ease;
}

.book-3d-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.book-hero-text {
    color: var(--text-white);
    text-align: center;
}

.book-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-dark);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.book-cta {
    margin-top: var(--spacing-lg);
    display: inline-block;
}

.book-title {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.book-subtitle {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.book-tagline {
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.book-meta {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    color: var(--text-light);
    justify-content: center;
}

.book-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Benefits Grid */
.book-benefits {
    padding: var(--spacing-3xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.benefit-card {
    background: rgba(45, 62, 80, 0.5);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-gold);
    border-color: var(--gold-primary);
    background: rgba(45, 62, 80, 0.7);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    display: block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.benefit-card h3 {
    color: var(--gold-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    text-align: center;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
}

/* About the Book Section */
.book-about {
    padding: var(--spacing-3xl) 0;
}

.book-about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.book-about-text .lead {
    font-size: 1.3rem;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.book-about-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--text-white);
}

.book-cover-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Audience Section */
.book-audience {
    padding: var(--spacing-3xl) 0;
}

.audience-content {
    max-width: 900px;
    margin: 0 auto;
}

.audience-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.audience-personas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.persona-card {
    background: rgba(45, 62, 80, 0.5);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.persona-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-gold);
    border-color: var(--gold-primary);
    background: rgba(45, 62, 80, 0.7);
}

.persona-card h3 {
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.persona-card p {
    color: var(--text-light);
    text-align: left;
}

/* Excerpts Section */
.book-excerpts {
    padding: var(--spacing-3xl) 0;
}

.excerpts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.excerpt-card {
    background: rgba(15, 20, 25, 0.4);
    border-left: 4px solid var(--gold-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
}

.excerpt-label {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.excerpt-card h3 {
    color: var(--text-white);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.excerpt-text {
    color: var(--text-body);
    line-height: 1.9;
    font-style: italic;
}

.excerpt-text p {
    margin-bottom: var(--spacing-md);
}

/* Testimonials Section */
.book-testimonials {
    padding: var(--spacing-3xl) 0;
}

.testimonials-coming-soon {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
}

.testimonials-carousel-placeholder {
    background: rgba(26, 35, 50, 0.6);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3xl);
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.placeholder-text {
    color: var(--text-light);
    font-size: 1.2rem;
    font-style: italic;
}

/* Community CTA Section */
.book-community-cta {
    padding: var(--spacing-3xl) 0;
}

.community-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.community-cta-content h2 {
    color: var(--navy-dark);
    margin-bottom: var(--spacing-md);
}

.community-title-gold {
    color: var(--gold-primary) !important;
}

.community-cta-content p {
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
}

/* Final CTA Section */
.book-final-cta {
    background: linear-gradient(135deg, #1A2332 0%, #0F1824 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.final-cta-content h2 {
    color: var(--gold-primary);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.final-cta-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
}

.launch-date {
    margin-top: var(--spacing-lg);
    color: var(--gold-light);
    font-size: 1rem;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .book-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .book-title {
        font-size: 3rem;
    }
    
    .book-subtitle {
        font-size: 1.5rem;
    }
    
    .book-about-content {
        grid-template-columns: 1fr;
    }
    
    .book-about-image {
        order: -1;
    }
    
    .excerpts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .book-title {
        font-size: 2.5rem;
    }
    
    .book-subtitle {
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-personas {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   VIDEOS PAGE - CUSTOM STYLES
=================================== */

/* Videos Header */
.videos-header {
    background: linear-gradient(135deg, #0A1628 0%, #1A2332 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: center;
}

.videos-header-content h1 {
    color: var(--gold-primary);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.videos-tagline {
    color: var(--text-light);
    font-size: 1.2rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

.btn-subscribe .youtube-icon,
.videos-subscribe-cta .youtube-icon {
    font-size: 0.9rem;
    margin-right: 0.4rem;
}

/* Featured Video Section */
.featured-video-section {
    background: #0F1419;
    padding: var(--spacing-3xl) 0;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-dark);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xl);
}

.featured-video-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-top: var(--spacing-lg);
}

/* Placeholder for featured video (replace with iframe later) */
.featured-video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1A2332, #0F1824);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212,175,55,0.08), transparent 70%);
}

.placeholder-inner {
    text-align: center;
    padding: var(--spacing-xl);
}

.placeholder-play {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.placeholder-inner h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.placeholder-inner p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

/* Featured video info */
.featured-video-info {
    color: var(--text-white);
}

.video-label-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.featured-video-title {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.video-meta-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    color: var(--gold-light);
    font-size: 0.95rem;
}

.video-dot {
    color: rgba(212,175,55,0.4);
}

.featured-video-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

/* Video List / Accordion */
.video-list-section {
    background: linear-gradient(135deg, #0A1628 0%, #1A2332 100%);
    padding: var(--spacing-3xl) 0;
}

.video-accordion {
    margin-top: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.video-row {
    background: rgba(45, 62, 80, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.video-row:hover,
.video-row-open {
    border-color: var(--gold-primary);
}

.video-row-main {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    cursor: pointer;
}

/* Thumbnail */
.video-thumbnail-wrap {
    width: 200px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A2332, #0F1824);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-row:hover .video-thumb-placeholder {
    background: linear-gradient(135deg, #1e3a5f, #2d5a8c);
}

.thumb-play {
    font-size: 2rem;
    color: var(--gold-primary);
    opacity: 0.8;
}

/* Video row info */
.video-row-info {
    flex: 1;
}

.video-episode-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.video-row-title {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.video-row:hover .video-row-title {
    color: var(--gold-light);
}

.video-row-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gold-light);
    font-size: 0.875rem;
}

/* Toggle button */
.video-toggle-btn {
    background: none;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.video-toggle-btn:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--gold-primary);
}

.toggle-icon {
    color: var(--gold-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

/* Accordion description */
.video-row-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    padding: 0 var(--spacing-lg);
}

.video-row-open .video-row-description {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.video-row-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212,175,55,0.1);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Subscribe CTA */
.videos-subscribe-cta {
    background: linear-gradient(135deg, #1A2332 0%, #0F1824 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.subscribe-cta-content h2 {
    color: var(--gold-primary);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    width: 100%;
}

.subscribe-cta-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 968px) {
    .featured-video-wrapper {
        grid-template-columns: 1fr;
    }

    .featured-video-title {
        font-size: 1.6rem;
    }

    .video-row-main {
        grid-template-columns: 140px 1fr auto;
    }
}

@media (max-width: 576px) {
    .videos-header-content h1 {
        font-size: 2.5rem;
    }

    .video-row-main {
        grid-template-columns: 100px 1fr auto;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }

    .video-row-title {
        font-size: 1rem;
    }
}

/* ===================================
   TOOLS & RESOURCES PAGE
=================================== */

/* Header */
.resources-header {
    background: linear-gradient(135deg, #0A1628 0%, #1A2332 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: center;
}

.resources-header-content h1 {
    color: var(--gold-primary);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.resources-tagline {
    color: var(--gold-light);
    font-size: 1.2rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.8;
}

.resources-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Section wrapper */
.resources-section {
    padding: var(--spacing-3xl) 0;
}

/* Seamless dark gradient sections */
.section-mid {
    background: linear-gradient(180deg, #1A2332 0%, #151e2b 100%);
}

.section-mid h2,
.section-mid .section-label {
    color: var(--gold-primary);
}

.section-mid .section-intro {
    color: var(--text-light);
}

.section-mid2 {
    background: linear-gradient(180deg, #151e2b 0%, #1A2332 100%);
}

.section-mid2 h2,
.section-mid2 .section-label {
    color: var(--gold-primary);
}

.section-mid2 .section-intro {
    color: var(--text-light);
}

/* ===== FEATURED EXPOSÉS ===== */

.expose-featured-card {
    background: rgba(45, 62, 80, 0.6);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.expose-featured-badge {
    position: absolute;
    top: -16px;
    left: var(--spacing-xl);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-dark);
    padding: 0.4rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.expose-featured-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.expose-location {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.expose-featured-text h3 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.expose-authors {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.expose-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.expose-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    align-items: center;
}

.expose-tag {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.expose-length {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

.btn-resource-download {
    font-size: 1rem;
}

/* Quote block */
.expose-quote-block {
    background: rgba(15, 20, 25, 0.6);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.expose-quote-block blockquote {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.expose-quote-block cite {
    color: var(--gold-primary);
    font-weight: 700;
    font-style: normal;
    font-size: 0.9rem;
}

/* Stats row */
.expose-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.expose-stat {
    text-align: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
}

.expose-coming-soon {
    text-align: center;
    margin-top: var(--spacing-xl);
    color: var(--text-light);
    font-style: italic;
}

.expose-coming-soon a {
    color: var(--gold-primary);
    text-decoration: underline;
}

/* ===== DOWNLOADABLE RESOURCES ===== */

.resource-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.resource-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: var(--spacing-xl);
    background: rgba(45, 62, 80, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.resource-row:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    background: rgba(45, 62, 80, 0.7);
}

.resource-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon {
    font-size: 2.5rem;
}

.resource-category-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.resource-info h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.resource-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
}

.resource-tag {
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.resource-free-badge {
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ===== SUPPORT / DONATE ===== */

.resources-support {
    text-align: center;
}

.support-content h2 {
    color: var(--gold-primary);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.support-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

.btn-donate {
    background: linear-gradient(135deg, #FFDD57, #FFC300);
    color: #1a1a1a !important;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 195, 0, 0.4);
}

.donate-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: var(--spacing-lg) !important;
    font-style: italic;
}

/* ===== SUGGEST A RESOURCE FORM ===== */

.suggest-content {
    max-width: 750px;
    margin: 0 auto;
}

.suggest-form {
    margin-top: var(--spacing-2xl);
    background: rgba(45, 62, 80, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-white);
    background: rgba(15, 20, 25, 0.6);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group select option {
    background: #1A2332;
    color: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(15, 20, 25, 0.8);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}
.captcha-group {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
}

.captcha-label {
    font-size: 1rem !important;
    color: var(--text-white) !important;
}

.captcha-numbers {
    color: var(--gold-primary);
    font-weight: 800;
    font-size: 1.1rem;
}

.captcha-group input {
    max-width: 250px;
    margin-top: var(--spacing-sm);
}

.btn-submit-suggestion {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.form-success-msg {
    margin-top: var(--spacing-lg);
    background: #f0fdf4;
    border: 1px solid #22c55e;
    color: #166534;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.form-error-msg {
    margin-top: var(--spacing-lg);
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

/* ===== JOIN CTA ===== */

.resources-join-cta {
    background: linear-gradient(135deg, #1A2332 0%, #0F1824 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.join-cta-content h2 {
    color: var(--gold-primary);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.join-cta-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 968px) {
    .expose-featured-content {
        grid-template-columns: 1fr;
    }

    .resource-row {
        grid-template-columns: 60px 1fr;
    }

    .resource-action {
        grid-column: 1 / -1;
    }

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

@media (max-width: 576px) {
    .resources-header-content h1 {
        font-size: 2.5rem;
    }

    .expose-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .resource-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .resource-icon-wrap {
        display: none;
    }
}

/* ===================================
   REAL JOURNEYS - HOME PAGE TEASER
=================================== */

.real-journeys-teaser {
    background: linear-gradient(135deg, #0A1628 0%, #1A2332 100%);
    padding: var(--spacing-3xl) 0;
}

.journey-teaser-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    background: rgba(45, 62, 80, 0.5);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}

.journey-location {
    display: block;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.journey-teaser-text h3 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.journey-names {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.journey-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.journey-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.journey-tag {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.journey-quote-block {
    background: rgba(15, 20, 25, 0.6);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.journey-quote-block blockquote {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.journey-quote-block cite {
    color: var(--gold-primary);
    font-weight: 700;
    font-style: normal;
    font-size: 0.9rem;
}

.journey-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.journey-stat {
    text-align: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.jstat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.jstat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.3;
}

.journey-teaser-footer {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ===================================
   REAL JOURNEYS INDEX PAGE
=================================== */

.journeys-header {
    background: linear-gradient(135deg, #0A1628 0%, #1A2332 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: center;
}

.journeys-header-content h1 {
    color: var(--gold-primary);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.journeys-tagline {
    color: var(--gold-light);
    font-size: 1.15rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.8;
}

.journeys-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Featured Journey (hero style) */
.journey-featured-section {
    background: linear-gradient(180deg, #0A1628 0%, #151e2b 100%);
    padding: var(--spacing-3xl) 0;
}

.featured-journey-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-dark);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xl);
}

.featured-journey-card {
    background: rgba(45, 62, 80, 0.5);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
    margin-top: var(--spacing-lg);
}

.featured-journey-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.featured-journey-text h2 {
    color: var(--text-white);
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.featured-journey-names {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

.featured-journey-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.featured-journey-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    align-items: center;
}

.journey-read-time {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* Aside: quote + stats */
.featured-journey-quote {
    background: rgba(15, 20, 25, 0.6);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.featured-journey-quote blockquote {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.featured-journey-quote cite {
    color: var(--gold-primary);
    font-weight: 700;
    font-style: normal;
}

.featured-journey-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.fj-stat {
    text-align: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.fj-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.fj-stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* More Journeys placeholders */
.more-journeys-section {
    background: linear-gradient(180deg, #151e2b 0%, #1A2332 100%);
    padding: var(--spacing-3xl) 0;
}

.journeys-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-placeholder-card {
    background: rgba(45, 62, 80, 0.3);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: all 0.3s ease;
}

.journey-placeholder-card:hover {
    border-color: var(--gold-primary);
    background: rgba(45, 62, 80, 0.5);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--spacing-md);
}

.placeholder-content p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

/* Share story CTA */
.share-story-cta {
    background: linear-gradient(180deg, #1A2332 0%, #151e2b 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.share-cta-content h2 {
    color: var(--gold-primary);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.share-cta-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

.share-story-details {
    max-width: 650px;
    margin: 0 auto var(--spacing-2xl);
    text-align: left;
}

.share-story-details h3 {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.share-story-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg);
}

.share-story-list li {
    color: var(--text-light);
    padding: 0.5rem 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(212,175,55,0.08);
    font-size: 0.95rem;
}

.share-story-list li:last-child {
    border-bottom: none;
}

.share-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: var(--spacing-md) !important;
}

.share-note strong {
    color: var(--gold-primary);
}

.journeys-join-cta {
    background: linear-gradient(135deg, #1A2332 0%, #0F1824 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.journeys-join-cta .join-cta-content h2 {
    color: var(--gold-primary);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.journeys-join-cta .join-cta-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

/* ===================================
   INDIVIDUAL STORY PAGE
=================================== */

.story-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1A2332 100%);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.story-back-link {
    display: inline-block;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-lg);
    transition: color 0.3s ease;
}

.story-back-link:hover {
    color: var(--gold-primary);
}

.story-hero-content h1 {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.story-hero-names {
    color: var(--gold-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.story-hero-location {
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.story-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
}

.story-read-time {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Opening pull quote */
.story-opening-quote {
    background: #0F1419;
    padding: var(--spacing-2xl) 0;
}

.story-opening-quote .story-pull-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.4rem;
    color: var(--gold-light);
    font-style: italic;
    line-height: 1.7;
    border: none;
    padding: 0;
}

/* Story body */
.story-body {
    background: #0F1419;
    padding: var(--spacing-lg) 0 var(--spacing-3xl);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    color: var(--gold-primary);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.story-content h2:first-child {
    margin-top: 0;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
    font-size: 1.05rem;
}

.story-content strong {
    color: var(--text-white);
}

.story-divider {
    text-align: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin: var(--spacing-2xl) 0;
    opacity: 0.6;
}

/* Inline pull quote */
.story-pull-quote-inline {
    background: rgba(45, 62, 80, 0.5);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.story-pull-quote-inline blockquote {
    color: var(--gold-light);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.story-pull-quote-inline cite {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: normal;
}

/* Closing quote */
.story-closing-quote {
    max-width: 800px;
    margin: var(--spacing-3xl) auto 0;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
}

.story-closing-quote blockquote {
    color: var(--text-white);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.story-closing-quote cite {
    color: var(--gold-primary);
    font-weight: 700;
    font-style: normal;
}

/* Story nav */
.story-navigation {
    background: #0A1628;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

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

/* Story join CTA */
.story-join-cta {
    background: linear-gradient(135deg, #1A2332 0%, #0F1824 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.story-join-cta .join-cta-content h2 {
    color: var(--gold-primary);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
}

.story-join-cta .join-cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

/* ===================================
   RESPONSIVE - REAL JOURNEYS
=================================== */

@media (max-width: 968px) {
    .journey-teaser-card,
    .featured-journey-content {
        grid-template-columns: 1fr;
    }

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

    .story-hero-content h1 {
        font-size: 2.2rem;
    }

    .story-nav-links {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .journeys-header-content h1 {
        font-size: 2.5rem;
    }

    .journey-stats-row,
    .featured-journey-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   CONTACT PAGE
=================================== */

.contact-header {
    background: linear-gradient(135deg, #0A1628 0%, #1A2332 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: center;
}

.contact-header-content h1 {
    color: var(--gold-primary);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.contact-tagline {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-section {
    background: linear-gradient(180deg, #1A2332 0%, #151e2b 100%);
    padding: var(--spacing-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.contact-info h2,
.contact-form-wrap h2 {
    color: var(--gold-primary);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-lg);
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-2xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    background: rgba(45, 62, 80, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--gold-primary);
    background: rgba(45, 62, 80, 0.7);
}

.contact-method-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-method h3 {
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.contact-method a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.contact-quote {
    background: rgba(15, 20, 25, 0.6);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
}

.contact-quote blockquote {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.contact-quote cite {
    color: var(--gold-primary);
    font-weight: 700;
    font-style: normal;
    font-size: 0.9rem;
}

/* Contact form uses existing suggest-form styles */
.contact-form-wrap .suggest-form,
.contact-form {
    background: rgba(45, 62, 80, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    backdrop-filter: blur(10px);
}

.contact-join-cta {
    background: linear-gradient(180deg, #151e2b 0%, #0F1824 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.contact-join-cta .join-cta-content h2 {
    color: var(--gold-primary);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
}

.contact-join-cta .join-cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

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

    .contact-header-content h1 {
        font-size: 2.5rem;
    }
}

/* Journey CTA button pair */
.journey-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: center;
    margin-top: var(--spacing-lg);
}
@media (max-width: 576px) {
    .journey-cta-buttons { flex-direction: column; }
    .journey-cta-buttons .btn { width: 100%; text-align: center; }
}
