﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --crimson: #6B0F1A;
    --crimson-deep: #4A0A12;
    --crimson-mid: #8B1525;
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-pale: #F5EDD6;
    --ivory: #FAF7F2;
    --warm-white: #FFFDF9;
    --ink: #1A1108;
    --ink-soft: #3D2F1E;
    --muted: #7A6A5A;
    --border: rgba(201,168,76,0.18);
    --border-soft: rgba(107,15,26,0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--ink);
    overflow-x: hidden;
}

    /* ─── NOISE TEXTURE OVERLAY ─── */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: 0.4;
    }

/* ─── HEADER ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background: rgba(250,247,242,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

    .nav.scrolled {
        height: 64px;
        background: rgba(250,247,242,0.96);
        box-shadow: 0 4px 40px rgba(107,15,26,0.06);
    }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo-emblem {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--crimson), var(--crimson-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-light);
    box-shadow: 0 4px 20px rgba(107,15,26,0.25);
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--crimson-deep);
    line-height: 1;
    letter-spacing: 0.02em;
}

.nav-logo-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

    .nav-links a {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--ink-soft);
        text-decoration: none;
        position: relative;
        transition: color 0.3s;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--crimson);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-email {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

    .nav-email:hover {
        color: var(--crimson);
    }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--crimson), var(--crimson-mid));
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(107,15,26,0.2);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(107,15,26,0.3);
    }

/* ─── HERO SLIDER ─── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--crimson-deep);
}

/* Track */
.hero-track {
    display: flex;
    height: 100%;
    transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
}

/* Individual slide */
.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

/* Left panel (content) */
.hs-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 72px 100px;
    z-index: 2;
    overflow: hidden;
}

/* Each slide tints the left panel differently */
.hero-slide:nth-child(1) .hs-left {
    background: linear-gradient(155deg, #3A0810 0%, #6B0F1A 55%, #8B1525 100%);
}

.hero-slide:nth-child(2) .hs-left {
    background: linear-gradient(155deg, #0D1F3C 0%, #1A3060 55%, #243D72 100%);
}

.hero-slide:nth-child(3) .hs-left {
    background: linear-gradient(155deg, #1A1108 0%, #3D2F1E 55%, #5A4530 100%);
}

.hero-slide:nth-child(4) .hs-left {
    background: linear-gradient(155deg, #0D2B1F 0%, #1A4A30 55%, #266040 100%);
}

/* Decorative circles */
.hs-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hs-orb-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}

.hs-orb-2 {
    width: 260px;
    height: 260px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.hs-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.09);
    pointer-events: none;
    width: 480px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Content elements */
.hs-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}

.hs-tag-line {
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.hs-tag-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hs-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(46px, 4.8vw, 72px);
    font-weight: 300;
    line-height: 1.06;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

    .hs-h1 em {
        font-style: italic;
        color: var(--gold-light);
    }

.hs-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.62);
    margin-bottom: 44px;
    padding-left: 22px;
    border-left: 2px solid rgba(201,168,76,0.5);
    line-height: 1.65;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease 0.32s, transform 0.55s ease 0.32s;
}

.hs-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.44s, transform 0.5s ease 0.44s;
}

/* Animate in active slide */
.hero-slide.is-active .hs-tag,
.hero-slide.is-active .hs-h1,
.hero-slide.is-active .hs-body,
.hero-slide.is-active .hs-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Right panel (image) */
.hs-right {
    position: relative;
    overflow: hidden;
}

    .hs-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1.06);
        transition: transform 7s ease;
        filter: saturate(0.85) contrast(1.08);
    }

.hero-slide.is-active .hs-right img {
    transform: scale(1);
}

.hs-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(60,10,15,0.35) 0%, transparent 45%), linear-gradient(to top, rgba(30,5,8,0.5) 0%, transparent 55%);
}

/* Stats bar pinned at bottom of image panel */
.hs-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 1px;
    background: rgba(201,168,76,0.15);
}

.hs-stat {
    flex: 1;
    background: rgba(10,5,5,0.72);
    backdrop-filter: blur(14px);
    padding: 18px 22px;
    border-top: 2px solid rgba(201,168,76,0.4);
    transition: background 0.3s;
}

    .hs-stat:hover {
        background: rgba(10,5,5,0.88);
    }

.hs-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 3px;
}

.hs-stat-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* ─── SLIDER CONTROLS ─── */
/* Progress bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    z-index: 20;
    width: 0%;
    transition: width 0s linear;
}

    .hero-progress.running {
        transition: width 5s linear;
        width: 100%;
    }

/* Side nav arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

    .hero-arrow:hover {
        background: rgba(201,168,76,0.2);
        border-color: rgba(201,168,76,0.5);
        transform: translateY(-50%) scale(1.06);
    }

.hero-arrow-prev {
    left: 28px;
}

.hero-arrow-next {
    right: 28px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    padding: 0;
}

    .hero-dot.is-active {
        width: 28px;
        border-radius: 3px;
        background: var(--gold);
    }

/* Slide counter */
.hero-counter {
    position: absolute;
    bottom: 32px;
    right: 90px;
    z-index: 20;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
}

    .hero-counter strong {
        color: rgba(255,255,255,0.85);
        font-weight: 600;
    }

/* Slide label strip on left edge */
.hero-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    z-index: 20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    white-space: nowrap;
    pointer-events: none;
}

/* Buttons shared */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-ghost:hover {
        border-color: var(--gold);
        color: var(--gold-light);
    }

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold), #B8912A);
    color: var(--crimson-deep);
    border: none;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(201,168,76,0.3);
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(201,168,76,0.4);
    }

@media (max-width: 1100px) {
    .hero-slide {
        grid-template-columns: 1fr;
    }

    .hs-right {
        height: 45vh;
    }

    .hs-left {
        padding: 120px 40px 60px;
    }

    .hero-slider {
        height: auto;
        min-height: 100vh;
    }

    .hero-track {
        height: auto;
    }

    .hero-slide {
        height: auto;
    }
}

@media (max-width: 768px) {
    .hs-left {
        padding: 100px 24px 56px;
    }

    .hero-arrow {
        display: none;
    }

    .hs-stats {
        display: none;
    }
}

/* ─── MARQUEE ─── */
.marquee-bar {
    background: var(--crimson-deep);
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── SECTIONS ─── */
.section {
    padding: 120px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-kicker-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-kicker-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 24px;
}

    .section-title em {
        font-style: italic;
        color: var(--gold);
    }

    .section-title span {
        color: var(--crimson);
    }

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

    .about-image-frame::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid var(--border);
        z-index: 2;
        pointer-events: none;
        border-radius: 2px;
    }

    .about-image-frame img {
        width: 100%;
        height: 640px;
        object-fit: cover;
        display: block;
        filter: saturate(0.9) contrast(1.05);
        transition: transform 0.8s ease;
    }

    .about-image-frame:hover img {
        transform: scale(1.03);
    }

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--crimson-deep), var(--crimson));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(107,15,26,0.4);
    border: 6px solid var(--warm-white);
    z-index: 3;
}

.about-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.about-badge-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    max-width: 90px;
    line-height: 1.4;
}

.about-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--border);
    border-radius: 2px;
    z-index: 0;
}

.about-content {
}

.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 28px;
}

.about-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 40px;
    padding-left: 24px;
    border-left: 2px solid var(--border-soft);
}

.about-director {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--ivory);
    border: 1px solid var(--border-soft);
    border-radius: 4px;
}

.about-director-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-pale);
    box-shadow: 0 4px 16px rgba(107,15,26,0.12);
    flex-shrink: 0;
}

.about-director-role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 4px;
}

.about-director-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
}

/* ─── PILLARS ─── */
.pillars {
    background: var(--crimson-deep);
    position: relative;
    overflow: hidden;
}

    .pillars::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .pillars::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.12);
}

.pillar-card {
    background: var(--crimson-deep);
    padding: 56px 44px;
    transition: background 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .pillar-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.4s ease;
    }

    .pillar-card:hover::before {
        width: 100%;
    }

    .pillar-card:hover {
        background: rgba(107,15,26,0.6);
    }

.pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.4s;
}

.pillar-card:hover .pillar-number {
    color: rgba(201,168,76,0.25);
}

.pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.pillar-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
}

/* ─── CALENDAR ─── */
.calendar-section {
    background: var(--ivory);
    position: relative;
}

    .calendar-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--border-soft);
    }

.calendar-header {
    text-align: center;
    margin-bottom: 64px;
}

.calendar-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.calendar-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}

.cal-sidebar {
    background: linear-gradient(180deg, var(--crimson) 0%, var(--crimson-deep) 100%);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(107,15,26,0.2);
}

.cal-sidebar-header {
    padding: 32px 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cal-year {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.cal-month {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    line-height: 0.9;
    letter-spacing: -1px;
}

.cal-sidebar-body {
    padding: 28px;
}

.cal-motto {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cal-sidebar-title {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.cal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.cal-pill {
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.02em;
}

.cal-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cal-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}

.cal-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

    .cal-legend-dot.angelus {
        background: #9F85D4;
    }

    .cal-legend-dot.feriado {
        background: var(--gold);
    }

    .cal-legend-dot.gestion {
        background: rgba(255,255,255,0.3);
    }

.cal-main {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-soft);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(107,15,26,0.06);
}

.cal-main-header {
    padding: 24px 32px;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-main-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    text-align: center;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--ivory);
    border-bottom: 1px solid var(--border-soft);
}

.cal-weekday {
    padding: 16px 8px;
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--crimson);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: rgba(107,15,26,0.04);
    padding: 1px;
}

.cal-day {
    background: #fff;
    padding: 14px 12px;
    min-height: 90px;
    position: relative;
    transition: background 0.2s ease;
}

    .cal-day:hover {
        background: var(--ivory);
    }

    .cal-day.empty {
        background: var(--ivory);
    }

.cal-day-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 6px;
}

.cal-day.has-event .cal-day-num {
    color: var(--crimson);
}

.cal-day-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 3px;
}

.cal-day-sub {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.3;
}

.cal-day-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
    padding: 2px 7px;
    border-radius: 2px;
    background: rgba(159,133,212,0.12);
    color: #6B51A8;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cal-day.gestion {
    background: rgba(239,239,239,0.5);
}

.cal-day.liturgia {
    background: rgba(243,229,215,0.5);
}

.cal-day.toe {
    background: rgba(242,216,224,0.5);
}

.cal-day.exalumnas {
    background: rgba(244,214,214,0.5);
}

/* ─── STATS ─── */
.stats-section {
    background: var(--warm-white);
    border-top: 1px solid var(--border-soft);
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stats-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 64px;
}

    .stats-title em {
        font-style: italic;
        color: var(--crimson);
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-soft);
    border: 1px solid var(--border-soft);
}

.stat-item {
    background: var(--warm-white);
    padding: 52px 40px;
    text-align: center;
    position: relative;
    transition: background 0.3s;
}

    .stat-item:hover {
        background: var(--ivory);
    }

    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--crimson);
        transition: width 0.4s ease;
    }

    .stat-item:hover::before {
        width: 60%;
    }

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--crimson);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-sup {
    font-size: 32px;
    color: var(--gold);
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ─── POPUP ─── */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,17,8,0.6);
    backdrop-filter: blur(4px);
    z-index: 9990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .popup-overlay.visible {
        opacity: 1;
        pointer-events: auto;
    }

.popup-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -48%) scale(0.97);
    width: min(520px, calc(100% - 32px));
    z-index: 9999;
    background: var(--warm-white);
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(107,15,26,0.25);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .popup-modal.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, -50%) scale(1);
    }

.popup-header {
    background: linear-gradient(135deg, var(--crimson-deep), var(--crimson));
    padding: 28px 32px;
    position: relative;
}

.popup-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.popup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
    line-height: 1;
}

    .popup-close:hover {
        background: rgba(255,255,255,0.2);
    }

.popup-body {
    padding: 28px 32px 32px;
}

.popup-date-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--ivory);
    border: 1px solid var(--border-soft);
    border-radius: 4px;
    margin-bottom: 24px;
}

.popup-date-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--crimson), var(--crimson-mid));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.popup-date-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
}

.popup-date-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
}

.popup-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.popup-dismiss {
    font-size: 12px;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

    .popup-dismiss input {
        accent-color: var(--crimson);
        cursor: pointer;
    }

/* ─── FOOTER ─── */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    position: relative;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
}

.footer-brand-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s;
    }

        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        font-size: 14px;
        color: rgba(255,255,255,0.45);
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: rgba(255,255,255,0.85);
        }

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 20px;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-info {
    font-size: 14px;
}

    .footer-contact-info a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.3s;
        display: block;
    }

        .footer-contact-info a:hover {
            color: #fff;
        }

    .footer-contact-info span {
        font-size: 11px;
        color: rgba(255,255,255,0.3);
        letter-spacing: 0.05em;
    }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-frame img {
        height: 460px;
    }

    .about-badge {
        right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .calendar-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .section {
        padding: 80px 0;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cal-weekday:nth-child(1), .cal-weekday:nth-child(7) {
        display: none;
    }

    .cal-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
