/* ============================================
   Lambda Chi Alpha - Zeta Rho Chapter at FSU
   Premium Website Styles
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Lambda Chi Alpha Colors */
    --purple: #4A1E6D;
    --purple-light: #6B2D9E;
    --purple-dark: #2E1244;
    --green: #1A7D3D;
    --green-light: #25A652;
    --green-dark: #0F5426;
    --gold: #C9A227;
    --gold-light: #E5C04B;
    --gold-dark: #9A7B1C;

    /* FSU Colors (accent) */
    --garnet: #782F40;
    --fsu-gold: #CEB888;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --black: #0A0A0A;

    /* Typography */
    --font-display: 'Cinzel', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* 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;
    --space-5xl: 8rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --ease-heritage: cubic-bezier(0.23, 1, 0.32, 1);

    /* Heritage Accents */
    --gold-glow: 0 0 12px rgba(201, 162, 39, 0.5);
    --gold-gradient-line: linear-gradient(90deg, transparent, var(--gold), transparent);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

/* 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-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
}

/* When mobile menu is active, ensure proper styling */
@media (max-width: 968px) {
    .navbar.scrolled.menu-open {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .navbar.scrolled.menu-open .nav-logo .logo-icon,
    .navbar.scrolled.menu-open .nav-logo .logo-text {
        color: var(--white) !important;
    }
}

.navbar.scrolled .nav-logo .logo-icon,
.navbar.scrolled .nav-logo .logo-text {
    color: var(--purple);
}

.navbar.scrolled .nav-link {
    color: var(--gray-800);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--purple);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    z-index: 1001;
}

.nav-logo .logo-icon {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: color var(--transition-base);
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color var(--transition-base);
}

.nav-logo .logo-primary {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-logo .logo-secondary {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    position: relative;
    padding: var(--space-sm) 0;
    transition: color var(--transition-base);
}

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

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

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

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: linear-gradient(135deg, var(--purple-dark), var(--purple)) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: var(--space-xl);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-base), visibility var(--transition-base);
        z-index: 9999 !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }

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

    .nav-menu .nav-link {
        font-size: 1.5rem;
        color: var(--white) !important;
        text-shadow: none;
    }

    .nav-toggle {
        z-index: 10000 !important;
    }

    .nav-logo {
        z-index: 10000 !important;
    }

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

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

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

    /* Ensure toggle bars are white when menu is open */
    .nav-toggle.active span {
        background: var(--white) !important;
    }
}

/* ============================================
   Hero Section — Heritage Luxury Redesign
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(46, 18, 68, 0.65) 0%, transparent 70%),
        linear-gradient(180deg,
            rgba(10, 6, 18, 0.5) 0%,
            rgba(46, 18, 68, 0.75) 35%,
            rgba(46, 18, 68, 0.85) 60%,
            rgba(10, 6, 18, 0.92) 100%
        );
    z-index: 1;
}

/* Subtle animated grain texture */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
}

/* Golden frame corners */
.hero-frame {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease 1.8s;
}

.hero.hero--loaded .hero-frame {
    opacity: 0.35;
}

.hero-frame--tl {
    top: 28px;
    left: 28px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.hero-frame--tr {
    top: 28px;
    right: 28px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

.hero-frame--bl {
    bottom: 28px;
    left: 28px;
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.hero-frame--br {
    bottom: 28px;
    right: 28px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

/* Content container */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 7rem var(--space-xl) 7rem;
    max-width: 860px;
    width: 100%;
}

/* Staggered entrance animation for children */
[data-hero-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero.hero--loaded [data-hero-animate] {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.hero.hero--loaded [data-hero-animate]:nth-child(1) { transition-delay: 0.15s; }
.hero.hero--loaded [data-hero-animate]:nth-child(2) { transition-delay: 0.35s; }
.hero.hero--loaded [data-hero-animate]:nth-child(3) { transition-delay: 0.55s; }
.hero.hero--loaded [data-hero-animate]:nth-child(4) { transition-delay: 0.7s; }
.hero.hero--loaded [data-hero-animate]:nth-child(5) { transition-delay: 0.85s; }
.hero.hero--loaded [data-hero-animate]:nth-child(6) { transition-delay: 1.0s; }
.hero.hero--loaded [data-hero-animate]:nth-child(7) { transition-delay: 1.1s; }
.hero.hero--loaded [data-hero-animate]:nth-child(8) { transition-delay: 1.25s; }

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-eyebrow__text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    white-space: nowrap;
}

.hero-eyebrow__line {
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Badge with glowing ring */
.hero-badge {
    position: relative;
    margin-bottom: var(--space-2xl);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge__ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.25);
    animation: heroRingPulse 4s ease-in-out infinite;
}

.hero-badge__ring::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.1);
}

@keyframes heroRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 0.3; }
}

.hero-crest {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(201, 162, 39, 0.35))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 1;
}

/* Title */
.hero-title {
    margin-bottom: var(--space-md);
}

.hero-title .title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 40px rgba(201, 162, 39, 0.2);
}

.hero-title .title-line--accent {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 0.3em;
    color: var(--gold-light);
    text-shadow: none;
}

/* Decorative divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-lg) auto var(--space-lg);
    width: 200px;
}

.hero-divider__wing {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-divider__wing:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-divider__diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.5);
}

/* Motto (translation) */
.hero-motto {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: var(--space-2xl);
}

/* Description */
.hero-description {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    opacity: 0.7;
    font-weight: 300;
}

/* CTA buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
}

/* Scroll indicator */
.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);
    color: var(--white);
    opacity: 0;
    z-index: 3;
    transition: opacity 0.6s ease 2s;
}

.hero.hero--loaded .hero-scroll {
    opacity: 0.5;
    animation: heroScrollFloat 3s ease-in-out infinite 2.5s;
}

.hero-scroll span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
}

.scroll-indicator {
    width: 22px;
    height: 36px;
    border: 1.5px solid currentColor;
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--gold-light);
    border-radius: var(--radius-full);
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes heroScrollFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* Hide scroll indicator on mobile */
@media (max-width: 768px) {
    .hero-scroll {
        display: none;
    }

    .hero-frame {
        width: 36px;
        height: 36px;
        top: 16px;
        left: 16px;
    }

    .hero-frame--tr { left: auto; right: 16px; }
    .hero-frame--bl { top: auto; bottom: 16px; }
    .hero-frame--br { top: auto; bottom: 16px; left: auto; right: 16px; }

    .hero-content {
        padding: 6rem var(--space-md) 3rem;
    }

    .hero-eyebrow__line {
        width: 28px;
    }

    .hero-badge__ring {
        width: 130px;
        height: 130px;
    }

    .hero-crest {
        width: 90px;
    }

    .hero-divider {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 5.5rem var(--space-sm) 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--space-md);
    }

    .hero-eyebrow__text {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all 0.35s var(--ease-heritage);
    position: relative;
    overflow: hidden;
}

.btn i {
    transition: transform 0.35s var(--ease-heritage);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5), 0 0 40px rgba(201, 162, 39, 0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--purple);
    border: 1px solid var(--purple);
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
}

.btn-outline.btn-light {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline.btn-light:hover {
    background: var(--white);
    color: var(--purple);
}

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

/* Mobile button adjustments */
@media (max-width: 480px) {
    .btn {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--space-md);
    }

    .rush-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient-line);
}

/* Grain texture on stats */
.stats-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
    position: relative;
}

/* Gold vertical separator between stats on desktop */
@media (min-width: 768px) {
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.3), transparent);
    }
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-xs);
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.25);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.85;
    font-weight: 400;
}

/* ============================================
   Section Styles
   ============================================ */

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-dark);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 44px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 1px;
    background: var(--gold);
    filter: drop-shadow(0 0 4px rgba(201, 162, 39, 0.3));
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    letter-spacing: 0.04em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

/* ============================================
   About Preview Section
   ============================================ */

.about-preview {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    gap: var(--space-4xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content {
    max-width: 560px;
}

.about-images {
    position: relative;
    height: 500px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s var(--ease-heritage);
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-1 {
    width: 70%;
    height: 60%;
    top: 0;
    right: 0;
    z-index: 3;
}

.image-2 {
    width: 50%;
    height: 45%;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.image-3 {
    width: 40%;
    height: 35%;
    bottom: 15%;
    right: 10%;
    z-index: 1;
}

.image-card:hover {
    transform: scale(1.03);
    z-index: 10;
    border-color: rgba(201, 162, 39, 0.4);
}

/* Mobile: Stack images vertically */
@media (max-width: 767px) {
    .about-images {
        height: auto;
    }

    .image-stack {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        position: relative;
    }

    .image-card {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }

    .image-card img {
        height: 200px;
    }
}

/* ============================================
   Values Section
   ============================================ */

.values-section {
    padding: var(--space-5xl) 0;
    background: var(--gray-100);
}

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

.values-header .section-tag {
    padding-left: 0;
}

.values-header .section-tag::before {
    display: none;
}

.values-header .section-subtitle {
    margin: 0 auto;
}

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

/* Mobile: Single column for 7-item grid */
.values-grid.values-grid-7 {
    grid-template-columns: 1fr;
}

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

    /* Small mobile: 2 columns, last item centered */
    .values-grid.values-grid-7 {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid.values-grid-7 > *:nth-child(7) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }
}

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

    /* Tablet: 3 columns, last item centered */
    .values-grid.values-grid-7 {
        grid-template-columns: repeat(6, 1fr);
    }

    .values-grid.values-grid-7 > *:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .values-grid.values-grid-7 > *:nth-child(2) {
        grid-column: 3 / span 2;
    }

    .values-grid.values-grid-7 > *:nth-child(3) {
        grid-column: 5 / span 2;
    }

    .values-grid.values-grid-7 > *:nth-child(4) {
        grid-column: 1 / span 2;
    }

    .values-grid.values-grid-7 > *:nth-child(5) {
        grid-column: 3 / span 2;
    }

    .values-grid.values-grid-7 > *:nth-child(6) {
        grid-column: 5 / span 2;
    }

    .values-grid.values-grid-7 > *:nth-child(7) {
        grid-column: 2 / span 2;
        max-width: none;
        justify-self: stretch;
    }
}

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

    /* Desktop: 4 columns top row, 3 centered on bottom */
    .values-grid.values-grid-7 {
        grid-template-columns: repeat(12, 1fr);
    }

    .values-grid.values-grid-7 > *:nth-child(1) {
        grid-column: 1 / span 3;
    }

    .values-grid.values-grid-7 > *:nth-child(2) {
        grid-column: 4 / span 3;
    }

    .values-grid.values-grid-7 > *:nth-child(3) {
        grid-column: 7 / span 3;
    }

    .values-grid.values-grid-7 > *:nth-child(4) {
        grid-column: 10 / span 3;
    }

    .values-grid.values-grid-7 > *:nth-child(5) {
        grid-column: 2 / span 3;
    }

    .values-grid.values-grid-7 > *:nth-child(6) {
        grid-column: 5 / span 3;
    }

    .values-grid.values-grid-7 > *:nth-child(7) {
        grid-column: 8 / span 3;
    }
}

.value-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-heritage);
    border-bottom: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 -2px 20px rgba(201, 162, 39, 0.1), var(--shadow-xl);
    border-bottom-color: var(--gold);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple-light), var(--purple));
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.5rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: border-color 0.4s var(--ease-heritage);
}

.value-card:hover .value-icon {
    border-color: rgba(201, 162, 39, 0.5);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.value-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
}

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

.value-card-featured .value-icon {
    background: var(--gold);
    color: var(--purple-dark);
}

.value-card-featured h3 {
    color: var(--white);
}

.value-card-featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Alumni Preview Section
   ============================================ */

.alumni-preview {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.alumni-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, rgba(46, 18, 68, 0.95) 100%);
    z-index: -1;
}

.alumni-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    color: var(--white);
}

.alumni-header .section-tag {
    color: var(--gold);
}

.alumni-header .section-tag::before {
    background: var(--gold);
}

.alumni-header .section-title {
    color: var(--white);
}

.alumni-header .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
}

.alumni-grid {
    display: grid;
    gap: var(--space-xl);
}

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

.alumni-card {
    background: rgba(10, 6, 18, 0.5);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-top: 2px solid var(--gold);
    transition: all 0.4s var(--ease-heritage);
}

.alumni-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.1), var(--shadow-2xl);
}

.alumni-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
}

.alumni-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform var(--transition-slow);
}

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

.alumni-info {
    padding: var(--space-xl);
    color: var(--white);
}

.alumni-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.alumni-title {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.alumni-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.alumni-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ============================================
   Philanthropy Section
   ============================================ */

.philanthropy-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.philanthropy-grid {
    display: grid;
    gap: var(--space-4xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .philanthropy-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.philanthropy-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.philanthropy-image img,
.philanthropy-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

/* House grid - change alignment to stretch so image can center within full height */
.philanthropy-grid.house-grid {
    align-items: stretch;
}

.philanthropy-grid.house-grid .philanthropy-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* House image - show full building with fitted container */
.philanthropy-image.house-image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philanthropy-image.house-image img {
    width: 100%;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    object-fit: contain;
    display: block;
}

@media (min-width: 768px) {
    .philanthropy-image img,
    .philanthropy-image video {
        min-height: 400px;
    }
}

/* ============================================
   House Photo Gallery
   ============================================ */
.house-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.house-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.house-gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-200);
    border: 1px solid transparent;
    transition: all 0.4s var(--ease-heritage);
}

.house-gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(201, 162, 39, 0.3);
}

/* Use aspect-ratio to keep images consistent and predictable */
.house-gallery-featured .house-gallery-item {
    aspect-ratio: 16 / 9;
}

.house-gallery-grid .house-gallery-item {
    aspect-ratio: 3 / 2;
}

.house-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.house-gallery-item:hover img {
    transform: scale(1.04);
}

.house-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.house-gallery-item:hover .house-gallery-caption {
    opacity: 1;
}

.house-gallery-caption span {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 640px) {
    .house-gallery-grid {
        grid-template-columns: 1fr;
    }

    .house-gallery-featured .house-gallery-item {
        aspect-ratio: 3 / 2;
    }

    .house-gallery-caption {
        opacity: 1;
    }
}

.philanthropy-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.philanthropy-stat {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
}

.philanthropy-caption {
    font-size: 0.9rem;
    opacity: 0.9;
}

.philanthropy-content {
    max-width: 560px;
}

.philanthropy-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-200);
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--purple);
}

.mini-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Mobile philanthropy adjustments */
@media (max-width: 480px) {
    .philanthropy-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .mini-number {
        font-size: 1.5rem;
    }

    .philanthropy-stat {
        font-size: 2rem;
    }
}

/* ============================================
   Rush CTA Section
   ============================================ */

.rush-cta {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.rush-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.rush-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rush-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 18, 68, 0.93), rgba(74, 30, 109, 0.9));
}

.rush-content {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.rush-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 30px rgba(201, 162, 39, 0.15);
}

.rush-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
}

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

/* ============================================
   Mentor Cards Section
   ============================================ */

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.mentor-card {
    background: var(--gray-100);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold);
    transition: all 0.4s var(--ease-heritage);
}

.mentor-card:hover {
    transform: translateY(-3px);
    box-shadow: -3px 0 12px rgba(201, 162, 39, 0.12), var(--shadow-lg);
    border-left-color: var(--gold-light);
}

.mentor-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.mentor-degree {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.mentor-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ============================================
   Officers Grid (Text-only Leadership Cards)
   ============================================ */

.officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.officer-card {
    background: var(--white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-heritage);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.officer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-heritage);
}

.officer-card:hover {
    transform: translateY(-3px);
    box-shadow: -3px 0 12px rgba(201, 162, 39, 0.12), var(--shadow-lg);
    border-left-color: var(--gold-light);
}

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

.officer-position {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.officer-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.officer-email {
    display: block;
    font-size: 0.85rem;
    color: var(--purple);
    margin-top: 0.25rem;
    text-decoration: none;
}

.officer-email:hover {
    text-decoration: underline;
}

/* ============================================
   Social Section
   ============================================ */

.social-section {
    padding: var(--space-5xl) 0;
    background: var(--gray-100);
}

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

.social-header .section-tag {
    padding-left: 0;
}

.social-header .section-tag::before {
    display: none;
}

.social-handle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--purple);
    margin-top: var(--space-md);
    transition: color var(--transition-fast);
}

.social-handle:hover {
    color: var(--purple-light);
}

.social-handle i {
    font-size: 1.5rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

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

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

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74, 30, 109, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.instagram-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* Instagram CTA (simplified version without grid) */
.instagram-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-2xl) 0;
}

.instagram-cta-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .instagram-cta-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto var(--space-xl);
        font-size: 2.5rem;
    }
}

.instagram-cta .section-tag {
    padding-left: 0;
}

.instagram-cta .section-tag::before {
    display: none;
}

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

.instagram-cta-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.instagram-cta .btn i {
    font-size: 1.25rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Gold line at footer top */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient-line);
    z-index: 1;
}

/* Grain texture */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.4;
    pointer-events: none;
}

.footer-main {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    gap: var(--space-2xl);
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

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

.footer-logo .logo-icon {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-primary {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
}

.footer-logo .logo-secondary {
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-tagline {
    font-style: italic;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

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

.footer-contact address {
    font-style: normal;
    color: var(--gray-400);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-motto {
    margin-top: var(--space-sm);
    color: var(--gold) !important;
    font-style: italic;
}

/* ============================================
   Page Styles (for inner pages)
   ============================================ */

.page-hero {
    padding: calc(var(--space-5xl) + 100px) 0 var(--space-5xl);
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(46, 18, 68, 0.85) 0%, transparent 70%),
        linear-gradient(180deg,
            rgba(10, 6, 18, 0.5) 0%,
            rgba(46, 18, 68, 0.85) 35%,
            rgba(46, 18, 68, 0.95) 100%
        );
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Grain texture */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
}

/* Bottom gold line */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient-line);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-tag {
    color: var(--gold);
    padding-left: 0;
}

.page-hero .section-tag::before {
    display: none;
}

.page-hero .section-title {
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 30px rgba(201, 162, 39, 0.15);
}

.page-hero .page-subtitle {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    font-weight: 300;
}

.page-content {
    padding: var(--space-5xl) 0;
}

/* Leadership Cards */
.leadership-grid {
    display: grid;
    gap: var(--space-xl);
}

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

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

.leader-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.leader-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.leader-info {
    padding: var(--space-xl);
}

.leader-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.leader-position {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.leader-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Rush Timeline */
.rush-timeline {
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 40px;
    bottom: -var(--space-2xl);
    width: 2px;
    background: var(--gray-200);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--purple);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

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

/* Form Error Styling */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-group .error-message {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: var(--space-xs);
}

.form-group input.success,
.form-group textarea.success,
.form-group select.success {
    border-color: var(--green);
}

.form-group input.success:focus,
.form-group textarea.success:focus,
.form-group select.success:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26, 125, 61, 0.15);
}

.contact-info-grid {
    display: grid;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

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

.contact-info-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border-bottom: 2px solid transparent;
    transition: all 0.4s var(--ease-heritage);
}

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

.contact-info-card i {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-full);
}

.contact-info-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.contact-info-card a {
    color: var(--purple);
}

/* ============================================
   Utility Classes
   ============================================ */

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

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mt-4 { margin-top: var(--space-3xl); }

.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }

/* ============================================
   Mobile Global Adjustments
   ============================================ */

@media (max-width: 767px) {
    /* Reduce section padding on mobile */
    .about-preview,
    .values-section,
    .alumni-preview,
    .philanthropy-section,
    .social-section,
    .page-content {
        padding: var(--space-3xl) 0;
    }

    .rush-cta {
        padding: var(--space-3xl) 0;
    }

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

    .values-header,
    .alumni-header {
        margin-bottom: var(--space-2xl);
    }

    /* Footer grid mobile */
    .footer-main {
        padding: var(--space-2xl) 0;
    }
}

/* ============================================
   Animations
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-heritage), transform 0.7s var(--ease-heritage);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s var(--ease-heritage), transform 0.7s var(--ease-heritage);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s var(--ease-heritage), transform 0.7s var(--ease-heritage);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-heritage), transform 0.7s var(--ease-heritage);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.22s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.34s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.46s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.58s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.82s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Heritage Reusable Components
   ============================================ */

/* Diamond divider — reusable section separator */
.heritage-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-lg) auto;
    width: 160px;
}

.heritage-divider__wing {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.heritage-divider__wing:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.heritage-divider__diamond {
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    box-shadow: var(--gold-glow);
}

/* Grain overlay for dark sections */
.grain-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* Page hero entrance animations */
[data-page-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-heritage),
                transform 0.7s var(--ease-heritage);
}

.page-hero.page-hero--loaded [data-page-animate] {
    opacity: 1;
    transform: translateY(0);
}

.page-hero.page-hero--loaded [data-page-animate]:nth-child(1) { transition-delay: 0.1s; }
.page-hero.page-hero--loaded [data-page-animate]:nth-child(2) { transition-delay: 0.25s; }
.page-hero.page-hero--loaded [data-page-animate]:nth-child(3) { transition-delay: 0.4s; }
.page-hero.page-hero--loaded [data-page-animate]:nth-child(4) { transition-delay: 0.55s; }
