/* ====================================
   2026 ECM Celebration and Awards
   Editorial Prestige Design System
   ==================================== */

/* CSS Variables */
:root {
    --black: #0a0a0a;
    --black-rich: #050505;
    --ccm-red: #CA3553;
    --ccm-red-hover: #a82d47;
    --gold: #D4AF37;
    --gold-light: #E8D48A;
    --gold-dark: #B8962E;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --gray-warm: #8A8680;
    --gray-text: #3D3A36;
    --white: #FFFFFF;

    /* Typography Scale */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    z-index: 1000;
    transition: top 0.3s var(--ease-out-expo);
}

.skip-link:focus {
    top: 1rem;
}

/* ====================================
   Masthead
   ==================================== */
.masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.masthead-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.site-logo a:hover {
    opacity: 1;
}

.site-logo img {
    height: 36px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.87);
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s, background 0.3s;
    position: relative;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--gold);
}

.nav-cta {
    background: var(--ccm-red);
    color: var(--white) !important;
    margin-left: 1rem;
    border-radius: 2px;
}

.nav-cta:hover {
    background: var(--ccm-red-hover);
    color: var(--white) !important;
}

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

@media (max-width: 768px) {
    .masthead-inner {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .nav-cta {
        margin-left: 0.5rem;
    }
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-xl);
    background: var(--black-rich);
    position: relative;
    overflow: hidden;
}

/* Gold grain texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(202, 53, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Noise texture */
.hero::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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-eyebrow::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.87);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s both;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.hero-meta-icon {
    font-size: 1.25rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold);
    color: var(--black);
    padding: 1.125rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    animation: fadeInUp 0.8s var(--ease-out-expo) 1s both;
}

.hero-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out-expo);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1.2s both;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    margin: 0.75rem auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(0.6); opacity: 0.8; }
}

/* ====================================
   Page Hero (Interior Pages)
   ==================================== */
.page-hero {
    padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-xl);
    background: var(--black-rich);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-eyebrow {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.6s var(--ease-out-expo) 0.2s both;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.6s var(--ease-out-expo) 0.3s both;
}

.page-hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.87);
    animation: fadeInUp 0.6s var(--ease-out-expo) 0.4s both;
}

/* ====================================
   Sections
   ==================================== */
.section {
    padding: var(--space-2xl) var(--space-lg);
}

.section--cream {
    background: var(--cream);
}

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

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

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

.section--dark .section-subtitle {
    color: rgba(255, 255, 255, 0.87);
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-eyebrow {
    color: var(--ccm-red);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-warm);
    max-width: 650px;
    margin: 0 auto;
}

/* ====================================
   Info Card
   ==================================== */
.info-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: var(--space-lg);
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--ccm-red));
}

.info-card-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-warm);
}

.info-value {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.5;
}

/* ====================================
   Award Cards
   ==================================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

@media (max-width: 968px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.award-card {
    background: var(--white);
    padding: var(--space-lg);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

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

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

.award-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.award-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.award-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-text);
}

.award-past {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.award-past-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-warm);
    margin-bottom: 0.375rem;
}

.award-past-names {
    font-size: 0.8125rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ====================================
   Benefits Grid
   ==================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--white);
    border-left: 3px solid var(--gold);
    transition: transform 0.3s var(--ease-out-expo);
}

.benefit-item:hover {
    transform: translateX(4px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.benefit-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-text);
}

/* ====================================
   Timeline
   ==================================== */
.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 24px 1fr;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-time {
    text-align: right;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ccm-red);
    padding-top: 0.25rem;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

.timeline-line {
    width: 2px;
    flex-grow: 1;
    background: linear-gradient(to bottom, var(--gold), var(--ccm-red));
    margin-top: 0.5rem;
}

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

.timeline-content {
    padding-bottom: var(--space-sm);
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.375rem;
}

.timeline-description {
    font-size: 0.9375rem;
    color: var(--gray-warm);
}

.timeline-tba {
    font-style: italic;
    color: var(--gray-warm);
}

@media (max-width: 640px) {
    .timeline-item {
        grid-template-columns: 80px 20px 1fr;
        gap: var(--space-sm);
    }

    .timeline-time {
        font-size: 0.8125rem;
    }

    .timeline-title {
        font-size: 1.125rem;
    }
}

/* ====================================
   Travel Cards
   ==================================== */
.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.travel-card {
    background: var(--white);
    padding: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.travel-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.travel-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.travel-text {
    font-size: 0.9375rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    background: var(--black);
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.87);
    margin-bottom: var(--space-lg);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold);
    color: var(--black);
    padding: 1.125rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

/* ====================================
   Sponsor Bar
   ==================================== */
.sponsor-bar {
    background: var(--cream-dark);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sponsor-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.sponsor-logos a {
    display: block;
    transition: opacity 0.2s ease;
}

.sponsor-logos a:hover {
    opacity: 0.7;
}

.sponsor-logos img {
    max-height: 48px;
    width: auto;
}

.sponsor-text {
    font-size: 0.875rem;
    color: var(--gray-warm);
    font-style: italic;
}

.sponsor-text strong {
    color: var(--gray-text);
    font-style: normal;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--black-rich);
    color: var(--white);
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.87);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--ccm-red);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-notice {
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
}

.footer-notice p {
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-credit {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ====================================
   Links
   ==================================== */
.text-link {
    color: var(--ccm-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--gold);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ccm-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s var(--ease-out-expo), color 0.3s;
}

.arrow-link:hover {
    gap: 0.75rem;
    color: var(--gold);
}

.arrow-link::after {
    content: '→';
}

/* ====================================
   Past Winners Box
   ==================================== */
.past-winners {
    background: var(--cream-dark);
    padding: var(--space-lg);
    border-left: 4px solid var(--gold);
    margin-top: var(--space-xl);
}

.past-winners h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.past-winners p {
    font-size: 0.9375rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.past-winners p:last-child {
    margin-bottom: 0;
}

/* ====================================
   Sponsors Grid
   ==================================== */
.sponsors-grid {
    display: grid;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

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

/* Sponsor Card */
.sponsor-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

.sponsor-card--featured .sponsor-card-header {
    background: linear-gradient(135deg, var(--gold), #C9A227);
}

.sponsor-card-header {
    background: linear-gradient(135deg, var(--gold), #B8972B);
    padding: var(--space-xs) var(--space-md);
}

.sponsor-tier {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
}

.sponsor-card-body {
    padding: var(--space-lg);
}

.sponsor-card-logo {
    margin-bottom: var(--space-md);
}

.sponsor-card-logo img {
    max-height: 64px;
    width: auto;
}

.sponsor-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.sponsor-description {
    font-size: 0.9375rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.sponsor-description:last-of-type {
    margin-bottom: var(--space-md);
}

.sponsor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ccm-red);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sponsor-link:hover {
    color: var(--gold);
}

.sponsor-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.sponsor-link:hover svg {
    transform: translate(2px, -2px);
}

/* ====================================
   Sponsor Tiers Grid
   ==================================== */
.sponsor-tiers-grid {
    display: grid;
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

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

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

/* Sponsor Tier Card */
.sponsor-tier-card {
    background: var(--cream);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.sponsor-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sponsor-tier-card--featured {
    border: 2px solid var(--gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--cream) 100%);
}

.sponsor-tier-header {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.sponsor-tier-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-xs);
}

.sponsor-tier-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.sponsor-tier-price {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.sponsor-tier-tagline {
    font-size: 0.875rem;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    flex-grow: 0;
}

.sponsor-tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8125rem;
    color: var(--gray-text);
    flex-grow: 1;
}

.sponsor-tier-benefits li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.sponsor-tier-benefits li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ====================================
   Animations
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered fade for sections */
.fade-in {
    animation: fadeInUp 0.6s var(--ease-out-expo) both;
}

.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }

/* ====================================
   Utilities
   ==================================== */
.text-center {
    text-align: center;
}

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

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

.prose {
    font-size: 1rem;
    line-height: 1.8;
}

.prose p {
    margin-bottom: var(--space-sm);
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose strong {
    color: var(--black);
    font-weight: 600;
}

/* ====================================
   Honorees Section
   ==================================== */
.honorees-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.honoree-item {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--space-lg) 0;
}

.honoree-item:first-child {
    border-top: none;
    padding-top: 0;
}

.honoree-header {
    margin-bottom: var(--space-sm);
}

.honoree-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 0.375rem;
}

.honoree-outlet {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ccm-red);
    text-decoration: none;
    transition: color 0.3s;
}

.honoree-outlet:hover {
    color: var(--gold-dark);
}

.honoree-description {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--gray-text);
}

.honoree-description a {
    color: var(--ccm-red);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(202, 53, 83, 0.25);
    transition: color 0.3s, border-color 0.3s;
}

.honoree-description a:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.honoree-note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--gray-warm);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================
   Speaker Cards
   ==================================== */

.speakers-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.speaker-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-lg);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: var(--space-lg);
    position: relative;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

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

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

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

.speaker-photo {
    width: 200px;
    height: 240px;
    object-fit: cover;
    object-position: 50% 40%;
    display: block;
    flex-shrink: 0;
}

.speaker-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

.speaker-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 0.375rem;
}

.speaker-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: var(--space-sm);
}

.speaker-role-badge {
    display: inline-block;
    background: var(--cream-dark);
    color: var(--gray-text);
    padding: 0.25rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    width: fit-content;
}

.speaker-bio {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--gray-text);
}

/* Speaker grid variant (teaser) */
.speakers-grid-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.speaker-card-sm {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.speaker-card-sm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 1;
}

.speaker-card-sm:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.speaker-card-sm-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: 50% 40%;
    display: block;
}

.speaker-card-sm-body {
    padding: var(--space-md);
}

.speaker-card-sm-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.speaker-card-sm-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.speaker-card-sm-role {
    display: inline-block;
    background: var(--cream-dark);
    color: var(--gray-text);
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (max-width: 968px) {
    .speakers-grid-photos {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .speaker-card-sm {
        display: grid;
        grid-template-columns: 140px 1fr;
    }

    .speaker-card-sm-photo {
        height: 100%;
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .speaker-card {
        grid-template-columns: 1fr;
    }

    .speaker-photo {
        width: 160px;
        height: 200px;
    }

    .speaker-card-sm {
        grid-template-columns: 1fr;
    }

    .speaker-card-sm-photo {
        height: 220px;
    }
}

/* ====================================
   Accessibility Enhancements
   ==================================== */

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

/* Focus indicators */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Interactive element focus */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .nav-link,
    .hero-subtitle,
    .page-hero-subtitle,
    .section--dark .section-subtitle,
    .cta-text,
    .footer-section p,
    .footer-notice p,
    .footer-credit {
        color: rgba(255, 255, 255, 0.95);
    }
}
