/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: hidden;
    background: #f0f0f0;
    color: #0B022A;
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: #0B022A;
    color: #fff;
}

/* ---- Splash Intro (homepage) ---- */
.splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.splash-logo {
    width: clamp(200px, 30vw, 360px);
    height: auto;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.splash-logo.show {
    opacity: 1;
}

.splash-tagline {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.6vw, 20px);
    color: #0B022A;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: nowrap;
    padding: 0 24px;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
}

.splash-tagline.show {
    opacity: 1;
}

.splash.fade-out {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

/* ---- Navigation ---- */
.nav {
    position: relative;
    z-index: 100;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 12px 0;
}

/* ---- Fixed Nav (scroll) ---- */
.nav-fixed {
    position: fixed;
    top: -100px;
    left: 40px;
    right: 40px;
    z-index: 200;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.nav-fixed.visible {
    transform: translateY(100px);
}

.nav-fixed-logo {
    height: 28px;
    width: auto;
    margin-right: 24px;
    display: block;
}

.nav-fixed > a {
    display: flex;
    align-items: center;
}

.nav-fixed .nav-countdown {
    margin-left: auto;
    margin-right: 20px;
}

.nav-fixed .nav-cta {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: #0B022A;
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid #0B022A;
    transition: all 0.2s ease;
}

.nav-fixed .nav-cta:hover {
    background: transparent;
    color: #0B022A;
}

.nav-fixed .nav-links {
    padding-top: 0;
    margin: 0;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    margin-right: 24px;
    order: -1;
}

.nav-logo-mobile-only {
    display: none !important;
}

.nav.menu-open .nav-logo-mobile-only {
    display: flex !important;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0B022A;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-links a.nav-primary,
.nav-mobile a.nav-primary {
    font-weight: 700;
}

.nav-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nav-countdown {
    margin-left: auto;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-right: 20px;
}

.nav > .nav-cta {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: #0B022A;
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid #0B022A;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: transparent;
    color: #0B022A;
}

/* ---- Hamburger ---- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 18px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0B022A;
    transition: all 0.25s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

.nav-mobile {
    display: none;
}


.nav-active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ---- Wrapper ---- */
.wrapper {
    margin: 0;
    padding: 0 40px 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ---- Card ---- */
.card {
    background: #fff;
}

.card-padded {
    padding: clamp(20px, 2.5vw, 32px) clamp(12px, 2vw, 20px) clamp(32px, 4vw, 56px);
}

.card-text {
    padding: clamp(20px, 2.5vw, 32px) clamp(12px, 2vw, 20px) clamp(96px, 12vw, 160px);
}

.card-centered {
    text-align: center;
}

.card-centered .charity-desc {
    margin: 0 auto;
}

/* ---- Label ---- */
.label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 12px;
}

/* ---- Hero Wrap (homepage) ---- */
.hero-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: clip;
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
}

.hero-logo-area {
    position: absolute;
    top: clamp(16px, 2vw, 40px);
    left: 40px;
    width: 160vw;
    will-change: transform;
    pointer-events: none;
}

.hero-logo-area img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Hero Statement ---- */
.hero-statement {
    padding: clamp(20px, 2.5vw, 32px) clamp(12px, 2vw, 20px) clamp(96px, 12vw, 160px);
    position: relative;
    margin-top: 17vw;
    z-index: 1;
}

.hero-statement h1 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 3.8vw, 52px);
    line-height: 1;
    letter-spacing: 0;
    max-width: 66%;
}

.hero-italic {
    font-style: italic;
}

.hero-bold {
    font-weight: 500;
}

.venue-arrow {
    position: absolute;
    bottom: clamp(24px, 3vw, 40px);
    right: clamp(16px, 2.5vw, 32px);
    width: 28px;
    height: 28px;
}

/* ---- Event Details ---- */
.event-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    align-items: stretch;
}

.event-detail-item {
    background: #fff;
    padding: clamp(20px, 3vw, 40px) clamp(16px, 2.5vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.event-detail-item .label {
    color: #0B022A;
    opacity: 0.5;
}

.event-date {
    background: #FE2A2E;
    color: #0B022A;
}

.event-venue {
    background: #C500AB;
    color: #0B022A;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.detail-value {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(22px, 2.8vw, 38px);
    line-height: 1.2;
    letter-spacing: 0;
}

.venue-link:hover .detail-value .hero-word {
    text-decoration: underline;
}
.venue-link:hover .detail-value {
    text-decoration: underline;
}

/* ---- About (Typewriter) ---- */
.about-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2.2vw, 32px);
    line-height: 1.3;
    letter-spacing: 0;
    max-width: 960px;
}

.about-text + .about-text {
    margin-top: 16px;
}

.about-text .word {
    color: #ddd;
    transition: color 0.2s ease;
}

.about-text .word.visible {
    color: #0B022A;
}

/* Typewriter word animation (homepage) */
#typewriter .word,
#typewriter-venue .word,
#typewriter-follow .word {
    display: inline-block;
    color: #ddd;
    opacity: 0.4;
    transform: translateY(8px);
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#typewriter .word.visible,
#typewriter-venue .word.visible,
#typewriter-follow .word.visible {
    color: #0B022A;
    opacity: 1;
    transform: translateY(0);
}

/* ---- Image Section ---- */
.image-section {
    overflow: hidden;
}

.image-section img,
.image-section video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ---- Carousel ---- */
.carousel {
    overflow: hidden;
    cursor: grab;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.carousel-progress {
    width: 100%;
    height: 3px;
    background: #ddd;
}

.carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: #0B022A;
}

/* ---- Program ---- */
/* ---- Speakers Grid ---- */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.speaker-card {
    text-align: left;
}

.speaker-photo {
    width: 100%;
    background: #f0f0f0;
    margin-bottom: 12px;
    overflow: hidden;
}

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

.speaker-name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 2px;
}

.speaker-role {
    font-size: 12px;
    color: #999;
}

/* ---- Stories Grid ---- */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.story-card {
    display: block;
    text-decoration: none;
    color: #0B022A;
    background: #fff;
    overflow: hidden;
}

.story-card-image {
    overflow: hidden;
}

.story-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.stories-grid .story-card:nth-child(2) { transition-delay: 0.1s; }
.stories-grid .story-card:nth-child(3) { transition-delay: 0.2s; }
.stories-grid .story-card:nth-child(4) { transition-delay: 0.3s; }

.story-card:hover img {
    transform: scale(1.04);
}

.story-card-info {
    padding: 16px 8px 12px;
}

.story-card-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 40px;
}

.story-card-date {
    display: none;
}

.story-card-link {
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    color: #0B022A;
    transition: text-decoration 0.2s ease;
}

.story-card:hover .story-card-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---- Stats ---- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.stat-item {
    background: #fff;
    padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2.5vw, 32px);
}

.stat-number {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 3.8vw, 52px);
    line-height: 1;
}

.stat-desc {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

a.stat-item .stat-number {
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s ease;
}

a.stat-item:hover .stat-number {
    text-decoration-color: #0B022A;
}

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

.social-links a.stat-item {
    position: relative;
    text-decoration: none;
    color: #0B022A;
}

.social-links .stat-number {
    font-size: clamp(18px, 2vw, 28px);
}

.social-link-arrow {
    position: absolute;
    top: clamp(20px, 2.5vw, 32px);
    right: clamp(16px, 2.5vw, 32px);
    fill: #0B022A;
}

/* ---- Section Title ---- */
.section-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 3.8vw, 52px);
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 24px;
}

/* ---- Testimonial Hero ---- */
.testimonial-hero {
    background: #FE2A2E;
    padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2.5vw, 32px);
}

.testimonial-hero-quote {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.15;
    color: #0B022A;
    max-width: 900px;
    margin-bottom: clamp(120px, 16vw, 240px);
}

.testimonial-hero-author {
    font-size: 14px;
    font-weight: 500;
    color: #0B022A;
}

.testimonial-hero-role {
    font-size: 13px;
    color: rgba(11, 2, 42, 0.5);
}

/* ---- Mission / Charity ---- */
.mission-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.two-col {
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
}

.mission-value {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 34px);
    line-height: 1.25;
    letter-spacing: 0;
}

.mission-value-spaced {
    margin-bottom: clamp(24px, 3vw, 40px);
}

/* ---- Venue ---- */
.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.venue-image {
    background: #e8e8e8;
    min-height: 300px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.venue-info {
    background: #fff;
    padding: clamp(20px, 2.5vw, 32px) clamp(12px, 2vw, 20px) clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 34px);
    line-height: 1.2;
    margin-bottom: 16px;
}

.venue-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    max-width: 480px;
}

/* ---- Charity ---- */
.charity-highlight {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 34px);
    line-height: 1.25;
    margin-bottom: 16px;
}

.charity-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    max-width: 640px;
}

/* ---- FAQ ---- */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
}

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

.faq-question {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-toggle {
    font-size: 18px;
    color: #ccc;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 8px;
}

/* ---- Page Hero (subpages) ---- */
.page-hero {
    padding: clamp(12px, 1.5vw, 20px) clamp(12px, 2vw, 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 50vh;
}

.page-hero h1 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 62px);
    line-height: 1;
    letter-spacing: 0;
    max-width: 100%;
}

h1.display-title {
    font-size: clamp(56px, 10vw, 120px);
}

.label-flush {
    margin-bottom: 0;
}

/* ---- Page Hero Grid (program + stories split layout) ---- */
.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.page-hero-grid .page-hero {
    min-height: auto;
    justify-content: flex-start;
}

.page-hero-grid .page-hero .content-block {
    margin-top: clamp(128px, 16vw, 240px);
    padding-bottom: clamp(24px, 3vw, 40px);
}

.page-hero-grid .page-hero h1 {
    font-size: clamp(28px, 3.8vw, 52px);
}

.page-hero-image {
    min-height: 50vh;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero-grid:has(.content-block) .page-hero-image {
    min-height: 0;
    background: #fff;
}

.page-hero-grid:has(.content-block) .page-hero-image img {
    height: auto;
}

.label-overlay {
    margin: 0;
    color: #fff;
    position: absolute;
    top: clamp(12px, 1.5vw, 20px);
    left: clamp(12px, 2vw, 20px);
    z-index: 1;
}

.page-hero-accent {
    background: #C500AB;
    align-items: start;
}

/* ---- Content Block ---- */
.content-block {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    max-width: 700px;
}

.content-block h2 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 34px);
    line-height: 1.2;
    color: #0B022A;
    margin-bottom: 12px;
}

.content-block p + p {
    margin-top: 16px;
}

/* ---- Schedule (Paradiso-style) ---- */
.schedule-date {
    font-family: 'Inter Tight', sans-serif;
    font-style: italic;
    font-size: 15px;
    color: #999;
    margin-top: 8px;
    margin-bottom: 32px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
}

.schedule-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    padding: 20px 0;
    border-top: 1px solid #e8e8e8;
    align-items: baseline;
}

.schedule-row:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.schedule-time {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #999;
    padding-top: 2px;
}

.schedule-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 26px);
    color: #0B022A;
}

.schedule-desc {
    font-size: 14px;
    color: #999;
    margin-top: 4px;
}

/* ---- Legacy timeline (keep for other pages) ---- */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.timeline-time {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #999;
}

.timeline-content {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 24px);
}

.timeline-desc {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

/* ---- Talk List (past-editions) ---- */
.talk-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.talk-item {
    display: grid;
    grid-template-columns: clamp(140px, 18vw, 240px) 1fr auto;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    padding: clamp(16px, 2vw, 24px) 0;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s ease;
}

.talk-item:first-child {
    padding-top: 0;
}

.talk-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.talk-item:hover {
    opacity: 0.65;
}

.talk-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.talk-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.talk-year {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
}

.talk-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.3;
}

.talk-speaker {
    font-size: 14px;
    color: #777;
}

.talk-arrow {
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #888;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.talk-arrow svg {
    width: 14px;
    height: 14px;
}

/* ---- Contact ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
}

.contact-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 4vw, 56px);
}

.contact-item {
    margin-bottom: 0;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-heading {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.25;
    margin-bottom: 8px;
}

.contact-detail {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.contact-detail a {
    color: #0B022A;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-detail a:hover {
    opacity: 0.7;
}

/* ---- Article (stories) ---- */
.article-lead {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.35;
    color: #0B022A;
    max-width: 700px;
}

.back-link {
    color: #C500AB;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.pull-quote {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 34px);
    line-height: 1.25;
    color: #0B022A;
    border-left: 3px solid #0B022A;
    padding-left: clamp(16px, 2vw, 24px);
    margin: 56px 0 16px;
}

.content-block h2 {
    font-size: clamp(16px, 1.8vw, 22px);
    margin-top: 40px;
}

.content-block h3 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.4vw, 18px);
    margin-top: 28px;
    margin-bottom: 8px;
    color: #0B022A;
}

/* ---- Floating Video Preview ---- */
.video-float {
    position: fixed;
    bottom: 32px;
    right: 40px;
    width: 340px;
    z-index: 150;
    background: #fff;
    border-radius: 0;
    padding: 10px;
    cursor: pointer;
    transform: translateX(calc(100% + 60px));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-float.is-visible {
    transform: translateX(0);
}

.video-float-preview {
    position: relative;
    overflow: hidden;
}

.video-float video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.video-float-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: none;
    border-radius: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.video-float-play svg {
    fill: #0B022A;
}

.video-float-preview:hover .video-float-play {
    background: #0B022A;
}

.video-float-preview:hover .video-float-play svg {
    fill: #fff;
}

.video-float-close {
    position: absolute;
    top: 0;
    right: -36px;
    width: 28px;
    height: 28px;
    border-radius: 0;
    border: none;
    background: #fff;
    color: #0B022A;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.video-float-close:hover {
    background: #0B022A;
    color: #fff;
}

.video-float-label {
    font-size: 13px;
    color: #0B022A;
    opacity: 0.5;
    margin-top: 6px;
    line-height: 1;
}

.video-float-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #0B022A;
    margin-top: 1px;
    line-height: 1.2;
}

/* ---- Video Modal ---- */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 2, 42, 0.9);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: 92%;
    max-width: 1400px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.video-modal-close:hover {
    opacity: 0.7;
}

.video-modal-player {
    padding: 56.25% 0 0 0;
    position: relative;
}

/* ---- Sign Up for Updates ---- */
.footer-signup {
    background: #fff;
    padding: clamp(40px, 5vw, 64px) clamp(16px, 2.5vw, 32px);
}

.footer-signup-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-signup-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 3vw, 36px);
    color: #0B022A;
    white-space: nowrap;
}

.footer-signup-form {
    flex: 1;
    max-width: 560px;
}

.footer-signup-field {
    display: flex;
    border: 1px solid #ccc;
    background: #fff;
}

.footer-signup-field input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #0B022A;
    outline: none;
    background: transparent;
}

.footer-signup-field input::placeholder {
    color: #999;
}

.footer-signup-field button {
    background: #0B022A;
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.footer-signup-field button:hover {
    background: #1a0f4e;
}

/* ---- Site Footer ---- */
.site-footer {
    background: #0B022A;
}

.footer-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: clamp(40px, 5vw, 64px) clamp(16px, 2.5vw, 32px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.footer-address {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-email a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-email a:hover {
    opacity: 0.6;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px clamp(16px, 2.5vw, 32px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-legal {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.6;
}

.footer-credit {
    margin-left: 16px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

/* ---- Cookie Consent ---- */
.cookie-consent {
    position: fixed;
    bottom: 32px;
    left: 40px;
    width: 340px;
    z-index: 150;
    background: #fff;
    padding: 20px;
    transform: translateX(calc(-100% - 60px));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent.is-visible {
    transform: translateX(0);
}

.cookie-consent-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-consent-accept {
    background: #0B022A;
    color: #fff;
    border: 1px solid #0B022A;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-consent-accept:hover {
    background: transparent;
    color: #0B022A;
}

.cookie-consent-decline {
    background: transparent;
    color: #0B022A;
    border: 1px solid #0B022A;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-consent-decline:hover {
    background: #0B022A;
    color: #fff;
}

.cookie-consent-link {
    font-size: 11px;
    color: #999;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 4px;
}

/* ---- Screen-reader only (accessibility) ---- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- Homepage overrides (body.home) ---- */
.home .speakers-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4px;
    row-gap: 40px;
}

.home .speaker-photo {
    aspect-ratio: 3 / 4;
}

.home .speaker-photo img {
    transition: transform 0.4s ease;
}

.home .speaker-card:hover .speaker-photo img {
    transform: scale(1.04);
}

.home .speaker-name {
    font-size: 20px;
}

/* ---- Speakers page overrides ---- */
.page-speakers .speaker-photo {
    position: relative;
}

.page-speakers .speaker-photo img {
    filter: blur(12px);
    transform: scale(1.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-speakers .page-hero .label {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-speakers .page-hero .label.is-visible {
    opacity: 1;
}

.page-speakers .speaker-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 2, 42, 0.75);
}

.page-speakers .speaker-photo.loaded img {
    filter: none;
}

/* ---- Mobile inline nav (hidden on desktop) ---- */
.mobile-inline-nav {
    display: none;
}

/* ---- Responsive: 1200px ---- */
@media (max-width: 1200px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav {
        justify-content: space-between;
    }

    .nav-hamburger {
        order: -2;
    }

    .nav-logo-link {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-countdown {
        display: none;
    }

    .nav > .nav-cta {
        display: inline-block !important;
        order: 2;
        font-size: 10px;
        padding: 4px 6px;
        margin-left: auto;
    }

    .nav-mobile {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        padding: 112px 10px 40px;
        gap: 0;
        z-index: 199;
    }

    .nav-mobile.open {
        display: flex;
    }


    .nav.menu-open {
        position: fixed;
        top: 0;
        left: 10px;
        right: 10px;
        background: #fff;
        padding: 16px 0;
        z-index: 200;
        margin: 0;
    }

    .nav.menu-open .nav-hamburger,
    .nav.menu-open > .nav-cta {
        position: relative;
        z-index: 200;
    }

    .nav.menu-open .nav-logo-link {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        z-index: 200;
    }

    .nav-mobile a {
        font-family: 'Inter Tight', sans-serif;
        font-size: clamp(28px, 3.8vw, 52px);
        font-weight: 400;
        line-height: 1;
        color: #0B022A;
        text-decoration: none;
        padding: 12px 0;
        border-bottom: 1px solid rgba(11, 2, 42, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-mobile a:first-child {
        padding-top: 0;
    }

    .nav-mobile a:last-of-type {
        border-bottom: none;
    }

    .nav-mobile a::after {
        content: '\203A';
        font-size: 24px;
        font-weight: 300;
        opacity: 0.3;
    }

    .nav-mobile a.nav-primary {
        font-weight: 700;
    }


    .nav-mobile-details {
        margin-top: auto;
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .nav-mobile-details li {
        font-size: 13px;
        color: #999;
        line-height: 1.3;
    }

    .wrapper {
        padding: 0 10px 4px;
    }

    .hero-wrap {
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-logo-area {
        width: 340vw;
        left: 10px;
    }

    .nav-fixed {
        left: 10px;
        right: 10px;
    }

    .mobile-inline-nav {
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 24px 16px;
    }

    .mobile-inline-nav a {
        font-family: 'Inter Tight', sans-serif;
        font-size: clamp(28px, 3.8vw, 52px);
        font-weight: 400;
        line-height: 1;
        color: #0B022A;
        text-decoration: none;
        padding: 12px 0;
        border-bottom: 1px solid rgba(11, 2, 42, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-inline-nav a::after {
        content: '\203A';
        font-size: 24px;
        font-weight: 300;
        opacity: 0.3;
    }

    .mobile-inline-nav a:first-child {
        padding-top: 0;
    }

    .mobile-inline-nav a:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mobile-inline-nav a:nth-child(-n+2) {
        font-weight: 700;
    }

}

/* ---- Responsive: 768px ---- */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav {
        padding: 16px 0;
    }

    .nav-logo {
        height: 26px;
    }

    .nav-fixed {
        display: none !important;
    }

    .nav > .nav-cta {
        font-size: 10px;
        padding: 4px 6px;
    }

    .hero-statement {
        margin-top: 36vw;
    }

    .hero-statement h1 {
        max-width: 100%;
    }

    .event-details {
        grid-template-columns: 1fr;
    }

    .venue-arrow {
        width: 18px;
        height: 18px;
        bottom: 20px;
        right: 10px;
    }

    .speakers-grid,
    .home .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .home .card-padded h2 {
        margin-bottom: 20px !important;
    }

    .speaker-card {
        margin-bottom: 16px;
    }

    .speaker-name,
    .home .speaker-name {
        font-size: 13px;
        margin-top: 6px;
        margin-bottom: 1px;
    }

    .speaker-role {
        font-size: 11px;
    }

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

    .story-card-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

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

    .social-links {
        grid-template-columns: 1fr;
    }

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

    .venue-image {
        min-height: 200px;
    }

    .mission-grid,
    .two-col {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 16px;
    }

    .venue-desc,
    .charity-desc,
    .faq-answer {
        font-size: 16px;
    }

    .contact-grid,
    .contact-grid-horizontal {
        grid-template-columns: 1fr;
    }

    .video-float {
        display: none;
    }

    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        transform: none;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .cookie-consent.is-visible {
        transform: none;
        opacity: 1;
    }

    .page-hero-grid {
        grid-template-columns: 1fr !important;
    }

    .page-hero-grid .page-hero {
        padding-bottom: clamp(48px, 8vw, 80px);
    }

    .page-hero h1 {
        max-width: 100%;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }

    .schedule-row {
        grid-template-columns: 70px 1fr;
        gap: 16px;
        padding: 16px 0;
    }

    .talk-item {
        grid-template-columns: 100px 1fr;
        gap: 12px;
    }

    .talk-arrow {
        display: none;
    }

    .footer-signup-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .footer-signup-form {
        max-width: 100%;
    }

    .footer-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    /* Disable scroll reveal animations on mobile, keep hero/top only */
    .reveal,
    .reveal-scale,
    .reveal-left,
    .reveal-clip-left,
    .reveal-clip-bottom {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }

    /* Homepage carousel stays hidden until JS intro sequence triggers it */
    .home .carousel.reveal {
        opacity: 1 !important;
        clip-path: polygon(0% 100%, 100% 200%, 100% 200%, 0% 100%) !important;
        transition: clip-path 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .home .carousel.reveal.is-visible {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    }
}

/* ---- Animations ---- */
@media (prefers-reduced-motion: no-preference) {
    /* ---- Shared: nav fade-in ---- */
    .nav {
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .nav.is-visible {
        opacity: 1;
    }

    /* ---- Shared: hero word stagger ---- */
    .hero-word {
        display: inline-block;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.2s ease-out,
                    transform 0.3s ease-out;
    }

    .hero-word.is-visible {
        opacity: 1;
        transform: none;
    }

    /* ---- Shared: scroll reveals ---- */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-scale {
        opacity: 0;
        transform: scale(0.96);
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-left {
        opacity: 0;
        transform: translateX(-32px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.is-visible,
    .reveal-scale.is-visible,
    .reveal-left.is-visible {
        opacity: 1;
        transform: none;
    }

    .reveal-clip-left {
        clip-path: inset(0 100% 0 0);
        transition: clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-clip-left.is-visible {
        clip-path: inset(0);
    }

    .reveal-clip-bottom {
        clip-path: inset(100% 0 0 0);
        transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-clip-bottom.is-visible {
        clip-path: inset(0);
    }

    /* ---- Subpage: page-clip reveal ---- */
    .page-clip,
    .about-clip {
        clip-path: polygon(0% 100%, 100% 200%, 100% 200%, 0% 100%);
        transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .page-clip.is-visible,
    .about-clip.is-visible {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    /* ---- Homepage: intro animations ---- */
    .hero-logo-area {
        clip-path: polygon(0% 100%, 100% 300%, 100% 300%, 0% 100%);
        transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-logo-area.is-visible {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .hero-statement {
        clip-path: polygon(0% 100%, 100% 200%, 100% 200%, 0% 100%);
        transition: clip-path 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-statement.is-visible {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .event-detail-item {
        clip-path: polygon(0% 100%, 100% 200%, 100% 200%, 0% 100%);
        transition: clip-path 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .event-detail-item.is-visible {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    /* ---- Speakers page: card reveal ---- */
    .page-speakers .speaker-card.reveal .speaker-name {
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s;
    }

    .page-speakers .speaker-card.reveal.is-visible .speaker-name {
        opacity: 1;
        transform: none;
    }
}
