/* ===== SAWDUST WC - MC BIKER AESTHETIC ===== */
/* Sons of Anarchy meets Woodworking Brotherhood */

/* ===== CSS Custom Properties ===== */
:root {
    /* Core Dark Palette - Leather & Steel */
    --black: #0a0a0a;
    --black-deep: #050505;
    --charcoal: #1a1a1a;
    --charcoal-light: #252525;
    --steel: #2d2d2d;
    --steel-light: #3a3a3a;

    /* Accent Colors - Brass, Leather, Rust */
    --brass: #C9A227;
    --brass-light: #D4AF37;
    --brass-dark: #A68B1B;
    --leather: #8B4513;
    --leather-light: #A0522D;
    --rust: #8B3A3A;
    --rust-light: #A04545;

    /* Cream & Bone - For text and highlights */
    --cream: #F5E6D3;
    --bone: #E8DCC8;
    --ivory: #FFFEF5;

    /* Text Hierarchy */
    --text-primary: #E5E5E5;
    --text-secondary: #999999;
    --text-muted: #666666;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Crimson Pro', Georgia, serif;
    --font-accent: 'Playfair Display', Georgia, serif;

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

    /* Layout */
    --max-width: 1200px;
    --nav-height: 72px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(201, 162, 39, 0.3);

    /* Transitions */
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

::selection {
    background-color: var(--brass);
    color: var(--black);
}

/* ===== Grain Overlay - Film Texture ===== */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

a {
    color: var(--brass);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

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

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

/* ===== Navigation ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    transition: all 0.4s var(--ease-out);
}

.main-nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(201, 162, 39, 0.2);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--cream);
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-wc {
    background: var(--brass);
    color: var(--black);
    padding: 0.1em 0.4em;
    font-size: 0.7em;
    border-radius: 2px;
    margin-left: var(--space-xs);
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brass);
    transition: width 0.3s var(--ease-out);
}

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

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

.nav-cta {
    background: var(--brass) !important;
    color: var(--black) !important;
    padding: var(--space-sm) var(--space-md) !important;
    border-radius: 2px;
}

.nav-cta:hover {
    background: var(--brass-light) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: var(--space-lg);
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    letter-spacing: 0.1em;
}

.mobile-nav-links .nav-cta {
    display: inline-block;
    font-size: 1.5rem;
    padding: var(--space-md) var(--space-xl) !important;
}

/* ===== Hero Section - Leather Vest Layout ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

/* Left Side - Logo with Leather Texture */
.hero-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    /* Leather texture effect */
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 1px,
            rgba(0,0,0,0.1) 1px,
            rgba(0,0,0,0.1) 2px
        ),
        linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,162,39,0.08) 0%, transparent 70%);
}

/* Logo container */
.logo-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-logo {
    max-width: 90%;
    width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Right Side - Text Content */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
    padding-left: calc(var(--space-xl) + 2rem);
    background: var(--black);
    position: relative;
}

/* Brass vertical divider */
.hero-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--brass), transparent);
}

/* Hero Chapter Location */
.hero-chapter {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--brass);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    padding-left: 2rem;
    position: relative;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.2s forwards;
    opacity: 0;
}

.hero-chapter::before {
    content: '\2605';
    position: absolute;
    left: 0;
    color: var(--brass);
}

/* Hero Title - Large Display */
.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--cream);
    letter-spacing: 0.05em;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.35s forwards;
    opacity: 0;
}

/* Hero Subtitle - Italic Accent */
.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--brass);
    font-style: italic;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.5s forwards;
    opacity: 0;
}

/* Hero Tagline */
.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 3rem;
    max-width: 400px;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.65s forwards;
    opacity: 0;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.8s forwards;
    opacity: 0;
}

/* Hero Responsive - Leather Vest Layout */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-lg);
    }

    .hero-logo {
        width: 400px;
        max-width: 80%;
    }

    .hero-right {
        padding: var(--space-lg);
        padding-left: var(--space-lg);
        text-align: center;
    }

    .hero-right::before {
        display: none;
    }

    .hero-chapter {
        padding-left: 0;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }

    .hero-chapter::before {
        position: static;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-tagline {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-logo {
        width: 280px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: var(--space-md) var(--space-xl);
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: var(--brass);
    color: var(--black);
    border-color: var(--brass);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s var(--ease-out);
}

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

.btn-primary:hover {
    background: var(--brass-light);
    color: var(--black);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4),
                0 0 40px rgba(201, 162, 39, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
    position: relative;
    overflow: hidden;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--cream);
    transition: width 0.3s var(--ease-out);
    z-index: -1;
}

.btn-ghost:hover::before {
    width: 100%;
}

.btn-ghost:hover {
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 230, 211, 0.2);
}

.btn-ghost:active {
    transform: translateY(-1px);
}

.btn-large {
    padding: var(--space-md) var(--space-2xl);
    font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollFloat 2s ease-in-out 1.5s infinite, fadeIn 0.5s var(--ease-out) 1.2s forwards;
    opacity: 0;
    z-index: 10;
}

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

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--brass), transparent);
}

@keyframes scrollFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@media (max-width: 900px) {
    .scroll-indicator {
        right: 50%;
        transform: translateX(50%);
    }

    @keyframes scrollFloat {
        0%, 100% { transform: translateX(50%) translateY(0); }
        50% { transform: translateX(50%) translateY(8px); }
    }
}

/* ===== Sections Base ===== */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--brass);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--cream);
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: var(--space-sm);
}

/* ===== About Section ===== */
.about-section {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.about-content {
    padding-right: var(--space-lg);
}

.lead-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* Creed Box */
.creed-box {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), transparent);
    border-left: 4px solid var(--brass);
    position: relative;
    overflow: hidden;
}

.creed-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.creed-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brass);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.creed-list {
    list-style: none;
}

.creed-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    font-size: 1rem;
}

.creed-num {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--brass);
    font-weight: 700;
    min-width: 24px;
}

/* Stats Grid */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.stat-card {
    background: linear-gradient(135deg, var(--steel), var(--charcoal));
    border: 1px solid var(--steel-light);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.stat-card:hover {
    border-color: var(--brass);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(201, 162, 39, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--brass);
    line-height: 1;
    margin-bottom: var(--space-xs);
    transition: transform 0.3s var(--ease-out);
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Motto Block */
.motto-block {
    text-align: center;
    padding: var(--space-xl);
    border-top: 1px solid var(--steel);
    border-bottom: 1px solid var(--steel);
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.05), transparent);
}

.motto-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--brass);
    font-style: italic;
    letter-spacing: 0.05em;
}

/* ===== Leadership / Table Section ===== */
.table-section {
    background: var(--black);
}

.officers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.officer-card {
    background: linear-gradient(180deg, var(--charcoal-light), var(--charcoal));
    border: 1px solid var(--steel);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.officer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brass);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
}

.officer-card:hover {
    border-color: var(--brass);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.officer-card:hover::before {
    transform: scaleX(1);
}

.officer-patch {
    margin-bottom: var(--space-md);
}

.officer-role {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    background: var(--brass);
    color: var(--black);
    padding: var(--space-xs) var(--space-md);
    letter-spacing: 0.15em;
}

.officer-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--cream);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.officer-specialty {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.officer-quote {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== President Feature - Single Leader Layout ===== */
.president-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.president-card {
    background:
        /* Leather texture */
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 2px,
            rgba(139, 69, 19, 0.03) 2px,
            rgba(139, 69, 19, 0.03) 4px
        ),
        linear-gradient(180deg, var(--charcoal-light), var(--charcoal));
    border: 2px solid var(--brass);
    padding: var(--space-xl) var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 162, 39, 0.1);
    position: relative;
    overflow: hidden;
}

.president-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { opacity: 0.5; transform: translate(0, 0); }
    50% { opacity: 1; transform: translate(10%, 10%); }
}

.president-icon {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-md);
}

.gavel-icon {
    width: 50px;
    height: 50px;
    color: var(--brass);
    opacity: 0.8;
}

.president-patch {
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.president-role {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    background: var(--brass);
    color: var(--black);
    padding: var(--space-xs) var(--space-lg);
    letter-spacing: 0.15em;
}

.president-info {
    position: relative;
    z-index: 1;
}

.president-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.president-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.president-bio {
    padding-top: var(--space-md);
}

.president-bio p {
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    line-height: 1.8;
}

/* Credential Badge */
.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, var(--steel), var(--charcoal));
    border: 1px solid var(--brass);
    border-radius: 4px;
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.credential-badge:hover {
    background: linear-gradient(135deg, var(--charcoal-light), var(--steel));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.2);
}

.credential-icon {
    font-size: 1.5rem;
}

.credential-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.credential-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.credential-text span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--brass);
    font-style: italic;
}

.president-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.specialty-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--steel);
    color: var(--cream);
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--steel-light);
    transition: all 0.3s var(--ease-out);
}

.specialty-tag:hover {
    border-color: var(--brass);
    background: var(--charcoal-light);
}

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

    .president-card {
        max-width: 300px;
        margin: 0 auto;
    }

    .president-specialties {
        justify-content: center;
    }

    .credential-badge {
        flex-direction: column;
        text-align: center;
    }

    .credential-text {
        text-align: center;
    }
}

/* ===== Work / Gallery Section ===== */
.work-section {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.coming-soon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05), transparent);
    border: 2px dashed var(--steel);
    border-radius: 4px;
    max-width: 500px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    color: var(--brass);
    opacity: 0.6;
    margin-bottom: var(--space-lg);
}

.coming-soon-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.coming-soon-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 350px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: var(--space-md);
}

.work-card {
    background: linear-gradient(135deg, var(--steel), var(--charcoal));
    border: 1px solid var(--steel-light);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.work-card:hover {
    border-color: var(--brass);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.work-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.work-card-wide {
    grid-column: span 2;
}

.work-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    text-align: center;
}

.work-icon {
    width: 80px;
    height: 60px;
    color: var(--brass);
    opacity: 0.6;
    margin-bottom: var(--space-md);
    transition: all 0.3s var(--ease-out);
}

.work-card:hover .work-icon {
    opacity: 1;
    transform: scale(1.1);
}

.work-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.work-maker {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== Church / Meetings Section ===== */
.meets-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

/* Decorative Saw Blade */
.saw-blade-decor {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 0;
}

.saw-blade-svg {
    width: 100%;
    height: 100%;
    color: var(--brass);
    animation: sawRotate 60s linear infinite;
}

@keyframes sawRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
    .saw-blade-decor {
        right: -200px;
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .saw-blade-decor {
        display: none;
    }
}

/* Program Schedule */
.program-schedule {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.schedule-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--brass);
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.schedule-title::before,
.schedule-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass));
}

.schedule-title::before {
    right: calc(50% + 180px);
    background: linear-gradient(90deg, transparent, var(--brass));
}

.schedule-title::after {
    left: calc(50% + 180px);
    background: linear-gradient(90deg, var(--brass), transparent);
}

.schedule-grid {
    display: grid;
    gap: var(--space-md);
    position: relative;
}

/* Year indicator on the left */
.schedule-grid::before {
    content: '2026';
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--steel);
    letter-spacing: 0.2em;
    opacity: 0.3;
    pointer-events: none;
}

.program-card {
    display: flex;
    gap: var(--space-xl);
    background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal));
    border: 1px solid var(--steel);
    border-left: 4px solid var(--brass);
    padding: var(--space-xl) var(--space-lg);
    transition: all 0.3s var(--ease-out);
    position: relative;
}

/* Alternating subtle background tints */
.program-card:nth-child(even) {
    background: linear-gradient(135deg, var(--charcoal), var(--steel));
}

.program-card:hover {
    border-color: var(--brass);
    transform: translateX(8px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(201, 162, 39, 0.1);
}

/* Staggered entrance animation - triggered when section is visible */
.meets-section .program-card {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.meets-section.visible .program-card {
    opacity: 1;
    transform: translateX(0);
}

.meets-section.visible .program-card:nth-child(1) { transition-delay: 0.1s; }
.meets-section.visible .program-card:nth-child(2) { transition-delay: 0.15s; }
.meets-section.visible .program-card:nth-child(3) { transition-delay: 0.2s; }
.meets-section.visible .program-card:nth-child(4) { transition-delay: 0.25s; }
.meets-section.visible .program-card:nth-child(5) { transition-delay: 0.3s; }
.meets-section.visible .program-card:nth-child(6) { transition-delay: 0.35s; }
.meets-section.visible .program-card:nth-child(7) { transition-delay: 0.4s; }
.meets-section.visible .program-card:nth-child(8) { transition-delay: 0.45s; }
.meets-section.visible .program-card:nth-child(9) { transition-delay: 0.5s; }
.meets-section.visible .program-card:nth-child(10) { transition-delay: 0.55s; }

.program-card-special {
    border-left-color: var(--rust);
    background: linear-gradient(135deg, var(--charcoal-light), rgba(139, 58, 58, 0.15));
}

.program-card-special::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--rust) transparent transparent;
    opacity: 0.5;
}

.program-card-special:hover {
    border-color: var(--rust-light);
    box-shadow: var(--shadow-md), 0 0 20px rgba(139, 58, 58, 0.2);
}

.program-date {
    flex-shrink: 0;
    width: 85px;
    text-align: center;
    padding: var(--space-md);
    background: var(--steel);
    border: 1px solid var(--steel-light);
}

.program-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--cream);
    line-height: 1;
}

.program-month {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--brass);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

.program-info {
    flex: 1;
}

.program-note {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.program-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    background: var(--rust);
    color: var(--cream);
    padding: 4px var(--space-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.program-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.program-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.program-title a:hover {
    color: var(--brass);
}

.program-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.75;
}

.program-desc strong {
    color: var(--brass);
}

/* ===== Toys for Kids Callout ===== */
.toy-drive-callout {
    margin-top: var(--space-2xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.toy-drive-border {
    background: linear-gradient(135deg, #2D4A3E 0%, #1a2f26 100%);
    padding: 4px;
    position: relative;
    clip-path: polygon(
        0 8px, 8px 8px, 8px 0,
        calc(100% - 8px) 0, calc(100% - 8px) 8px, 100% 8px,
        100% calc(100% - 8px), calc(100% - 8px) calc(100% - 8px), calc(100% - 8px) 100%,
        8px 100%, 8px calc(100% - 8px), 0 calc(100% - 8px)
    );
}

.toy-drive-inner {
    background:
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 2px,
            rgba(45, 74, 62, 0.08) 2px,
            rgba(45, 74, 62, 0.08) 4px
        ),
        linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
    padding: var(--space-xl);
    position: relative;
}

/* Corner rivets */
.rivet {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(145deg, #3d3d3d, #1a1a1a);
    border: 2px solid #2D4A3E;
    box-shadow:
        inset 0 2px 4px rgba(255,255,255,0.1),
        0 2px 4px rgba(0,0,0,0.5);
}

.rivet-tl { top: 12px; left: 12px; }
.rivet-tr { top: 12px; right: 12px; }
.rivet-bl { bottom: 12px; left: 12px; }
.rivet-br { bottom: 12px; right: 12px; }

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

.toy-drive-icon {
    width: 80px;
    height: 80px;
    color: #5a8a72;
    opacity: 0.9;
    transition: transform 0.3s var(--ease-out);
}

.toy-drive-callout:hover .toy-drive-icon {
    transform: scale(1.05);
}

.toy-drive-icon svg {
    width: 100%;
    height: 100%;
}

.toy-drive-text {
    padding-right: var(--space-lg);
}

.toy-drive-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: #5a8a72;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: var(--space-xs);
}

.toy-drive-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: var(--space-sm);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.toy-drive-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 450px;
}

.toy-drive-dates {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(45, 74, 62, 0.2);
    border: 1px solid rgba(90, 138, 114, 0.3);
    border-radius: 4px;
}

.toy-date-block {
    text-align: center;
}

.toy-date-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: #5a8a72;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.toy-date-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.toy-date-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #5a8a72, transparent);
}

/* Toy Drive Responsive */
@media (max-width: 800px) {
    .toy-drive-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }

    .toy-drive-icon {
        margin: 0 auto;
    }

    .toy-drive-text {
        padding-right: 0;
    }

    .toy-drive-desc {
        margin: 0 auto;
    }

    .toy-drive-dates {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .toy-drive-inner {
        padding: var(--space-lg);
    }

    .toy-drive-title {
        font-size: 2rem;
    }

    .toy-drive-dates {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .toy-date-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, #5a8a72, transparent);
    }
}

@media (max-width: 1100px) {
    .schedule-grid::before {
        display: none;
    }

    .schedule-title::before,
    .schedule-title::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .program-card {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-lg);
    }

    .program-date {
        width: 100%;
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        padding: var(--space-sm) var(--space-md);
    }

    .program-day {
        font-size: 1.75rem;
    }

    .program-title {
        font-size: 1.35rem;
    }

    .program-desc {
        font-size: 1.05rem;
    }

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

.church-timeline {
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    position: relative;
}

.church-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brass), var(--leather), var(--brass));
}

.timeline-item {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal));
    border: 3px solid var(--brass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brass);
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    flex: 1;
    padding-top: var(--space-md);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Upcoming Events */
.upcoming-block {
    margin-top: var(--space-2xl);
}

.upcoming-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--brass);
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.events-list {
    display: grid;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: var(--space-lg);
    background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal));
    border: 1px solid var(--steel);
    border-left: 4px solid var(--brass);
    padding: var(--space-lg);
    transition: all 0.3s var(--ease-out);
}

.event-card:hover {
    border-color: var(--brass);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.event-card-ride {
    border-left-color: var(--rust);
    background: linear-gradient(135deg, rgba(139, 58, 58, 0.15), var(--charcoal));
}

.event-card-ride:hover {
    border-color: var(--rust);
}

.event-date {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    border-right: 1px solid var(--steel);
    padding-right: var(--space-md);
}

.event-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    line-height: 1;
}

.event-month {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--brass);
    letter-spacing: 0.15em;
}

.event-info {
    flex: 1;
}

.event-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    background: var(--rust);
    color: var(--cream);
    padding: 2px 8px;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.event-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.event-location {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--brass);
    letter-spacing: 0.05em;
}

/* ===== Prospect Section ===== */
.prospect-section {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

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

.prospect-patch-wrap {
    display: flex;
    justify-content: center;
}

.prospect-patch {
    width: 180px;
}

.prospect-svg {
    width: 100%;
    height: auto;
    color: var(--brass);
}

.prospect-text-main {
    font-family: var(--font-display);
    font-size: 18px;
    fill: currentColor;
    letter-spacing: 0.15em;
}

.prospect-text-sub {
    font-family: var(--font-heading);
    font-size: 12px;
    fill: currentColor;
    letter-spacing: 0.1em;
}

.prospect-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--cream);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.prospect-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.requirements-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), transparent);
    border-left: 4px solid var(--brass);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.requirements-box h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brass);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brass);
    font-weight: bold;
}

.contact-block {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--charcoal);
    border: 1px solid var(--steel);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.contact-link,
.contact-value {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--cream);
}

.contact-link:hover {
    color: var(--brass);
}

/* ===== Prospect Form ===== */
.prospect-form {
    margin-top: var(--space-xl);
    max-width: 500px;
}

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

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--charcoal);
    border: 1px solid var(--steel);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brass);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.prospect-form .btn {
    width: 100%;
    margin-top: var(--space-sm);
}

.form-alt {
    margin-top: var(--space-lg);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.form-alt .contact-link {
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== Footer ===== */
.main-footer {
    background: var(--black-deep);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid var(--charcoal);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--charcoal);
}

.footer-brand {
    text-align: center;
}

.footer-patch {
    margin-bottom: var(--space-md);
}

.footer-emblem {
    width: 60px;
    height: 60px;
    color: var(--brass);
}

.footer-wc {
    font-family: var(--font-display);
    font-size: 20px;
    fill: currentColor;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xs);
}

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

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.footer-nav a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.footer-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--brass);
    font-style: italic;
    letter-spacing: 0.05em;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.footer-url {
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    color: var(--text-secondary) !important;
}

/* ===== Animations ===== */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow:
            inset 0 4px 8px rgba(255, 255, 255, 0.08),
            inset 0 -4px 8px rgba(0, 0, 0, 0.4),
            0 8px 32px rgba(0, 0, 0, 0.6),
            0 0 20px rgba(201, 162, 39, 0.2);
    }
    50% {
        box-shadow:
            inset 0 4px 8px rgba(255, 255, 255, 0.08),
            inset 0 -4px 8px rgba(0, 0, 0, 0.4),
            0 8px 32px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(201, 162, 39, 0.4);
    }
}

.mc-patch:hover .patch-border {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
    }

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

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

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }

    .work-card-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .prospect-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .requirements-box {
        text-align: left;
    }

    .contact-block {
        justify-content: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

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

    .work-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .work-card,
    .work-card-large,
    .work-card-wide {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }

    .church-timeline::before {
        left: 25px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        border-right: none;
        border-bottom: 1px solid var(--steel);
        padding-right: 0;
        padding-bottom: var(--space-md);
        margin-bottom: var(--space-md);
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        width: auto;
    }

    .event-day {
        font-size: 2rem;
    }

    .prospect-title {
        font-size: 2rem;
    }

    .contact-block {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.35rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.85rem;
    }

    .btn-large {
        padding: var(--space-md) var(--space-xl);
    }
}

/* ===== Print Styles ===== */
@media print {
    .main-nav,
    .mobile-nav,
    .scroll-indicator,
    .grain-overlay,
    .hero-bg {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        opacity: 1;
        transform: none;
        page-break-inside: avoid;
    }

    .mc-patch {
        filter: grayscale(1);
    }
}
