/* =====================================================
   THE EDUVERSE CONFERENCES — Professional stylesheet
   ===================================================== */

:root {
    --brand-red:      #b8232f;
    --brand-red-dark: #8e1822;
    --brand-red-soft: #f6dfe1;
    --ink:            #0f172a;
    --ink-soft:       #1e293b;
    --muted:          #475569;
    --muted-soft:     #64748b;
    --line:           #e2e8f0;
    --line-soft:      #eef2f6;
    --bg:             #ffffff;
    --bg-soft:        #f8fafc;
    --bg-deep:        #0b1020;
    --accent:         #b8232f;
    --radius-sm:      8px;
    --radius:         14px;
    --radius-lg:      22px;
    --maxw:           1360px;
    --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display:   'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-red-dark); }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.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;
}

.accent { color: var(--brand-red); }

/* =====================================================
   HEADER  —  editorial masthead
   ===================================================== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.94);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
            backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--line);
    transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { /* shadow removed; sticky header is flat */ }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 78px; gap: 40px;
}

/* ---- Brand (logo image + tagline) ---- */
.brand {
    display: inline-flex; align-items: center; gap: 14px;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 4px 0;
}
.brand-logo {
    display: block;
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.brand-sub {
    font-family: var(--font-display);
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: -0.005em;
    padding-left: 14px;
    border-left: 1px solid var(--line);
    line-height: 1;
}

/* ---- Navigation ---- */
.primary-nav { display: flex; align-items: center; }
.nav-panel {
    display: flex; align-items: center; gap: 36px;
}
.nav-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 30px;
}
.nav-item { position: relative; }
.nav-link {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color .25s ease;
}
.nav-link::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 4px;
    height: 1.5px;
    background: var(--brand-red);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.nav-link:hover { color: var(--brand-red); }
.nav-link:hover::after { transform: scaleX(1); }

/* ---- CTA ---- */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 20px;
    background: var(--brand-red);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--brand-red);
    transition: background .25s ease, border-color .25s ease, transform .15s ease;
}
.nav-cta:hover {
    background: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
    color: #fff;
    transform: translateY(-1px);
}
.nav-cta-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #fff;
}
.nav-cta svg { transition: transform .25s ease; }
.nav-cta:hover svg { transform: translateX(3px); }

/* ---- Mobile burger ---- */
.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    padding: 11px 10px;
    background: none; border: 0; cursor: pointer;
    flex-direction: column; justify-content: space-between;
    z-index: 60;
}
.nav-toggle-bar {
    display: block; width: 20px; height: 1.8px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .2s ease, background .25s ease;
    transform-origin: center;
}
.primary-nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.primary-nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.primary-nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* hide mobile footer when not on mobile */
.nav-mobile-footer { display: none; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
    .nav-list { gap: 22px; }
    .nav-link { font-size: 11px; letter-spacing: .18em; }
    .brand-sub { display: none; }
    .brand-logo { height: 40px; }
}

@media (max-width: 820px) {
    .header-inner { min-height: 68px; gap: 20px; }
    .nav-toggle { display: flex; }

    .nav-panel {
        position: fixed;
        top: 68px; left: 0; right: 0;
        height: calc(100dvh - 68px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 32px 28px 40px;
        gap: 0;
        opacity: 0; visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
        overflow-y: auto;
    }
    .primary-nav.is-open .nav-panel {
        opacity: 1; visibility: visible; transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        margin-bottom: 32px;
    }
    .nav-item { width: 100%; border-bottom: 1px solid var(--line); }
    .nav-link {
        display: flex; align-items: center; justify-content: space-between;
        width: 100%;
        padding: 22px 0;
        font-size: 13px;
    }
    .nav-link::after { display: none; }
    .nav-link::before {
        content: "→";
        position: absolute; right: 0; top: 50%;
        transform: translateY(-50%);
        font-family: var(--font-display);
        color: var(--brand-red);
        opacity: 0;
        transition: opacity .25s ease, right .25s ease;
        font-size: 18px;
    }
    .nav-link:hover::before { opacity: 1; right: -4px; }

    .nav-actions { width: 100%; }
    .nav-cta {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 12px;
    }

    .nav-mobile-footer {
        display: flex; flex-direction: column; gap: 12px;
        margin-top: auto; padding-top: 40px;
        border-top: 1px solid var(--line);
    }
    .nav-mobile-tagline {
        font-family: var(--font-display);
        font-size: 15px;
        font-style: italic;
        color: var(--muted);
    }
    .nav-mobile-contact {
        font-family: var(--font-sans);
        font-size: 11px; font-weight: 700;
        letter-spacing: .2em; text-transform: uppercase;
        color: var(--brand-red);
    }
}

@media (max-width: 480px) {
    .brand-logo { height: 36px; }
    .brand { gap: 10px; }
}

/* =====================================================
   HERO  —  editorial, image background, full viewport
   ===================================================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex; flex-direction: column;
    background-color: #07090f;
    color: #fff;
    isolation: isolate;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero-bg-image {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transform: scale(1.05);
    animation: heroBgZoom 30s ease-in-out infinite alternate;
}
@keyframes heroBgZoom {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-bg-overlay {
    position: absolute; inset: 0;
    background: rgba(7,9,15,0.95);
}

.hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 30% 40%, #000 20%, transparent 80%);
            mask-image: radial-gradient(ellipse 60% 60% at 30% 40%, #000 20%, transparent 80%);
}

/* ---- Body (content sits left-aligned with breathing room) ---- */
.hero-body {
    flex: 1;
    padding: 70px 0 60px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 1;
}

/* ---- Top eyebrow line (brand / divider / edition meta) ---- */
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    margin: 0 0 56px;
    animation: heroRise .9s cubic-bezier(.2,.7,.2,1) .05s both;
}
.hero-eyebrow-brand {
    display: inline-flex; align-items: baseline; gap: 8px;
    font-family: var(--font-display);
    white-space: nowrap;
}
.hero-eyebrow-brand em {
    font-style: italic;
    font-size: 17px;
    font-weight: 500;
    color: #ff6b78;
}
.hero-eyebrow-brand-mark {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: #fff;
}
.hero-eyebrow-sep {
    color: rgba(255,255,255,.4);
    font-size: 14px;
    line-height: 1;
}
.hero-eyebrow-meta {
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 600;
    letter-spacing: .24em; text-transform: uppercase;
    color: rgba(255,255,255,.75);
    white-space: nowrap;
}
.hero-eyebrow-meta sup { font-size: .75em; vertical-align: super; }

/* ---- Title (editorial poster) ---- */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 88px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
    font-weight: 600;
    color: #fff;
    max-width: 1000px;
}
.hero-title-line {
    display: block;
    animation: heroRise .95s cubic-bezier(.2,.7,.2,1) both;
}
.hero-title-line:nth-child(1) { animation-delay: .15s; }
.hero-title-line:nth-child(2) { animation-delay: .25s; }
.hero-title-line:nth-child(3) { animation-delay: .35s; }

@keyframes heroRise {
    0%   { opacity: 0; transform: translateY(28px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-title-accent em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(115deg, #ff5566 0%, #ff8da0 50%, #ffc36a 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    display: inline-block;
    padding-right: 0.12em;
}

/* ---- Lede ---- */
.hero-lede {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,.78);
    max-width: 440px;
    margin: 0 0 56px;
    animation: heroRise 1s cubic-bezier(.2,.7,.2,1) .45s both;
}

/* ---- Info row (Dates / Location / Partnership) ---- */
.hero-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    column-gap: 64px; row-gap: 18px;
    margin: 0 0 56px;
    padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
    max-width: 760px;
    animation: heroRise 1s cubic-bezier(.2,.7,.2,1) .55s both;
}
.hero-info-item {
    display: flex; flex-direction: column; gap: 8px;
    min-width: 0;
}
.hero-info-label {
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin: 0;
}
.hero-info-value {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 600;
    letter-spacing: -0.005em;
    color: #fff; margin: 0;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 26px; border-radius: 999px;
    font-weight: 600; font-size: 15px; letter-spacing: .01em;
    border: 1px solid transparent; cursor: pointer;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
    font-family: inherit;
}
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: #fff;
}
.btn-primary:hover {
    color: #fff;
    transform: translateY(-1px);
}
.btn-ghost {
    background: rgba(255,255,255,.6);
    color: var(--ink);
    border-color: var(--line);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--ink); background: #fff; }
.btn-full { width: 100%; }

/* Rectangular hero variant */
.btn.btn-rect {
    border-radius: 8px;
    padding: 19px 28px;
    font-size: 11.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    gap: 14px;
}
.btn-bullet {
    width: 7px; height: 7px; border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
}

/* Underlined text link CTA */
.btn-text-link {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 4px 12px;
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.4);
    transition: border-color .25s ease, color .25s ease;
    background: transparent;
}
.btn-text-link:hover { color: #fff; border-bottom-color: #fff; }
.btn-text-link svg { transition: transform .25s ease; }
.btn-text-link:hover svg { transform: translateY(3px); }

/* ---- CTA row ---- */
.hero-cta {
    display: flex; align-items: center; gap: 32px;
    flex-wrap: wrap;
    animation: heroRise 1s cubic-bezier(.2,.7,.2,1) .65s both;
}

/* ---- Bottom partners bar (inside hero) ---- */
.hero-partners-bar {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 24px 0;
    animation: heroRise 1s cubic-bezier(.2,.7,.2,1) .85s both;
}
.hero-partners-inner {
    display: flex; align-items: center; gap: 40px;
    flex-wrap: wrap;
}
.hero-partners-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: rgba(255,255,255,.7);
    white-space: nowrap;
}
.hero-partners-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #ff5566;
    animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50%      { opacity: .35; }
}

/* Desktop: wrappers are transparent — list flows in the parent flex row */
.hero-partners-track,
.hero-partners-track-inner {
    display: contents;
}
.hero-partners-list[aria-hidden="true"] { display: none; }

.hero-partners-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; align-items: center; gap: 36px;
    flex-wrap: wrap;
}
.hero-partners-list li {
    display: inline-flex; align-items: baseline; gap: 10px;
    position: relative;
    transition: opacity .25s ease;
}
.hero-partners-list li + li::before {
    content: "·";
    position: absolute; left: -22px; top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.35);
    font-size: 18px; line-height: 1;
}
.hero-partners-list li strong {
    font-family: var(--font-sans);
    font-size: 12px; font-weight: 800;
    letter-spacing: .22em; text-transform: uppercase;
    color: #fff;
}
.hero-partners-list li span {
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.55);
}
.hero-partners-list li:hover span { color: rgba(255,255,255,.85); }

/* Marquee animation (mobile only — declared once, gated below) */
@keyframes heroPartnersMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-body { padding: 60px 0 50px; }
    .hero-eyebrow { gap: 18px; margin-bottom: 44px; }
    .hero-eyebrow-meta { font-size: 10.5px; letter-spacing: .18em; }
    .hero-info { column-gap: 40px; }
    .hero-partners-inner { gap: 24px; }
    .hero-partners-list { gap: 28px; }
    .hero-partners-list li + li::before { left: -18px; }
}

@media (max-width: 720px) {
    .hero { min-height: 0; }
    .hero-body { padding: 50px 0 40px; }
    .hero-eyebrow {
        flex-wrap: wrap; gap: 14px;
        margin-bottom: 32px;
    }
    .hero-eyebrow-line { display: none; }
    .hero-eyebrow-meta { font-size: 10px; }
    .hero-title { margin-bottom: 28px; }
    .hero-info {
        grid-template-columns: 1fr;
        column-gap: 0; row-gap: 16px;
        padding: 20px 0;
        margin-bottom: 40px;
    }
    .hero-info-value { font-size: 17px; }
    .hero-cta { gap: 22px; }
    .btn.btn-rect { padding: 16px 22px; font-size: 11px; }
    /* ---- Partners → label stays, list becomes a horizontal marquee ---- */
    .hero-partners-bar { padding: 18px 0; }
    .hero-partners-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .hero-partners-label { align-self: flex-start; }

    .hero-partners-track {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    }
    .hero-partners-track-inner {
        display: flex;
        width: max-content;
        animation: heroPartnersMarquee 22s linear infinite;
    }
    .hero-partners-track-inner:hover { animation-play-state: paused; }

    .hero-partners-list,
    .hero-partners-list[aria-hidden="true"] {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        flex-shrink: 0;
    }
    .hero-partners-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        margin-right: 44px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    .hero-partners-list li::before { display: none !important; }
}

/* Pause the marquee for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-partners-track-inner { animation: none !important; }
}

/* ==================== SECTION SHARED ==================== */
.section { padding: 110px 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }

.section-eyebrow {
    display: inline-block; font-size: 13px; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase; color: var(--brand-red);
    margin-bottom: 16px;
}
.section-eyebrow.light { color: #f8d3d6; }

.section-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 4vw, 50px); line-height: 1.1;
    letter-spacing: -0.02em; margin: 0 0 18px; color: var(--ink);
}
.section-title.light { color: #fff; }

.section-sub {
    font-size: 18px; color: var(--muted); margin: 0;
}

/* =====================================================
   ABOUT  —  editorial feature layout
   ===================================================== */
.section-about {
    background: #fff;
    padding: 90px 0 100px;
    position: relative;
}

/* ---- Top eyebrow row (label / line / section marker) ---- */
.about-eyebrow {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 36px;
}
.about-eyebrow-label {
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
}
.about-eyebrow-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--line) 0%, rgba(15,23,42,0) 100%);
}
.about-eyebrow-meta {
    font-family: var(--font-display);
    font-size: 14px; font-style: italic;
    color: var(--muted);
    white-space: nowrap;
}

/* ---- Title ---- */
.about-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0 0 36px;
    font-weight: 600;
    color: var(--ink);
    max-width: 1000px;
}
.about-title-line { display: block; }
.about-title-accent em {
    font-style: italic;
    font-weight: 500;
    color: var(--brand-red);
}

/* ---- Body (two columns of body text) ---- */
.about-body {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    margin: 0 0 56px;
    max-width: 1100px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}
.about-lead {
    font-family: var(--font-display);
    font-size: clamp(20px, 1.7vw, 24px);
    line-height: 1.42;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.005em;
}
.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
    padding-top: 6px;
}

/* ---- Principles grid ---- */
.about-principles {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.about-principle {
    padding-top: 16px;
    border-top: 2px solid var(--ink);
    position: relative;
    transition: border-color .25s ease;
}
.about-principle:hover { border-top-color: var(--brand-red); }
.about-principle-num {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 12px;
}
.about-principle-title {
    font-family: var(--font-display);
    font-size: 21px; font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    transition: color .25s ease;
}
.about-principle:hover .about-principle-title { color: var(--brand-red); }
.about-principle-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

@media (max-width: 1024px) {
    .about-principles { grid-template-columns: repeat(2, 1fr); gap: 40px 36px; }
}

@media (max-width: 720px) {
    .section-about { padding: 90px 0 100px; }
    .about-eyebrow { gap: 14px; margin-bottom: 40px; }
    .about-eyebrow-label { font-size: 10.5px; letter-spacing: .18em; }
    .about-title { margin-bottom: 36px; }
    .about-body { gap: 28px; margin-bottom: 56px; padding-bottom: 36px; }
    .about-principles { grid-template-columns: 1fr; gap: 32px; }
}

/* =====================================================
   PHILOSOPHY  —  dark editorial statement
   ===================================================== */
.section-philosophy {
    background: #07090f;
    color: #fff;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.philosophy-bg {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(ellipse 700px 500px at 15% 25%, rgba(184,35,47,.22), transparent 60%),
        radial-gradient(ellipse 600px 400px at 85% 80%, rgba(225,29,72,.10), transparent 65%),
        linear-gradient(180deg, #07090f 0%, #0c0f18 100%);
}
.philosophy-bg::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 85%);
            mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 85%);
}

.philosophy-eyebrow {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 44px;
}
.philosophy-eyebrow-label {
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}
.philosophy-eyebrow-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,.25), rgba(255,255,255,0));
}
.philosophy-eyebrow-meta {
    font-family: var(--font-display);
    font-size: 14px; font-style: italic;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
}

.philosophy-quote {
    margin: 0 0 48px;
    max-width: 1100px;
    padding: 0;
}
.philosophy-line {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #fff;
    font-weight: 500;
    margin: 0 0 18px;
}
.philosophy-line:last-child { margin: 0; }
.philosophy-line em {
    font-style: italic;
    font-weight: 500;
    color: #fff;
}
.philosophy-line-accent {
    background: linear-gradient(115deg, #ff5566 0%, #ff8da0 50%, #ffc36a 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent !important;
    display: inline-block;
    padding-right: 0.08em;
}

.philosophy-footer {
    display: flex; align-items: center; gap: 18px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
    max-width: 1100px;
}
.philosophy-footer-bar {
    width: 40px; height: 2px;
    background: var(--brand-red);
    flex-shrink: 0;
}
.philosophy-footer-text {
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255,255,255,.65);
}

@media (max-width: 720px) {
    .section-philosophy { padding: 70px 0 80px; }
    .philosophy-eyebrow { gap: 14px; margin-bottom: 32px; }
    .philosophy-eyebrow-label { font-size: 10.5px; letter-spacing: .18em; }
    .philosophy-quote { margin-bottom: 36px; }
    .philosophy-line { margin-bottom: 14px; }
    .philosophy-footer { padding-top: 22px; }
}

/* =====================================================
   PILLARS  —  editorial contents list (TOC style)
   ===================================================== */
.section-pillars {
    background: #fff;
    padding: 90px 0 100px;
}

/* ---- Top eyebrow row ---- */
.pillars-eyebrow {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 36px;
}
.pillars-eyebrow-label {
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
}
.pillars-eyebrow-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--line), rgba(0,0,0,0));
}
.pillars-eyebrow-meta {
    font-family: var(--font-display);
    font-size: 14px; font-style: italic;
    color: var(--muted);
    white-space: nowrap;
}

/* ---- Title + intro (asymmetric two-column) ---- */
.pillars-head {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: end;
    margin: 0 0 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
    max-width: 1100px;
}
.pillars-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0;
    font-weight: 600;
    color: var(--ink);
}
.pillars-title-line { display: block; }
.pillars-title-accent em {
    font-style: italic;
    font-weight: 500;
    color: var(--brand-red);
}
.pillars-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
    padding-bottom: 6px;
}

/* ---- Pillar list (each row: number | title | description | arrow) ---- */
.pillars-list {
    list-style: none; padding: 0; margin: 0;
}
.pillars-item {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) minmax(0, 1.6fr) 32px;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: padding .25s ease, background .3s ease;
    position: relative;
}
.pillars-item:first-child { border-top: 1px solid var(--line); }
.pillars-item::before {
    content: "";
    position: absolute; left: 0; top: 50%;
    width: 0; height: 1px;
    background: var(--brand-red);
    transform: translateY(-50%);
    transition: width .35s ease;
    pointer-events: none;
}
.pillars-item:hover::before { width: 40px; }
.pillars-item:hover { padding-left: 56px; }

.pillars-num {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 500;
    color: var(--brand-red);
    line-height: 1;
    letter-spacing: -0.02em;
    padding-top: 4px;
}

.pillars-name {
    font-family: var(--font-display);
    font-size: clamp(22px, 1.8vw, 28px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0;
    padding-top: 2px;
    transition: color .25s ease;
}
.pillars-item:hover .pillars-name { color: var(--brand-red); }

.pillars-desc {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
    padding-top: 6px;
}

.pillars-arrow {
    display: grid; place-items: center;
    color: var(--muted-soft);
    padding-top: 8px;
    transition: color .25s ease, transform .35s ease;
}
.pillars-item:hover .pillars-arrow {
    color: var(--brand-red);
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .pillars-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
    .pillars-item {
        grid-template-columns: 60px 1fr 28px;
        gap: 20px;
    }
    .pillars-desc { grid-column: 2 / 4; padding-top: 8px; }
}

@media (max-width: 720px) {
    .section-pillars { padding: 70px 0 80px; }
    .pillars-eyebrow { gap: 14px; margin-bottom: 28px; }
    .pillars-head { padding-bottom: 28px; margin-bottom: 36px; }
    .pillars-title { font-size: 38px; }
    .pillars-item {
        grid-template-columns: 44px 1fr;
        gap: 14px;
        padding: 22px 0;
    }
    .pillars-item:hover { padding-left: 0; }
    .pillars-item:hover::before { width: 0; }
    .pillars-num { font-size: 22px; padding-top: 2px; }
    .pillars-name { font-size: 19px; }
    .pillars-desc { grid-column: 2 / 3; padding-top: 6px; font-size: 14.5px; }
    .pillars-arrow { display: none; }
}

/* =====================================================
   THEMES  —  dark editorial grid (4×2)
   ===================================================== */
.section-themes {
    background: #07090f;
    color: #fff;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.themes-bg {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(ellipse 700px 500px at 85% 20%, rgba(184,35,47,.20), transparent 60%),
        radial-gradient(ellipse 600px 400px at 15% 80%, rgba(225,29,72,.10), transparent 65%),
        linear-gradient(180deg, #07090f 0%, #0a0d15 100%);
}
.themes-bg::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 85%);
            mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 85%);
}

/* ---- Eyebrow ---- */
.themes-eyebrow {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 36px;
}
.themes-eyebrow-label {
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}
.themes-eyebrow-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,.25), rgba(255,255,255,0));
}
.themes-eyebrow-meta {
    font-family: var(--font-display);
    font-size: 14px; font-style: italic;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
}

/* ---- Head ---- */
.themes-head {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: end;
    margin: 0 0 56px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    max-width: 1100px;
}
.themes-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0;
    font-weight: 600;
    color: #fff;
}
.themes-title-line { display: block; }
.themes-title-accent em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(115deg, #ff5566 0%, #ff8da0 50%, #ffc36a 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    display: inline-block;
    padding-right: 0.08em;
}
.themes-intro {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
    margin: 0;
    padding-bottom: 6px;
}

/* ---- Grid (4 × 2) ---- */
.themes-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.16);
    border-left: 1px solid rgba(255,255,255,.16);
}
.themes-item {
    padding: 28px 26px 32px;
    border-right: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
    transition: background .3s ease;
    position: relative;
    overflow: hidden;
}
.themes-item::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff5566, #ffc36a);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.themes-item:hover {
    background: rgba(255,255,255,.025);
}
.themes-item:hover::before { transform: scaleX(1); }

.themes-num {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: #ff8da0;
    margin-bottom: 16px;
}
.themes-name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    transition: color .25s ease;
}
.themes-item:hover .themes-name { color: #ff8da0; }
.themes-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255,255,255,.6);
    margin: 0;
}

/* ---- Footer ---- */
.themes-footer {
    display: flex; align-items: center; gap: 18px;
    margin-top: 48px;
}
.themes-footer-bar {
    width: 40px; height: 2px;
    background: var(--brand-red);
    flex-shrink: 0;
}
.themes-footer-text {
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255,255,255,.65);
}

@media (max-width: 1024px) {
    .themes-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
    .themes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .section-themes { padding: 70px 0 80px; }
    .themes-eyebrow { gap: 14px; margin-bottom: 28px; }
    .themes-head { padding-bottom: 28px; margin-bottom: 36px; }
    .themes-grid { grid-template-columns: 1fr; }
    .themes-item { padding: 22px 20px 26px; }
    .themes-name { font-size: 17px; }
    .themes-footer { margin-top: 32px; }
}

/* =====================================================
   CALENDAR  —  editorial agenda (light)
   ===================================================== */
.section-calendar {
    background: #fff;
    padding: 90px 0 100px;
    position: relative;
}

/* ---- Eyebrow + head (same system) ---- */
.calendar-eyebrow {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 36px;
}
.calendar-eyebrow-label {
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
}
.calendar-eyebrow-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--line), rgba(0,0,0,0));
}
.calendar-eyebrow-meta {
    font-family: var(--font-display);
    font-size: 14px; font-style: italic;
    color: var(--muted);
    white-space: nowrap;
}

.calendar-head {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: end;
    margin: 0 0 56px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
    max-width: 1100px;
}
.calendar-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0;
    font-weight: 600;
    color: var(--ink);
}
.calendar-title-line { display: block; }
.calendar-title-accent em {
    font-style: italic;
    font-weight: 500;
    color: var(--brand-red);
}
.calendar-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
    padding-bottom: 6px;
}

/* ---- Entries ---- */
.calendar-list {
    display: flex; flex-direction: column;
}
.calendar-entry {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    padding: 56px 0;
    border-top: 1px solid var(--line);
    align-items: start;
}
.calendar-entry:last-child {
    border-bottom: 1px solid var(--line);
}

/* Date block */
.calendar-entry-date {
    display: flex; flex-direction: column;
    align-items: flex-start;
    position: sticky; top: 110px;
    padding-right: 24px;
    border-right: 1px solid var(--line);
}
.calendar-entry-edition {
    font-family: var(--font-sans);
    font-size: 10.5px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 20px;
}
.calendar-entry-edition sup { font-size: .75em; vertical-align: super; }

.calendar-entry-day {
    font-family: var(--font-display);
    font-size: clamp(72px, 8vw, 120px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.045em;
    color: var(--ink);
    display: inline-flex; align-items: baseline; gap: 4px;
}
.calendar-entry-day-end {
    font-size: 0.42em;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: -0.02em;
    margin-left: 6px;
}
.calendar-entry-month {
    font-family: var(--font-sans);
    font-size: 16px; font-weight: 800;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--brand-red);
    margin-top: 10px;
}
.calendar-entry-year {
    font-family: var(--font-display);
    font-size: 15px; font-style: italic;
    color: var(--muted);
    margin-top: 4px;
}

/* Body */
.calendar-entry-body { min-width: 0; }
.calendar-entry-partner {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
    border-radius: 999px;
    padding: 5px 12px;
    margin-bottom: 20px;
}
.calendar-entry-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 24px;
    max-width: 720px;
}
.calendar-entry-quote {
    position: relative;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 32px;
    padding-left: 20px;
    border-left: 3px solid var(--brand-red);
    max-width: 720px;
    font-weight: 500;
}
.calendar-entry-quote-mark {
    color: var(--brand-red);
    margin-right: 4px;
    font-weight: 600;
    opacity: .8;
}

.calendar-entry-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    column-gap: 56px; row-gap: 12px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 0 0 30px;
    max-width: 720px;
}
.calendar-entry-meta > div {
    display: flex; flex-direction: column; gap: 6px;
    min-width: 0;
}
.calendar-entry-meta dt {
    font-family: var(--font-sans);
    font-size: 10.5px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--muted-soft);
    margin: 0;
}
.calendar-entry-meta dd {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--ink); margin: 0;
}

.calendar-entry-actions {
    display: flex; align-items: center; gap: 28px;
    flex-wrap: wrap;
}
.calendar-entry-cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 17px 28px;
    background: var(--ink);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    border: 1px solid var(--ink);
    transition: background .25s ease, border-color .25s ease, transform .2s ease;
}
.calendar-entry-cta:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
    transform: translateY(-1px);
}
.calendar-entry-cta .btn-bullet {
    background: #fff;
}
.calendar-entry-cta svg { transition: transform .25s ease; }
.calendar-entry-cta:hover svg { transform: translateX(4px); }

.calendar-entry-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 4px;
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    transition: color .25s ease, border-color .25s ease;
}
.calendar-entry-secondary:hover {
    color: var(--brand-red);
    border-bottom-color: var(--brand-red);
}
.calendar-entry-secondary svg { transition: transform .25s ease; }
.calendar-entry-secondary:hover svg { transform: translate(2px, -2px); }

/* Footer */
.calendar-footer {
    display: flex; align-items: center; gap: 18px;
    margin-top: 48px;
}
.calendar-footer-bar {
    width: 40px; height: 2px;
    background: var(--brand-red);
    flex-shrink: 0;
}
.calendar-footer-text {
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .calendar-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
    .calendar-entry {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0;
    }
    .calendar-entry-date {
        position: static;
        flex-direction: row;
        align-items: baseline;
        gap: 18px;
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-bottom: 20px;
    }
    .calendar-entry-edition { order: -1; flex: 1 0 100%; margin-bottom: 6px; }
    .calendar-entry-day { font-size: 64px; }
    .calendar-entry-month { margin-top: 0; }
    .calendar-entry-year { margin-top: 0; }
}

@media (max-width: 540px) {
    .section-calendar { padding: 70px 0 80px; }
    .calendar-eyebrow { margin-bottom: 28px; gap: 14px; }
    .calendar-head { padding-bottom: 28px; margin-bottom: 36px; }
    .calendar-entry { padding: 32px 0; gap: 22px; }
    .calendar-entry-title { font-size: 24px; }
    .calendar-entry-meta {
        grid-template-columns: 1fr;
        column-gap: 0; row-gap: 14px;
        padding: 18px 0;
    }
    .calendar-entry-actions { gap: 18px; flex-direction: column; align-items: flex-start; }
    .calendar-entry-cta, .calendar-entry-secondary { width: 100%; justify-content: center; }
}

.empty-state { text-align: center; color: var(--muted); padding: 40px; }

/* ==================== FOOTER ==================== */
.site-footer {
    background: #0a0f1c; color: #cbd5e1; padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
    display: inline-block; margin-bottom: 20px;
    text-decoration: none;
}
.footer-logo-img {
    display: block;
    height: 48px;
    width: auto;
    /* invert the dark-blue+red logo to read on the dark footer */
    filter: brightness(0) invert(1);
    opacity: .92;
    transition: opacity .25s ease;
}
.footer-logo:hover .footer-logo-img { opacity: 1; }
.footer-tag {
    font-family: var(--font-display); font-style: italic;
    color: #e2e8f0; font-size: 16px; margin: 0 0 8px; max-width: 360px;
}
.footer-sub { color: var(--muted-soft); font-size: 13.5px; max-width: 360px; margin: 0; line-height: 1.55; }

.footer-col h4 {
    color: #fff; font-size: 14px; letter-spacing: .12em;
    text-transform: uppercase; margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #cbd5e1; }
.footer-col a:hover { color: #fff; }
.footer-col li { font-size: 14.5px; }

.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--muted-soft);
}
.footer-quote {
    font-family: var(--font-display); font-style: italic; color: #cbd5e1;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
    .about-body { grid-template-columns: 1fr; gap: 28px; }
    .calendar-card { grid-template-columns: 1fr; gap: 24px; }
    .calendar-date { flex-direction: row; gap: 14px; padding: 16px 22px; justify-content: flex-start; }
    .date-day { font-size: 36px; }
    .date-month, .date-year { margin: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .section { padding: 80px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* respect motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */

/* Active nav state */
.nav-link.is-active { color: var(--brand-red); }
.nav-link.is-active::after { transform: scaleX(1); }

/* ---- Page-level hero (smaller than home hero) ---- */
.page-hero {
    background: #fff;
    padding: 80px 0 70px;
    border-bottom: 1px solid var(--line);
}
.page-hero-eyebrow {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 36px;
    max-width: 1100px;
}
.page-hero-eyebrow-label {
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--brand-red);
    white-space: nowrap;
}
.page-hero-eyebrow-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--line), rgba(0,0,0,0));
}
.page-hero-eyebrow-meta {
    font-family: var(--font-display);
    font-size: 14px; font-style: italic;
    color: var(--muted);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.6vw, 80px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0 0 30px;
    font-weight: 600;
    color: var(--ink);
    max-width: 1100px;
}
.page-hero-title-line { display: block; }
.page-hero-title-accent em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(115deg, var(--brand-red) 0%, #e11d48 55%, #f59e0b 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    display: inline-block;
    padding-right: 0.08em;
}

.page-hero-lede {
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.6;
    color: var(--muted);
    max-width: 740px;
    margin: 0 0 44px;
}

/* Table of contents */
.page-toc {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    display: flex; align-items: baseline; flex-wrap: wrap; gap: 22px 28px;
    max-width: 1100px;
}
.page-toc-label {
    font-family: var(--font-sans);
    font-size: 10.5px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--muted-soft);
}
.page-toc ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 16px 24px;
}
.page-toc a {
    font-family: var(--font-sans);
    font-size: 11.5px; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    transition: color .25s ease;
}
.page-toc a:hover { color: var(--brand-red); }

/* ---- About sections (alternating light/dark) ---- */
.about-section {
    padding: 90px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--line);
}
.about-section--inverse {
    background: #07090f;
    color: #fff;
    border-bottom: 0;
}
.about-section--inverse .about-section-bg {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(ellipse 700px 500px at 12% 25%, rgba(184,35,47,.20), transparent 60%),
        radial-gradient(ellipse 600px 400px at 88% 80%, rgba(225,29,72,.10), transparent 65%),
        linear-gradient(180deg, #07090f 0%, #0a0d15 100%);
}
.about-section--inverse .about-section-bg::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 85%);
            mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 85%);
}

/* Two-column grid: sticky head + flowing body */
.about-section-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}
.about-section-head {
    position: sticky;
    top: 110px;
}
.about-section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid currentColor;
}
.about-section--inverse .about-section-eyebrow { color: #ff8da0; }
.about-section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.4vw, 48px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0 0 14px;
}
.about-section--inverse .about-section-title { color: #fff; }
.about-section-sub {
    font-family: var(--font-display);
    font-size: 16px;
    font-style: italic;
    color: var(--muted);
    margin: 0;
    max-width: 240px;
}
.about-section--inverse .about-section-sub { color: rgba(255,255,255,.55); }

.about-section-body {
    max-width: 760px;
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--ink-soft);
}
.about-section--inverse .about-section-body { color: rgba(255,255,255,.78); }

.about-section-body p { margin: 0 0 22px; }
.about-section-body p:last-child { margin-bottom: 0; }
.about-section-body strong { color: var(--ink); font-weight: 600; }
.about-section--inverse .about-section-body strong { color: #fff; }

.about-lead {
    font-family: var(--font-display);
    font-size: clamp(20px, 1.6vw, 23px);
    line-height: 1.45;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.005em;
    margin: 0 0 32px;
}
.about-section--inverse .about-lead { color: #fff; }

.about-pullquote {
    margin: 36px 0;
    padding: 28px 0 28px 28px;
    border-left: 3px solid var(--brand-red);
    max-width: 720px;
}
.about-pullquote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.4;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
}
.about-pullquote em {
    background: linear-gradient(115deg, var(--brand-red) 0%, #e11d48 60%, #f59e0b 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    font-style: italic;
}

/* ---- Values list (Philosophy section) ---- */
.about-values {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}
.about-values li {
    display: flex; align-items: baseline; gap: 14px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.15);
}
.about-values li:nth-child(-n+2) { border-top: 1px solid rgba(255,255,255,.15); }
.about-values-num {
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: #ff8da0;
    flex-shrink: 0;
    min-width: 28px;
}
.about-values-text {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

/* ---- Differences list ---- */
.about-differences {
    list-style: none; padding: 0; margin: 0;
}
.about-differences li {
    padding: 28px 0;
    border-top: 1px solid var(--line);
}
.about-differences li:last-child { border-bottom: 1px solid var(--line); }
.about-differences-num {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 8px;
}
.about-differences-title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}
.about-differences li p {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.65;
}

/* ---- Pillars deep-dive ---- */
.about-pillars {
    list-style: none; padding: 0; margin: 0;
    counter-reset: pillar;
}
.about-pillar {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 32px;
    padding: 36px 0;
    border-top: 1px solid var(--line);
    align-items: start;
}
.about-pillar:last-child { border-bottom: 1px solid var(--line); }
.about-pillar-marker {
    padding-top: 6px;
}
.about-pillar-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    color: var(--brand-red);
    line-height: 1;
    letter-spacing: -0.03em;
}
.about-pillar-title {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
}
.about-pillar-desc {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
}

/* ---- Manifesto (Believes) ---- */
.about-manifesto {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column;
}
.about-manifesto li {
    display: flex; align-items: baseline; gap: 18px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.15);
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.3;
    color: rgba(255,255,255,.92);
    font-weight: 500;
}
.about-manifesto li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.about-manifesto li em {
    font-style: italic;
    color: #ff8da0;
}
.about-manifesto-mark {
    font-family: var(--font-display);
    color: var(--brand-red);
    font-size: 1.2em;
    flex-shrink: 0;
    line-height: 1;
}

/* ---- Leadership cards ---- */
.about-leadership-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}
.about-leadership-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
    background: #fff;
}
.about-leadership-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 10.5px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 16px;
}
.about-leadership-name {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600;
    color: var(--ink);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.about-leadership-role {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14.5px;
    color: var(--muted);
    margin: 0 0 16px;
}
.about-leadership-bio {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

/* ---- CTA block ---- */
.about-cta {
    background: #fafafa;
    padding: 80px 0 90px;
    border-top: 1px solid var(--line);
}
.about-cta-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-cta-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 14px;
}
.about-cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    font-weight: 600;
    margin: 0;
}
.about-cta-title em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(115deg, var(--brand-red) 0%, #e11d48 60%, #f59e0b 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    display: inline-block;
    padding-right: 0.08em;
}
.about-cta-actions {
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap;
    justify-self: end;
}

/* Light variant of text link for light backgrounds */
.btn-text-link--ink {
    color: var(--ink);
    border-bottom-color: var(--ink);
}
.btn-text-link--ink:hover {
    color: var(--brand-red);
    border-bottom-color: var(--brand-red);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-section-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-section-head { position: static; }
    .about-section-sub { max-width: none; }
    .about-cta-inner { grid-template-columns: 1fr; gap: 32px; }
    .about-cta-actions { justify-self: start; }
    .about-values { grid-template-columns: 1fr; }
    .about-leadership-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .page-hero { padding: 60px 0 50px; }
    .page-hero-eyebrow { margin-bottom: 28px; gap: 14px; }
    .page-toc { gap: 16px; }
    .about-section { padding: 70px 0 80px; }
    .about-pillar { grid-template-columns: 48px minmax(0, 1fr); gap: 18px; padding: 28px 0; }
    .about-pillar-num { font-size: 26px; }
    .about-pillar-title { font-size: 20px; }
    .about-cta { padding: 60px 0; }
}
