    :root {
        --heritage-emerald: #064e3b;
        --heritage-gold: #d97706;
        --heritage-cream: #fdfcf0;
        --heritage-slate: #111827;
        --heritage-sand: #f3f1e7;
    }

    body {
        background-color: var(--heritage-cream);
        font-family: 'Montserrat', sans-serif;
        color: var(--heritage-slate);
    }

    h1,
    h2,
    h3,
    h4,
    .serif {
        font-family: 'Playfair Display', serif;
    }

    /* Hero Section */
    .editorial-hero {
        position: relative;
        height: 80vh;
        min-height: 500px;
        background: #022c22;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    /* Aurora Effect Layer */
    .aurora-layer {
        position: absolute;
        inset: -10%;
        background: radial-gradient(circle at 50% 50%, #059669 0%, transparent 50%),
            radial-gradient(circle at 100% 0%, #10b981 0%, transparent 50%),
            radial-gradient(circle at 0% 100%, #d97706 0%, transparent 50%);
        opacity: 0.4;
        filter: blur(60px);
        animation: aurora-slow 20s linear infinite;
        z-index: 1;
    }

    .hero-content {
        z-index: 10;
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-family: 'Noto Serif TC', serif;
        font-size: clamp(3rem, 10vw, 6rem);
        font-weight: 900;
        color: white;
        line-height: 0.9;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 600px;
        margin: 0 auto 2.5rem;
        font-weight: 300;
        letter-spacing: 0.05em;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Filters - Glassmorphism */
    .filter-section {
        margin-top: -40px;
        position: relative;
        z-index: 30;
    }

    .filter-container {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0.5rem;
        border-radius: 100px;
        display: inline-flex;
        gap: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        max-width: 90vw;
        overflow-x: auto;
        scrollbar-width: none;
        /* Firefox */
    }

    .filter-container::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }

    .filter-btn {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.6);
        position: relative;
        padding: 0.75rem 1.5rem;
        transition: all 0.3s ease;
        border-radius: 50px;
        white-space: nowrap;
    }

    .filter-btn.active {
        color: white;
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .filter-btn:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }

    /* Event Grid - Asymmetric Layout with Glassmorphism */
    .event-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
        margin-top: 5rem;
    }

    .event-item {
        grid-column: span 12;
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    @media (min-width: 768px) {
        .event-item:nth-child(even) {
            grid-column: span 5;
        }

        .event-item:nth-child(odd) {
            grid-column: span 7;
        }

        .event-item:nth-child(3n) {
            grid-column: span 12;
        }
    }

    .event-card-inner {
        background: white;
        border-radius: 2.5rem;
        padding: 2.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    .event-item:hover .event-card-inner {
        transform: translateY(-12px) scale(1.01);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
        border-color: var(--heritage-emerald);
    }

    .event-visual {
        width: 100%;
        height: 280px;
        border-radius: 1.75rem;
        margin-bottom: 2rem;
        overflow: hidden;
        position: relative;
    }

    .event-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s ease;
    }

    .event-item:hover .event-visual img {
        transform: scale(1.08);
    }

    .event-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .event-tag {
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: white;
        background: var(--heritage-emerald);
        padding: 0.4rem 1.2rem;
        border-radius: 2rem;
    }

    .event-date-editorial {
        font-family: 'Noto Serif TC', serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--heritage-gold);
    }

    .event-title-editorial {
        font-family: 'Noto Serif TC', serif;
        font-size: 2.75rem;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1.25rem;
        color: var(--heritage-slate);
    }

    .event-description-editorial {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #4b5563;
        margin-bottom: 2.5rem;
        flex-grow: 1;
    }

    .event-location-editorial {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.95rem;
        color: #6b7280;
        margin-bottom: 2.5rem;
        padding: 1.25rem;
        background: var(--heritage-sand);
        border-radius: 1.25rem;
    }

    .event-actions {
        display: flex;
        gap: 1rem;
    }

    .btn-editorial {
        font-size: 0.8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        border-radius: 1.25rem;
        padding: 1.25rem 2rem;
        flex: 1;
    }

    .btn-editorial-primary {
        background: var(--heritage-emerald);
        color: white;
    }

    .btn-editorial-text {
        color: var(--heritage-emerald);
        border: 2px solid var(--heritage-emerald);
    }

    .btn-editorial:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(6, 78, 59, 0.15);
    }

    /* Annual Highlights Section */
    .highlights-section {
        margin-top: 10rem;
        padding: 10rem 0;
        background: white;
        border-radius: 5rem;
    }

    .section-title {
        font-family: 'Noto Serif TC', serif;
        font-size: clamp(3rem, 10vw, 5.5rem);
        font-weight: 900;
        color: var(--heritage-slate);
        line-height: 1;
    }

    .highlight-card {
        background: var(--heritage-sand);
        border-radius: 2rem; /* Softened radius */
        overflow: hidden;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        border: 1px solid rgba(0, 0, 0, 0.03);
        display: flex;
        flex-direction: column;
    }

    .highlight-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 40px 80px rgba(6, 78, 59, 0.1);
        border-color: var(--heritage-gold);
    }

    .highlight-image {
        width: 100%;
        height: 300px; /* Increased height from aspect-ratio based */
        overflow: hidden;
        position: relative;
    }

    .highlight-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s ease;
    }

    .highlight-card:hover .highlight-image img {
        transform: scale(1.1);
    }

    /* Skeleton Shimmer */
    .shimmer {
        background: linear-gradient(90deg, #f3f1e7 25%, #ece9d8 50%, #f3f1e7 75%);
        background-size: 200% 100%;
        animation: shimmer-load 1.5s infinite;
    }

    @keyframes shimmer-load {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }

    .highlight-content {
        padding: 2rem; /* Reduced from 3rem to help with "forehead" */
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .highlight-month {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: var(--heritage-gold);
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        display: block;
        opacity: 0.8;
    }

    .highlight-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem; /* Increased size */
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--heritage-emerald);
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

    /* Newsletter - Immersive Glass */
    .subscription-banner {
        margin: 10rem 0;
        background: #022c22;
        padding: 12rem 2rem;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
        border-radius: 5rem;
    }

    .subscription-banner .aurora-layer {
        opacity: 0.2;
    }

    .subscription-title {
        font-family: 'Noto Serif TC', serif;
        font-size: clamp(3rem, 12vw, 6rem);
        font-weight: 900;
        margin-bottom: 2.5rem;
    }

    .editorial-input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 1.5rem 2rem;
        border-radius: 1.5rem;
        color: white;
        font-family: 'Noto Serif TC', serif;
        font-size: 1.25rem;
        width: 100%;
        max-width: 500px;
        text-align: center;
        transition: all 0.4s ease;
    }

    .editorial-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--heritage-gold);
        box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.2);
    }

    .btn-submit-heritage {
        background: white;
        color: #022c22;
        padding: 1.5rem 4rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.9rem;
        border-radius: 1.5rem;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        display: inline-block;
        margin-top: 2rem;
    }

    .btn-submit-heritage:hover {
        background: var(--heritage-gold);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .scroll-hint {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.75rem;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        opacity: 0.6;
        z-index: 10;
        transition: opacity 0.3s ease;
    }

    @media (max-width: 768px) {
        .scroll-hint {
            bottom: 6rem;
            opacity: 0.4;
        }
    }

    .mouse {
        width: 24px;
        height: 40px;
        border: 2px solid white;
        border-radius: 12px;
        position: relative;
    }

    .mouse::after {
        content: '';
        width: 4px;
        height: 4px;
        background: white;
        border-radius: 50%;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: scroll 2s infinite;
    }

    @keyframes scroll {
        0% {
            transform: translate(-50%, 0);
            opacity: 1;
        }

        100% {
            transform: translate(-50%, 15px);
            opacity: 0;
        }
    }

    /* Interactive Calendar Widget */
    .calendar-container {
        background: white;
        border-radius: 2rem;
        padding: 2.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
        max-width: 800px;
        margin: 0 auto;
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    .cal-month-title {
        font-family: 'Noto Serif TC', serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--heritage-slate);
        margin: 0;
    }

    .cal-nav-btn {
        background: var(--heritage-sand);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: var(--heritage-emerald);
        font-size: 1.25rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cal-nav-btn:hover {
        background: var(--heritage-emerald);
        color: white;
        transform: scale(1.1);
    }

    .calendar-grid-header {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        text-align: center;
        font-weight: 700;
        color: #9ca3af;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .calendar-days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 0.5rem;
    }

    .cal-day {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 1rem;
        font-weight: 600;
        color: var(--heritage-slate);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        background: transparent;
        border: 2px solid transparent;
    }

    .cal-day:hover:not(.empty) {
        background: var(--heritage-sand);
        transform: translateY(-2px);
    }

    .cal-day.empty {
        cursor: default;
    }

    .cal-day.today {
        border-color: var(--heritage-gold);
        color: var(--heritage-gold);
    }

    .cal-day.has-event::after {
        content: '';
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background: var(--heritage-emerald);
        border-radius: 50%;
    }

    .cal-day.active-filter {
        background: var(--heritage-emerald);
        color: white;
        border-color: var(--heritage-emerald);
    }

    .cal-day.active-filter.has-event::after {
        background: white;
    }
