/* ============================================
   SMITH SAYS - Premium Black & Gold Theme
   Design System v1.0
   ============================================ */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Colors - Primary */
    --color-black: #000000;
    --color-black-soft: #0D0D0D;
    --color-charcoal: #1A1A1A;
    --color-charcoal-light: #252525;
    --color-gray-dark: #333333;
    --color-gray: #666666;
    --color-gray-light: #999999;
    
    /* Colors - Gold Accent */
    --color-gold: #D4AF37;
    --color-gold-light: #E8C547;
    --color-gold-pale: #F5E6A3;
    --color-gold-dark: #B8860B;
    
    /* Colors - Text */
    --color-white: #FFFFFF;
    --color-white-off: #F5F5F5;
    --color-silver: #B8B8B8;
    
    /* Colors - Semantic */
    --color-success: #4CAF50;
    --color-warning: #FFC107;
    --color-error: #F44336;
    --color-info: #2196F3;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Times New Roman', serif;
    
    /* Font Sizes - Increased Scale */
    --text-xs: 0.875rem;   /* Was 0.75rem */
    --text-sm: 1rem;       /* Was 0.875rem */
    --text-base: 1.125rem; /* Was 1rem */
    --text-lg: 1.25rem;    /* Was 1.125rem */
    --text-xl: 1.5rem;     /* Was 1.25rem */
    --text-2xl: 2rem;      /* Was 1.5rem */
    --text-3xl: 2.5rem;    /* Was 2rem */
    --text-4xl: 3rem;      /* Was 2.5rem */
    --text-5xl: 4rem;      /* Was 3rem */
    --text-6xl: 5rem;      /* Was 4rem */
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 8px 32px rgba(212, 175, 55, 0.4);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Z-Index Scale */
    --z-base: 0;
    --z-elevated: 10;
    --z-sticky: 100;
    --z-modal-backdrop: 500;
    --z-modal: 600;
    --z-toast: 700;
    --z-tooltip: 800;
    --z-max: 999;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-white);
    background-color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus Styles for Accessibility */
:focus {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

/* Enhanced focus for keyboard navigation */
.keyboard-nav *:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.2);
}

/* Focus styles for interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

/* Skip link focus */
.skip-link:focus {
    top: var(--space-md);
    outline: 3px solid var(--color-black);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    padding: var(--space-sm) var(--space-lg);
    font-weight: 600;
    text-decoration: none;
    z-index: var(--z-max);
    border-radius: var(--radius-md);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

/* Visually Hidden (Screen Reader Only) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-gold);
}

h1 { font-size: var(--text-5xl); font-weight: 700; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

@media (max-width: 768px) {
    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    h3 { font-size: var(--text-2xl); }
}

p {
    margin-bottom: var(--space-md);
}

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

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

strong {
    font-weight: 600;
    color: var(--color-gold);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

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

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-glow {
    box-shadow: var(--shadow-gold);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-dark);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-md) var(--container-padding);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

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

.nav-link.active {
    color: var(--color-gold);
}

.nav-cta {
    padding: var(--space-sm) var(--space-lg) !important;
    font-size: var(--text-sm) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--space-2xl);
        background: var(--color-black);
        gap: var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: var(--text-lg);
    }
    
    .nav-cta {
        width: 100%;
    text-align: center;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: cover, 50px 50px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% center, transparent 0%, var(--color-black) 70%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-2xl);
    width: 100%;
    max-width: 100%;
    padding: 0px;
    margin: 0;
    min-height: calc(100vh - 80px);
}

.hero-image {
    position: absolute; /* Changed from fixed - stays in hero section only */
    left: -20px;
    bottom: 0;
    width: 45%;
    max-width: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: visible;
    z-index: 2;
    padding: 0;
    margin: 0;
    height: 100%;
    pointer-events: none; /* Let clicks pass through if needed, though usually on image it's fine */
}

.hero {
    padding-left: 0 !important;
    margin-left: 0 !important;
    overflow: hidden !important; /* Ensure content doesn't spill out */
}

.hero-portrait {
    width: 140% !important;
    max-width: none !important;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    object-position: bottom left;
    /* Move to left edge */
    margin-left: 0;
    margin-bottom: -10px; /* Slight negative margin to ensure overlap/flush fit */
    /* 3D Pop Effect with layered shadows */
    filter: 
        drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4))
        drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3))
        drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2))
        drop-shadow(0 0 80px rgba(212, 175, 55, 0.1));
    animation: fadeInLeft 1.4s ease-out;
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s ease, filter 0.5s ease;
    pointer-events: auto;
}

.hero-portrait:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    filter: 
        drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5))
        drop-shadow(0 20px 45px rgba(0, 0, 0, 0.35))
        drop-shadow(0 40px 80px rgba(0, 0, 0, 0.25))
        drop-shadow(0 0 100px rgba(212, 175, 55, 0.2));
}


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(-2deg) translateX(-40px);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(-2deg);
    }
}

.hero-content {
    flex: 1;
    text-align: left;
    padding: var(--space-2xl) 0;
    animation: fadeInRight 1s ease-out 0.3s both;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Left align content */
    margin-left: 45%; /* Moved closer to image (was 58%) */
    padding: var(--space-2xl) var(--container-padding) 0;
    max-width: 600px; /* Slightly wider for better text flow */
}

.hero-content .hero-badge {
    align-self: flex-start; /* Align badge to start */
    margin-left: 0;
    margin-right: 0;
}

/* Hero Font Overrides to maintain layout */
.hero-badge span {
    font-size: 0.875rem !important; /* Keep original small size */
}

.hero-subtitle {
    font-size: 1.125rem !important; /* Keep original size */
}

.hero .btn {
    font-size: 1rem !important; /* Reduced button size in hero */
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
        padding-top: var(--space-xl);
    }
    
    .hero-image {
        position: relative;
        left: auto;
        bottom: auto;
        height: auto;
        flex: 0 0 auto;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-bottom: var(--space-xl);
    }
    
    .hero-portrait {
        width: 100% !important;
        max-width: 320px !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        object-position: center;
    }
    
    .hero-content {
        text-align: center;
        padding: var(--space-xl) var(--container-padding);
        margin-left: 0;
        align-items: center;
        max-width: 100%;
    }
    
    .hero-ctas {
        justify-content: center;
    }

    .hero-content .hero-badge {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Remove the "Live Every Sunday" badge on mobile */
    .hero-badge {
        display: none !important;
    }

    /* MOBILE-ONLY: Use hero image as background with a light overshade,
       hide the inline portrait to avoid duplication, and center CTAs */
    .hero-background {
        background-image: 
            linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
            url('images/smith-portrait-nobg.png');
        background-size: cover, cover;
        background-position: center center, center center;
        background-repeat: no-repeat, no-repeat;
    }

    /* keep an extra overlay but use a softer darkening so the background image still reads */
    .hero-overlay {
        background: rgba(0, 0, 0, 0.25);
    }

    /* Hide the inline image element so the background is the single source of truth on mobile */
    .hero-image {
        display: none;
    }

    /* Ensure CTAs are centered and have comfortable touch targets on mobile */
    .hero-ctas {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-ctas .btn {
        min-width: 180px;
        padding: 0.875rem 1.75rem;
    }
    
    /* MOBILE FONT TUNING: reduce and harmonize hero typography to better match portrait */
    .hero-title-main {
        /* Slightly smaller max size and tighter clamp for narrow viewports */
        font-size: clamp(5.37rem, 10.5vw, 7.17rem);
        letter-spacing: 0.06em; /* reduce tracking for better fit */
        line-height: 1.05;
    }

    .hero-tagline {
        font-size: clamp(1rem, 3.6vw, 1.4rem);
        margin-top: 0.25rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Reduce button size on mobile so buttons match typography proportionally */
    .hero-ctas .btn {
        min-width: unset;
        padding: var(--space-md) var(--space-lg); /* smaller horizontal padding */
        font-size: var(--text-base); /* reduce font-size to match body */
        border-radius: var(--radius-md);
    }

    /* Tighter sizing for the large hero variant on mobile */
    .btn-large {
        padding: calc(var(--space-sm) + 6px) var(--space-xl);
        font-size: var(--text-base);
    }

    /* Ensure secondary button doesn't visually overpower primary */
    .btn-secondary {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-base);
    }
}

/* Very small phones: make CTAs full-width for easier tapping and better visual balance */
@media (max-width: 420px) {
    .hero-ctas {
        gap: var(--space-md);
        padding: 0 var(--container-padding);
    }

    .hero-ctas .btn {
        width: 100% !important;
        display: block;
        padding: var(--space-md) var(--space-md) !important;
        font-size: var(--text-base);
        box-sizing: border-box;
    }

    .hero-ctas .btn + .btn {
        margin-top: var(--space-md);
    }

    /* Ensure secondary outline button spans full width but keeps inner padding */
    .btn-secondary {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-portrait {
        max-width: 260px;
    }
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge span {
    font-size: var(--text-sm);
    color: var(--color-gold);
    font-weight: 500;
}

.hero-title {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title-main {
    display: block;
    font-size: clamp(6.17rem, 10vw, 8.67rem);
    font-weight: 700;
    letter-spacing: 0.1em; /* Reduced from 0.2em for smoother look */
    line-height: 1.1;
    color: var(--color-gold);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.25); /* Softer glow */
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-style: italic;
    color: var(--color-gold-light);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    letter-spacing: 0.02em; /* Slight letter spacing */
}

.hero-subtitle {
    font-size: var(--text-lg); /* Slightly smaller for elegance */
    line-height: 1.6;
    color: var(--color-white-off);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    max-width: 480px; /* Limit width for readability */
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: flex-start; /* Align start */
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeIn 1s ease-out 1.2s both;
    z-index: 2;
}

.hero-scroll span {
    font-size: var(--text-sm);
    color: var(--color-silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: var(--radius-full);
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */

.social-proof {
    padding: var(--space-3xl) 0;
    background: var(--color-black-soft);
    border-top: 1px solid var(--color-gray-dark);
    border-bottom: 1px solid var(--color-gray-dark);
}

.proof-stat {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.proof-stat blockquote {
    max-width: 700px;
    margin: 0 auto;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.stat-text {
    font-size: var(--text-xl);
    color: var(--color-white-off);
    margin-bottom: var(--space-sm);
}

.proof-stat cite {
    font-size: var(--text-base);
    color: var(--color-silver);
    font-style: normal;
}

.proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.logo-placeholder {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-gold);
    font-weight: 600;
}

.logo-year {
    font-size: var(--text-sm);
    color: var(--color-silver);
}

/* ============================================
   SECTION STYLES
   ============================================ */

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

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

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--color-silver);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   WHO I SERVE SECTION
   ============================================ */

.who-i-serve {
    padding: var(--space-4xl) 0;
    background: var(--color-black);
}

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

.audience-card {
    background: var(--color-black-soft);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

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

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.audience-card:hover .card-icon {
    background: var(--color-gold);
    color: var(--color-black);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.card-description {
    font-size: var(--text-base);
    color: var(--color-silver);
    margin-bottom: 0;
}

.serve-statement {
    text-align: center;
    font-size: var(--text-xl);
    color: var(--color-white-off);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.page-hero {
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-soft) 100%);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.page-subtitle {
    font-size: var(--text-lg);
    color: var(--color-silver);
    max-width: 800px;
    margin: 0 auto var(--space-md);
    line-height: 1.8;
}

.services-section {
    padding: var(--space-4xl) 0;
    background: var(--color-black);
}

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

.service-card {
    position: relative;
    background: var(--color-charcoal);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-lg);
}

.service-card-featured {
    border-color: var(--color-gold);
    border-width: 2px;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: var(--space-xl);
    background: var(--color-gold);
    color: var(--color-black);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
}

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


.service-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.service-subtitle {
    font-size: var(--text-base);
    color: var(--color-silver);
    line-height: 1.6;
}

.service-content {
    flex: 1;
    margin-bottom: var(--space-xl);
}

.service-includes-title {
    font-size: var(--text-lg);
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
}

.service-features li {
    font-size: var(--text-base);
    color: var(--color-white-off);
    padding: var(--space-sm) 0 var(--space-sm) var(--space-xl);
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.service-best-for {
    font-size: var(--text-base);
    color: var(--color-silver);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-black-soft);
    border-radius: var(--radius-md);
    line-height: 1.6;
}

.service-pricing {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-black-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-dark);
}

.pricing-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-silver);
    margin-bottom: var(--space-xs);
}

.pricing-amount {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-gold);
    font-weight: 600;
}

.service-cta {
    text-align: center;
}

.services-note {
    padding: var(--space-3xl) 0;
    background: var(--color-charcoal);
}

.note-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-black-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-dark);
}

.note-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.note-text {
    font-size: var(--text-lg);
    color: var(--color-white-off);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.note-values {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.note-values li {
    font-size: var(--text-lg);
    color: var(--color-white-off);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: var(--text-3xl);
    }
    
    .page-subtitle {
        font-size: var(--text-base);
    }
    
    .service-card {
        padding: var(--space-lg);
    }
}

/* ============================================
   SPONSORS PAGE STYLES
   ============================================ */

.sponsors-section {
    padding: var(--space-4xl) 0;
    background: var(--color-black);
}

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

.sponsor-card {
    position: relative;
    background: var(--color-charcoal);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.sponsor-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-lg);
}

.sponsor-card-featured {
    border-color: var(--color-gold);
    border-width: 2px;
}

.sponsor-badge {
    position: absolute;
    top: -12px;
    right: var(--space-xl);
    background: var(--color-gold);
    color: var(--color-black);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
}

.sponsor-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-gray-dark);
}


.sponsor-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.sponsor-price {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.sponsor-subtitle {
    font-size: var(--text-base);
    color: var(--color-silver);
    font-style: italic;
}

.sponsor-content {
    flex: 1;
    margin-bottom: var(--space-xl);
}

.sponsor-best-for {
    font-size: var(--text-sm);
    color: var(--color-silver);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-black-soft);
    border-radius: var(--radius-md);
    line-height: 1.6;
}

.sponsor-includes-title {
    font-size: var(--text-lg);
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.sponsor-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.sponsor-features li {
    font-size: var(--text-base);
    color: var(--color-white-off);
    padding: var(--space-sm) 0 var(--space-sm) var(--space-xl);
    position: relative;
    line-height: 1.6;
}

.sponsor-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: var(--text-xl);
}

.sponsor-bonus {
    font-size: var(--text-base);
    color: var(--color-white-off);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--color-gold);
    border-radius: var(--radius-md);
    line-height: 1.6;
}

.sponsor-impact {
    font-size: var(--text-sm);
    color: var(--color-silver);
    padding: var(--space-md);
    background: var(--color-black-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-dark);
    line-height: 1.6;
    font-style: italic;
}

.sponsor-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsor-card {
        padding: var(--space-lg);
    }
}

/* ============================================
   FRAMEWORK SECTION
   ============================================ */

/* ============================================
   SMITH SAYS CIRCLE SECTION
   ============================================ */

.circle-section {
    padding: var(--space-4xl) 0;
    background: var(--color-charcoal);
}

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

.circle-intro {
    margin-bottom: var(--space-3xl);
}

.circle-mission {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-white-off);
    margin-bottom: var(--space-lg);
}

.circle-principles {
    margin-bottom: var(--space-3xl);
}

.circle-subheading {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.circle-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: var(--space-md);
    max-width: 600px;
    margin: 0 auto;
}

.circle-list li {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-white-off);
    padding-left: var(--space-xl);
    position: relative;
}

.circle-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.circle-core {
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--color-black-soft);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius-md);
}

.circle-quote {
    margin: 0 0 var(--space-2xl) 0;
    padding: 0;
    border: none;
}

.quote-text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-white-off);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.circle-belief {
    text-align: center;
}

.circle-truth {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-gold);
    margin: var(--space-lg) 0;
    font-weight: 600;
}

.circle-truth-detail {
    font-size: var(--text-base);
    color: var(--color-gray-light);
    margin: var(--space-sm) 0;
}

.circle-values {
    margin-bottom: var(--space-3xl);
}

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

.value-item {
    background: var(--color-black-soft);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-dark);
    text-align: center;
    transition: all var(--transition-base);
}

.value-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.value-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-white);
    margin: 0;
    font-weight: 500;
}

.circle-cta {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-black-soft);
    border-radius: var(--radius-md);
}

.circle-closing {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-white-off);
    margin-bottom: var(--space-md);
}

.circle-closing strong {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .circle-mission,
    .quote-text,
    .circle-closing {
        font-size: var(--text-base);
    }
    
    .circle-truth {
        font-size: var(--text-2xl);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .circle-core {
        padding: var(--space-lg);
    }
}

.framework {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-black-soft) 0%, var(--color-black) 100%);
}

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

.step-card {
    position: relative;
    background: var(--color-charcoal);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.step-card:hover {
    border-color: var(--color-gold);
    transform: scale(1.02);
}

.step-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.step-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.step-description {
    font-size: var(--text-base);
    color: var(--color-silver);
    margin-bottom: 0;
}

.step-connector {
    display: none;
}

@media (min-width: 992px) {
    .step-connector {
    display: block;
        position: absolute;
        top: 50%;
        right: -30px;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--color-gold), transparent);
        z-index: 1;
    }
    
    .step-card:last-child .step-connector {
        display: none;
    }
}

.framework-cta {
    text-align: center;
}

/* ============================================
   GALLERY PREVIEW SECTION
   ============================================ */

.gallery-preview {
    padding: var(--space-4xl) 0;
    background: var(--color-black);
}

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

.video-card {
    background: var(--color-black-soft);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.video-card-featured {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .video-card-featured {
        grid-column: span 1;
    }
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--color-charcoal);
    overflow: hidden;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: var(--text-lg);
    color: var(--color-gray);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-gold-lg);
}

.video-duration {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-sm);
    border-radius: var(--radius-sm);
}

.video-info {
    padding: var(--space-lg);
}

.video-title {
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.video-category {
    font-size: var(--text-sm);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.gallery-cta {
    text-align: center;
}

/* ============================================
   PODCAST SECTION
   ============================================ */

.podcast-section {
    padding: var(--space-4xl) 0;
    background: var(--color-black-soft);
}

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

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

.podcast-info .section-label {
    text-align: left;
}

.podcast-info .section-title {
    text-align: left;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}


.podcast-description {
    font-size: var(--text-lg);
    color: var(--color-silver);
    margin-bottom: var(--space-xl);
}

.podcast-subscribe {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.subscribe-label {
    font-size: var(--text-sm);
    color: var(--color-silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.subscribe-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-charcoal);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-base);
}

.subscribe-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.subscribe-btn.rss:hover {
    border-color: #FF6600;
    color: #FF6600;
}

.podcast-player {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.player-card {
    background: var(--color-charcoal);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.player-artwork {
    margin-bottom: var(--space-lg);
}

.artwork-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-width: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}


.player-details {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.player-label {
    font-size: var(--text-sm);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.player-title {
    font-size: var(--text-xl);
    color: var(--color-white);
    margin: var(--space-sm) 0;
}

.player-meta {
    font-size: var(--text-sm);
    color: var(--color-silver);
    margin-bottom: 0;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.player-play {
    width: 56px;
    height: 56px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.player-play:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.player-progress {
    flex: 1;
}

.progress-bar {
    height: 4px;
    background: var(--color-gray-dark);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--color-gold);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
    color: var(--color-silver);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
}

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

@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
    text-align: center;
    }
}

.newsletter-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.newsletter-description {
    font-size: var(--text-lg);
    color: var(--color-silver);
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    gap: var(--space-md);
}

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

.form-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-black);
    border: 2px solid var(--color-gray-dark);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: border-color var(--transition-base);
}

.form-input::placeholder {
    color: var(--color-gray);
}

.form-input:focus {
    border-color: var(--color-gold);
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: var(--color-error);
}

.form-input:invalid:not(:placeholder-shown):focus {
    outline-color: var(--color-error);
}

.form-error {
    color: var(--color-error);
    font-size: var(--text-sm);
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(244, 67, 54, 0.1);
    border-left: 3px solid var(--color-error);
    border-radius: var(--radius-sm);
}

.form-error:not(.visually-hidden) {
    display: block;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-silver);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .form-privacy {
        justify-content: center;
    }
}

/* ============================================
   BOOKING CTA SECTION
   ============================================ */

.booking-cta {
    padding: var(--space-4xl) 0;
    background: var(--color-black);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
}

.cta-description {
    font-size: var(--text-xl);
    color: var(--color-silver);
    margin-bottom: var(--space-2xl);
}

.cta-trust {
    font-size: var(--text-base);
    color: var(--color-silver);
    margin-top: var(--space-lg);
    margin-bottom: 0;
}

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

.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--color-black-soft);
    border-top: 1px solid var(--color-gray-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-gold-light);
    margin-bottom: var(--space-lg);
}

.footer-location {
    font-size: var(--text-base);
    color: var(--color-silver);
    margin-bottom: var(--space-sm);
}

.footer-email {
    font-size: var(--text-base);
    color: var(--color-gold);
}

.footer-nav-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

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

.footer-nav-list li {
    margin-bottom: var(--space-sm);
}

.footer-nav-list a {
    font-size: var(--text-base);
    color: var(--color-silver);
    transition: color var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .social-links {
    justify-content: center;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-charcoal);
    border: 1px solid var(--color-gray-dark);
    border-radius: 50%;
    color: var(--color-silver);
    transition: all var(--transition-base);
}

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

.peerspace-badge {
    background: var(--color-charcoal);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.badge-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.badge-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-gray-dark);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
    }
}

.copyright {
    font-size: var(--text-sm);
    color: var(--color-gray);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--color-gray);
}

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

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

.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.text-silver { color: var(--color-silver); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
