/* ===========================
   CSS Reset & Base Styles
   =========================== */

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

:root {
    /* Rose Morandi — fixed palette */
    --primary:        #5A3A45;
    --primary-light:  #7A5060;
    --accent:         #C08090;
    --accent-light:   #D0A8B4;
    --rose-deep:      #B07080;
    --rose-mid:       #C8909A;
    --rose-soft:      #D8B0BA;
    --rose-pale:      #EDE2E6;
    --rose-paler:     #F5EEF0;
    --cream:          #FAF6F7;

    --text-dark:      #3A2830;
    --text-mid:       #5A4050;
    --text-light:     #7A6068;
    --border:         #D8C8CC;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-serif:   'Merriweather', Georgia, serif;
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --ease: 0.2s ease;
    --ease-md: 0.35s ease;
    --ease-slow: 0.7s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--rose-paler);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--ease);
}

a:hover {
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.section-title::before {
    content: '✦';
    display: block;
    font-size: 1.1rem;
    color: var(--accent);
    opacity: 0.65;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--rose-mid), var(--rose-deep), var(--rose-mid), transparent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

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

.navbar {
    background: linear-gradient(to bottom, #F8F2F4, #EDE2E6);
    box-shadow: 0 2px 10px rgba(60, 30, 40, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--ease-md);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right, var(--rose-deep), var(--rose-mid), var(--accent-light), var(--rose-mid)) 1;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    color: var(--text-mid);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: all var(--ease);
    font-size: 0.95rem;
}

.nav-menu a:hover {
    background: var(--rose-pale);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--primary);
    margin: 3px 0;
    transition: all var(--ease);
    border-radius: 2px;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 96vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(
            160deg,
            #1A2535 0%,
            #243450 18%,
            #3A3858 38%,
            #5C3A50 58%,
            #7A3F55 76%,
            #8E4A5E 100%
        );
}

/* Animated radial orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.38;
    animation: orbFloat 14s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-orb-1 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, #C87090 0%, transparent 70%);
    top: -120px;
    right: -80px;
    animation-duration: 16s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #5A6A9A 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
    animation-duration: 20s;
    animation-delay: -6s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #A06878 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 12s;
    animation-delay: -3s;
}

@keyframes orbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(30px, -20px) scale(1.05); }
    66%  { transform: translate(-20px, 30px) scale(0.97); }
    100% { transform: translate(15px, -35px) scale(1.03); }
}

/* Ghost year watermark */
.hero-year-bg {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(180px, 28vw, 380px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.06);
    letter-spacing: -0.04em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    padding: 0 48px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Eyebrow with flanking rules */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-eyebrow-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4));
}

.hero-eyebrow-line:last-child {
    background: linear-gradient(to left, transparent, rgba(255,255,255,0.4));
}

.hero-eyebrow-text {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

/* Main title — two-line typographic treatment */
.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-title-top {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.05em;
    display: block;
}

.hero-title-main {
    font-size: clamp(72px, 11vw, 140px);
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.025em;
    line-height: 0.9;
    display: block;
    background: linear-gradient(135deg, #fff 0%, #F8D0D8 45%, #fff 70%, #F0C8D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Meta info row — date + location cards */
.hero-meta {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
    width: 100%;
    max-width: 740px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.hero-meta-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 36px;
    flex: 1;
    text-align: left;
}

.hero-meta-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.hero-meta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-meta-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
}

.hero-meta-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.hero-meta-divider {
    width: 1px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
    align-self: stretch;
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 40px;
    width: 100%;
    max-width: 740px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 28px 20px;
    flex: 1;
}

.hero-stat-sep {
    width: 1px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
    align-self: stretch;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #F8D0D8 65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* Tagline */
.hero-tagline {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.1em;
}

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: scrollCueFade 2.5s ease-in-out infinite;
}

.hero-scroll-label {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

@keyframes scrollCueFade {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

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

.about {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(145deg, #EDE2E6 0%, #DDD0D4 40%, #D0B0B8 100%);
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--rose-soft), transparent);
}

.about-content {
    max-width: 780px;
    margin: 0 auto;
}

.about-description p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
}

/* ===========================
   Speakers Section
   =========================== */

.speakers {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(160deg, #DDD0D4 0%, #D0B0B8 25%, #C08088 45%, #EDE2E6 65%, #F5EEF0 100%);
    position: relative;
}

.speakers::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--rose-soft), transparent);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.speaker-card {
    background: linear-gradient(145deg, #FAF5F6 0%, #F5EEF0 60%, #EDE2E6 100%);
    padding: var(--spacing-lg);
    border-radius: 14px;
    box-shadow: 0 3px 14px rgba(60, 30, 40, 0.09), inset 0 1px 0 rgba(255,255,255,0.55);
    transition: transform var(--ease-md), box-shadow var(--ease-md);
    border: 1px solid rgba(176, 112, 128, 0.18);
    position: relative;
    overflow: hidden;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--rose-deep), var(--rose-mid), var(--accent-light));
    opacity: 0;
    transition: opacity var(--ease-md);
}

.speaker-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(60, 30, 40, 0.14), inset 0 1px 0 rgba(255,255,255,0.55);
}

.speaker-card:hover::before {
    opacity: 1;
}

.speaker-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--rose-mid);
    box-shadow: 0 4px 14px rgba(60, 30, 40, 0.12);
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-photo.photo-offset-down img {
    object-position: center 20%;
}

.speaker-info { text-align: center; }

.speaker-name {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

.speaker-name a {
    color: var(--primary);
    border-bottom: 1.5px solid transparent;
    transition: border-color var(--ease), color var(--ease);
}

.speaker-name a:hover {
    color: var(--rose-deep);
    border-bottom-color: var(--rose-deep);
}

.speaker-title {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.speaker-affiliation {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===========================
   Schedule Section
   =========================== */

.schedule {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(120deg,
        #C8909A 0%,
        #D0A0A8 15%,
        #EDE2E6 35%,
        #F5EEF0 50%,
        #DDD0D4 65%,
        #C8909A 80%,
        #D0A0A8 100%
    );
    background-size: 300% 300%;
    animation: scheduleFlow 12s ease infinite;
    position: relative;
}

@keyframes scheduleFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.schedule::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--rose-deep), transparent);
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-sm);
    border-bottom: 1px solid var(--border);
    border-radius: 6px;
    position: relative;
    transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.schedule-item:last-child { border-bottom: none; }

.schedule-item:hover {
    background: rgba(208, 160, 168, 0.12);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    box-shadow: 0 2px 8px rgba(60, 30, 40, 0.05);
}

.schedule-time {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.97rem;
}

.schedule-content h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
}

.schedule-item.break .schedule-content h3 {
    color: var(--text-light);
    font-style: italic;
    font-weight: 400;
}

.schedule-item.highlight {
    background: rgba(192, 128, 136, 0.12);
    border-left: 4px solid var(--rose-deep);
    padding-left: var(--spacing-md);
    border-radius: 8px;
}

.schedule-item.highlight .schedule-content h3 {
    color: var(--primary);
    font-weight: 700;
}

/* ===========================
   Organizers Section
   =========================== */

.organizers {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(165deg, #B07080 0%, #B88088 20%, #C09098 45%, #D0B0B8 65%, #C08088 85%, #A87880 100%);
    position: relative;
}

.organizers::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--rose-soft), transparent);
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.organizer-card {
    background: linear-gradient(145deg, #FAF5F6 0%, #F5EEF0 35%, #EDE2E6 70%, #DDD0D4 100%);
    padding: var(--spacing-lg);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(60, 30, 40, 0.12), inset 0 1px 0 rgba(255,255,255,0.6);
    text-align: center;
    border: 1.5px solid rgba(176, 152, 168, 0.4);
    position: relative;
    overflow: hidden;
}

.organizer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--rose-deep), var(--rose-mid), var(--accent-light));
}

.organizer-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--rose-mid);
    box-shadow: 0 4px 14px rgba(60, 30, 40, 0.12);
}

.organizer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organizer-name {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

.organizer-name a {
    color: var(--primary);
    border-bottom: 1.5px solid transparent;
    transition: border-color var(--ease), color var(--ease);
}

.organizer-name a:hover {
    color: var(--rose-deep);
    border-bottom-color: var(--rose-deep);
}

.organizer-title {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.organizer-affiliation {
    font-size: 0.84rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.organizer-email {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    color: var(--primary-light);
    padding: 6px var(--spacing-md);
    background: linear-gradient(135deg, #EDE2E6, #D8C0C8);
    border-radius: 6px;
    border: 1px solid rgba(176, 112, 128, 0.25);
    transition: all var(--ease);
}

.organizer-email:hover {
    background: linear-gradient(135deg, var(--rose-deep), var(--rose-mid));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(60, 30, 40, 0.18);
}

/* ===========================
   Sponsors Section
   =========================== */

.sponsors {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(145deg, #F5EEF0 0%, #EDE2E6 45%, #DDD0D4 100%);
    position: relative;
}

.sponsors::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--rose-soft), transparent);
}

.sponsors-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-item {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    padding: var(--spacing-lg);
    background: rgba(255,255,255,0.72);
    border-radius: 12px;
    border: 1px solid rgba(176, 112, 128, 0.18);
    box-shadow: 0 2px 10px rgba(60, 30, 40, 0.07);
    transition: transform var(--ease-md), box-shadow var(--ease-md), background var(--ease-md);
    text-align: center;
}

.sponsor-item:hover {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 6px 22px rgba(60, 30, 40, 0.12);
    transform: translateY(-4px);
}

.sponsor-item h3 {
    font-size: 1.05rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

.sponsor-item h3 a {
    color: var(--primary);
    border-bottom: 2px solid transparent;
    transition: all var(--ease);
}

.sponsor-item h3 a:hover {
    color: var(--rose-deep);
    border-bottom-color: var(--rose-deep);
}

.sponsor-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

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

.footer {
    background: linear-gradient(135deg, #2A1E26 0%, #4E3040 35%, #3E2435 65%, #4E3040 100%);
    color: var(--rose-paler);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--rose-deep), var(--rose-mid), var(--accent-light), var(--rose-mid), var(--rose-deep));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer h3, .footer h4 {
    color: var(--rose-paler);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.footer p { line-height: 1.8; opacity: 0.88; }

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: var(--spacing-sm); }

.footer-links a {
    color: var(--rose-paler);
    opacity: 0.82;
    transition: opacity var(--ease);
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.15);
    opacity: 0.7;
    font-size: 0.88rem;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    html { font-size: 13px; }

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

    .nav-toggle { display: flex; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--rose-paler);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-menu.active { display: flex; }

    .nav-menu li { margin: var(--spacing-xs) 0; }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }

    .schedule-time { font-size: 0.9rem; }

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

    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    /* Hero mobile */
    .hero {
        min-height: 100svh;
        align-items: flex-start;
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .hero-content {
        padding: 0 20px;
        gap: 0;
    }

    /* Eyebrow — allow wrapping, tighten spacing */
    .hero-eyebrow {
        gap: 12px;
        margin-bottom: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-eyebrow-text {
        font-size: 10px;
        letter-spacing: 0.12em;
        white-space: normal;
        text-align: center;
    }

    .hero-eyebrow-line { display: none; }

    /* Title */
    .hero-title {
        margin-bottom: 24px;
    }

    .hero-title-top  { font-size: clamp(18px, 5vw, 28px); }
    .hero-title-main { font-size: clamp(52px, 15vw, 86px); }

    /* Meta row — stack vertically, tighter padding */
    .hero-meta {
        flex-direction: column;
        border-radius: 14px;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .hero-meta-badge {
        padding: 14px 20px;
        gap: 14px;
    }

    .hero-meta-icon { font-size: 22px; }

    .hero-meta-divider { width: 100%; height: 1px; align-self: auto; }

    .hero-meta-value { font-size: 17px; }

    .hero-meta-label { font-size: 9px; }

    /* Stats row — keep horizontal but shrink padding */
    .hero-stats {
        flex-direction: row;
        border-radius: 14px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-stat {
        padding: 16px 8px;
        flex: 1;
        gap: 4px;
    }

    .hero-stat-sep { width: 1px; height: auto; align-self: stretch; }

    .hero-stat-number { font-size: 32px; }

    .hero-stat-label {
        font-size: 9px;
        letter-spacing: 0.08em;
    }

    /* Tagline */
    .hero-tagline {
        font-size: 14px;
        letter-spacing: 0.06em;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--spacing-sm); }

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

    .sponsors-list { flex-direction: column; gap: var(--spacing-sm); }

    .sponsor-item { min-width: 100%; max-width: 100%; }

    /* Very small phones — stack stats vertically */
    .hero-stats { flex-direction: column; }

    .hero-stat { padding: 12px 20px; width: 100%; }

    .hero-stat-sep { width: 100%; height: 1px; align-self: auto; }

    .hero-stat-number { font-size: 28px; }

    .hero-title-main { font-size: clamp(48px, 16vw, 72px); }
}

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

@media (prefers-reduced-motion: reduce) {
    *, .hero-orb, .hero-scroll-cue {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

a:focus, button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Print */
@media print {
    .navbar, .footer { display: none; }
    body { font-size: 12pt; }
    a { text-decoration: underline; }
}
