/* ============================================
   Where Valiants Go -- Stylesheet
   Manhattanville Valiants Men's Hockey Alumni Network
   ============================================ */


/* ----------------------------------------
   1. CSS RESET AND VARIABLES
   ---------------------------------------- */

:root {
    --navy: #6b1420;
    --red: #8b1a2b;
    --orange: #a82040;
    --white: #ffffff;
    --off-white: #faf5f5;
    --dark: #2d0a10;
    --text: #2a1015;
    --text-light: #8a7070;
    --border: #d4c0c0;
    --silver: #c0b8b8;
    --crimson: #8b1a2b;
    --crimson-dark: #6b1420;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
}


/* ----------------------------------------
   2. TYPOGRAPHY
   ---------------------------------------- */

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.stat-number {
    font-family: 'DM Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* ----------------------------------------
   3. LAYOUT
   ---------------------------------------- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section--dark {
    background: var(--dark);
    color: var(--white);
}

.section--navy {
    background: var(--navy);
    color: var(--white);
}

.section--alt {
    background: var(--off-white);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* ----------------------------------------
   4. NAVIGATION
   ---------------------------------------- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 72px;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background: var(--white);
    box-shadow: 0 1px 0 var(--border);
}

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

.nav__brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav.scrolled .nav__brand {
    color: var(--navy);
}

.nav__links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav__link:hover {
    opacity: 0.8;
}

.nav.scrolled .nav__link {
    color: var(--navy);
}

.nav__link--active {
    border-bottom: 2px solid var(--white);
    padding-bottom: 4px;
}

.nav.scrolled .nav__link--active {
    border-bottom-color: var(--navy);
}

.nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: background 0.3s ease;
}

.nav.scrolled .nav__toggle span {
    background: var(--navy);
}

.nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 998;
}

.nav__overlay.open {
    display: block;
}


/* ----------------------------------------
   5. HERO SECTIONS
   ---------------------------------------- */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px;
}

.hero--home {
    background: var(--navy);
    background-image:
        linear-gradient(rgba(45,10,16,0.82), rgba(20,5,8,0.92)),
        url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overline {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.1s forwards;
}

.photo-credit {
    font-size: 0.65rem;
    color: #957070;
    font-style: italic;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #d9d9d9;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero--page {
    min-height: 50vh;
}

.hero--profile {
    min-height: 60vh;
    text-align: left;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    opacity: 0.6;
}

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

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ----------------------------------------
   6. BUTTONS
   ---------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.02em;
    border: none;
}

.btn--primary {
    background: var(--white);
    color: var(--navy);
}

.btn--primary:hover {
    background: var(--off-white);
}

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

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn--navy {
    background: var(--navy);
    color: var(--white);
}

.btn--navy:hover {
    background: #4a0f1a;
}

.btn--red {
    background: var(--red);
    color: var(--white);
}

.btn--red:hover {
    background: #8e001a;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}


/* ----------------------------------------
   7. STATS SECTION
   ---------------------------------------- */

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

.stat {
    text-align: center;
    padding: 48px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
    border-right: none;
}

.stat .stat-number {
    color: var(--white);
}

.stat .stat-label {
    color: var(--text-light);
    margin-top: 8px;
}


/* ----------------------------------------
   8. CARDS
   ---------------------------------------- */

.card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--navy);
}

.card__badge {
    display: inline-block;
    padding: 4px 12px;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.card__badge--navy {
    background: var(--navy);
    color: var(--white);
}

.card__badge--red {
    background: var(--red);
    color: var(--white);
}

.card__badge--orange {
    background: var(--orange);
    color: var(--white);
}


/* ----------------------------------------
   9. FEATURED SPOTLIGHT
   ---------------------------------------- */

.spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.spotlight__photo {
    aspect-ratio: 3 / 4;
    background: var(--navy);
    width: 100%;
}

.spotlight__quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
    margin: 24px 0;
    padding-left: 24px;
    border-left: 3px solid var(--red);
}


/* ----------------------------------------
   10. PHOTO PLACEHOLDERS
   ---------------------------------------- */

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.avatar--lg {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
    border-radius: 50%;
}

.avatar--xl {
    width: 180px;
    height: 180px;
    font-size: 3.5rem;
    border-radius: 50%;
}

.avatar--card {
    width: 72px;
    height: 72px;
    font-size: 1.25rem;
    border-radius: 50%;
}

.photo-placeholder {
    background: var(--navy);
    width: 100%;
}

.photo-placeholder--3x4 {
    aspect-ratio: 3 / 4;
}

.photo-placeholder--1x1 {
    aspect-ratio: 1 / 1;
}


/* ----------------------------------------
   11. PROFILE PAGE
   ---------------------------------------- */

.profile-hero {
    padding-top: 120px;
    padding-bottom: 64px;
    text-align: left;
}

.profile-hero .container {
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.profile-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
}

.profile-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--navy);
}

.profile-content p {
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.8;
}

.profile-sidebar {
    position: sticky;
    top: 96px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    text-align: center;
}

.sidebar-card .avatar {
    margin: 0 auto 16px;
}


/* ----------------------------------------
   12. TIMELINE
   ---------------------------------------- */

.timeline {
    position: relative;
    padding-left: 32px;
    margin-top: 24px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
    padding-left: 24px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--navy);
}

.timeline-item__year {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.timeline-item__title {
    font-weight: 600;
    margin-top: 4px;
}

.timeline-item__desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 4px;
}


/* ----------------------------------------
   13. FORMS
   ---------------------------------------- */

.form-section {
    max-width: 640px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.2s ease;
    border-radius: 0;
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0, 48, 87, 0.1);
}

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

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


/* ----------------------------------------
   14. FOOTER
   ---------------------------------------- */

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer__brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer__desc {
    font-size: 0.875rem;
    color: #b89898;
    line-height: 1.6;
}

.footer__heading {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #b89898;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.footer__bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.75rem;
    color: #b89898;
}

.footer__disclaimer {
    font-size: 0.7rem;
    color: #957070;
    max-width: 600px;
    line-height: 1.5;
}


/* ----------------------------------------
   15. CTA SECTION
   ---------------------------------------- */

.cta {
    text-align: center;
    padding: 96px 24px;
}

.cta__heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta__input-row {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
}

.cta__input {
    flex: 1;
    padding: 16px;
    border: 1px solid var(--border);
    border-right: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border-radius: 0;
    color: var(--text);
}

.cta__input:focus {
    outline: none;
    border-color: var(--navy);
}

.cta__submit {
    padding: 16px 32px;
    background: var(--navy);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s ease;
}

.cta__submit:hover {
    background: #4a0f1a;
}


/* ----------------------------------------
   16. ANIMATIONS
   ---------------------------------------- */

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

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


/* ----------------------------------------
   17. MOBILE RESPONSIVE (max-width: 768px)
   ---------------------------------------- */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .section {
        padding: 64px 0;
    }

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        position: static;
    }

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

    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px;
        gap: 24px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav__links.open {
        right: 0;
    }

    .nav__links .nav__link {
        color: var(--navy);
        font-size: 1rem;
    }

    .nav__links .nav__link--active {
        border-bottom-color: var(--navy);
    }

    .cta__input-row {
        flex-direction: column;
    }

    .cta__input {
        border-right: 1px solid var(--border);
    }

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


/* ----------------------------------------
   18. TABLET (max-width: 1024px)
   ---------------------------------------- */

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

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

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


/* ----------------------------------------
   19. TICKER BAR
   ---------------------------------------- */

.ticker {
    background: var(--dark);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticker__inner {
    display: inline-block;
    animation: ticker-scroll 30s linear infinite;
}

.ticker__text {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--silver);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline;
}

.ticker__dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    margin: 0 24px;
    vertical-align: middle;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ----------------------------------------
   20. ENHANCED ANIMATIONS
   ---------------------------------------- */

.fade-in-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Button micro-interactions */
.btn:hover {
    transform: scale(1.02);
}

.btn:active {
    transform: scale(0.98);
}

/* Card hover enhancement */
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Link underline animation */
.footer__links a {
    position: relative;
}

.footer__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.2s ease;
}

.footer__links a:hover::after {
    width: 100%;
}

/* Section overline */
.section-overline {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

/* Nav active red underline */
.nav__link--active {
    border-bottom: 2px solid var(--red);
    padding-bottom: 4px;
}

.nav.scrolled .nav__link--active {
    border-bottom-color: var(--red);
}

/* Pull quote */
.pull-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.4;
    position: relative;
    padding-left: 32px;
    margin: 32px 0;
}

.pull-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--orange);
    position: absolute;
    left: -4px;
    top: -16px;
    font-style: normal;
    line-height: 1;
}

/* Jersey number watermark */
.jersey-watermark {
    font-family: 'DM Mono', monospace;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.06);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
}

/* Position badge colors */
.badge-forward { background: var(--navy); color: white; }
.badge-defense { background: var(--red); color: white; }
.badge-goalie { background: var(--orange); color: white; }

/* Verified badge */
.badge-verified {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: #2a7a3f;
    background: #e8f5ec;
    padding: 2px 8px;
    letter-spacing: 0.05em;
}

.badge-unverified {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--text-light);
    background: var(--off-white);
    padding: 2px 8px;
    letter-spacing: 0.05em;
}

/* Bar chart for recruiting page */
.bar-chart { max-width: 500px; }
.bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}
.bar-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    width: 100px;
    text-align: right;
    color: var(--text-light);
}
.bar-track {
    flex: 1;
    height: 28px;
    background: var(--off-white);
    position: relative;
}
.bar-fill {
    height: 100%;
    background: var(--navy);
    transition: width 1s ease;
}
.bar-value {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-light);
    width: 40px;
}

/* Claim card */
.claim-card {
    background: var(--navy);
    color: white;
    padding: 32px;
    margin-top: 32px;
}

.claim-card h3 { color: white; margin-bottom: 8px; }
.claim-card p { color: #b89898; margin-bottom: 16px; font-size: 0.9rem; }

/* Class year grid */
.year-card {
    background: white;
    border: 1px solid var(--border);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.year-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--navy);
}

.year-card__year {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.year-card__count {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 8px 0 16px;
}

/* Event card */
.event-card {
    background: white;
    border: 1px solid var(--border);
    padding: 48px;
    max-width: 640px;
    margin: 0 auto;
}

.event-card__date {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: var(--orange);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
