:root {
            /* Colors */
            --color-primary: #292524;
            --color-primary-active: #0c0a09;
            --color-ink: #0c0a09;
            --color-body: #4e4e4e;
            --color-body-strong: #292524;
            --color-muted: #777169;
            --color-muted-soft: #a8a29e;
            --color-hairline: #e7e5e4;
            --color-hairline-soft: #f0efed;
            --color-hairline-strong: #d6d3d1;
            --color-canvas: #ffffff;
            --color-canvas-soft: #fafafa;
            --color-surface-card: #ffffff;
            --color-surface-strong: #f0efed;
            --color-on-primary: #ffffff;
            --color-gradient-mint: #a7e5d3;
            --color-gradient-peach: #f4c5a8;
            --color-gradient-lavender: #c8b8e0;
            --color-gradient-sky: #a8c8e8;
            --color-gradient-rose: #e8b8c4;
            --color-semantic-success: #16a34a;
            --color-semantic-error: #dc2626;

            /* Spacing */
            --space-xxs: 4px;
            --space-xs: 8px;
            --space-sm: 12px;
            --space-base: 16px;
            --space-md: 20px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-xxl: 48px;
            --space-section: 96px;

            /* Rounded */
            --rounded-xs: 4px;
            --rounded-sm: 6px;
            --rounded-md: 8px;
            --rounded-lg: 12px;
            --rounded-xl: 16px;
            --rounded-xxl: 24px;
            --rounded-pill: 9999px;
            --rounded-full: 9999px;

            /* Elevation */
            --shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.04);
        }

        /* ============================================================
           RESET & BASE
           ============================================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.5;
            letter-spacing: 0.16px;
            color: var(--color-body);
            background-color: var(--color-canvas);
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul, ol {
            list-style: none;
        }

        /* ============================================================
           TYPOGRAPHY UTILITIES
           ============================================================ */
        .display-mega {
            font-family: 'EB Garamond', 'Times New Roman', serif;
            font-size: 64px;
            font-weight: 300;
            line-height: 1.05;
            letter-spacing: -1.92px;
            color: var(--color-ink);
        }
        .display-xl {
            font-family: 'EB Garamond', 'Times New Roman', serif;
            font-size: 48px;
            font-weight: 300;
            line-height: 1.08;
            letter-spacing: -0.96px;
            color: var(--color-ink);
        }
        .display-lg {
            font-family: 'EB Garamond', 'Times New Roman', serif;
            font-size: 36px;
            font-weight: 300;
            line-height: 1.17;
            letter-spacing: -0.36px;
            color: var(--color-ink);
        }
        .display-md {
            font-family: 'EB Garamond', 'Times New Roman', serif;
            font-size: 32px;
            font-weight: 300;
            line-height: 1.13;
            letter-spacing: -0.32px;
            color: var(--color-ink);
        }
        .display-sm {
            font-family: 'EB Garamond', 'Times New Roman', serif;
            font-size: 24px;
            font-weight: 300;
            line-height: 1.2;
            letter-spacing: 0;
            color: var(--color-ink);
        }
        .title-md {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.35;
            letter-spacing: 0;
            color: var(--color-ink);
        }
        .title-sm {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.44;
            letter-spacing: 0.18px;
            color: var(--color-ink);
        }
        .body-md {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.5;
            letter-spacing: 0.16px;
            color: var(--color-body);
        }
        .body-strong {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.5;
            letter-spacing: 0.16px;
            color: var(--color-body-strong);
        }
        .body-sm {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 400;
            line-height: 1.47;
            letter-spacing: 0.15px;
            color: var(--color-body);
        }
        .caption {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.5;
            letter-spacing: 0;
            color: var(--color-muted);
        }
        .caption-uppercase {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: 0.96px;
            text-transform: uppercase;
            color: var(--color-muted);
        }

        /* ============================================================
           CONTAINER
           ============================================================ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        /* ============================================================
           TOP NAVIGATION
           ============================================================ */
        .top-nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: var(--color-canvas);
            height: 64px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--color-hairline-soft);
            backdrop-filter: blur(12px);
            background-color: rgba(245, 245, 245, 0.92);
        }
        .top-nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .nav-brand {
            font-family: 'EB Garamond', serif;
            font-size: 22px;
            font-weight: 300;
            color: var(--color-ink);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: var(--space-xs);
        }
        .nav-brand .brand-icon {
            width: 32px;
            height: 32px;
            background: var(--color-primary);
            border-radius: var(--rounded-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-on-primary);
            font-size: 14px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
        }
        .nav-links a {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.4;
            letter-spacing: 0;
            color: var(--color-ink);
            position: relative;
            transition: color 0.2s ease;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--color-ink);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        /* Hamburger */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
        }
        .nav-hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--color-ink);
            transition: all 0.3s ease;
            border-radius: 1px;
        }
        .nav-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            background: rgba(245, 245, 245, 0.98);
            backdrop-filter: blur(20px);
            padding: var(--space-lg);
            border-bottom: 1px solid var(--color-hairline);
            z-index: 99;
            flex-direction: column;
            gap: var(--space-md);
            animation: slideDown 0.3s ease;
        }
        .mobile-menu.active {
            display: flex;
        }
        .mobile-menu a {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: var(--color-ink);
            padding: var(--space-sm) 0;
            border-bottom: 1px solid var(--color-hairline-soft);
        }
        .mobile-menu a:last-child {
            border-bottom: none;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============================================================
           BUTTONS
           ============================================================ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--color-primary);
            color: var(--color-on-primary);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.0;
            letter-spacing: 0;
            padding: 10px 20px;
            height: 40px;
            border-radius: var(--rounded-pill);
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.15s ease;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-primary:hover {
            background-color: var(--color-primary-active);
            transform: translateY(-1px);
        }
        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            color: var(--color-ink);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.0;
            letter-spacing: 0;
            padding: 9px 19px;
            height: 40px;
            border-radius: var(--rounded-pill);
            border: 1px solid var(--color-hairline-strong);
            cursor: pointer;
            transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-outline:hover {
            border-color: var(--color-ink);
            background-color: rgba(12, 10, 9, 0.03);
            transform: translateY(-1px);
        }

        /* ============================================================
           BADGE PILL
           ============================================================ */
        .badge-pill {
            display: inline-flex;
            align-items: center;
            background-color: var(--color-surface-strong);
            color: var(--color-ink);
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: 0.96px;
            text-transform: uppercase;
            border-radius: var(--rounded-pill);
            padding: 4px 10px;
        }

        /* ============================================================
           HERO BAND
           ============================================================ */
        .hero-band {
            position: relative;
            background-color: var(--color-canvas);
            padding: var(--space-section) 0;
            overflow: hidden;
            min-height: 75vh;
            display: flex;
            align-items: center;
        }

        /* Atmospheric gradient orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.45;
            pointer-events: none;
        }
        .hero-orb--mint {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--color-gradient-mint) 0%, transparent 70%);
            top: -100px;
            right: -80px;
            animation: orbDrift1 18s ease-in-out infinite;
        }
        .hero-orb--peach {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--color-gradient-peach) 0%, transparent 70%);
            bottom: -80px;
            left: -60px;
            animation: orbDrift2 22s ease-in-out infinite;
        }
        .hero-orb--lavender {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, var(--color-gradient-lavender) 0%, transparent 70%);
            top: 40%;
            left: 50%;
            transform: translateX(-50%);
            animation: orbDrift3 20s ease-in-out infinite;
        }

        @keyframes orbDrift1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-30px, 20px) scale(1.05); }
            66% { transform: translate(20px, -15px) scale(0.95); }
        }
        @keyframes orbDrift2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(25px, -20px) scale(1.08); }
            66% { transform: translate(-15px, 25px) scale(0.92); }
        }
        @keyframes orbDrift3 {
            0%, 100% { transform: translateX(-50%) translate(0, 0) scale(1); }
            33% { transform: translateX(-50%) translate(-20px, 15px) scale(1.06); }
            66% { transform: translateX(-50%) translate(15px, -20px) scale(0.94); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-label {
            margin-bottom: var(--space-lg);
            display: inline-block;
        }
        .hero-content h1 {
            margin-bottom: var(--space-lg);
        }
        .hero-subtitle {
            max-width: 560px;
            margin: 0 auto var(--space-xl);
        }
        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            flex-wrap: wrap;
        }

        /* Hero entrance animation */
        .hero-content .hero-label,
        .hero-content h1,
        .hero-content .hero-subtitle,
        .hero-content .hero-actions {
            opacity: 0;
            transform: translateY(24px);
            animation: fadeInUp 0.8s ease forwards;
        }
        .hero-content h1 { animation-delay: 0.1s; }
        .hero-content .hero-subtitle { animation-delay: 0.2s; }
        .hero-content .hero-actions { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hero Slider */
        .hero-slider-wrapper {
            margin: var(--space-xl) auto 0;
            max-width: 1200px;
            border-radius: var(--rounded-lg);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 10;
        }

        .hero-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .hero-slide {
            min-width: 100%;
            transition: opacity 0.5s ease;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 16/9;
            display: block;
        }

        /* Slider Controls */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--color-ink);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.2s ease;
            z-index: 2;
        }
        .slider-nav:hover {
            background: #ffffff;
            transform: translateY(-50%) scale(1.1);
        }
        .slider-prev {
            left: 16px;
        }
        .slider-next {
            right: 16px;
        }
        
        .slider-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 2;
        }
        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .slider-dot.active {
            background: #ffffff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        /* ============================================================
           SECTION BAND
           ============================================================ */
        .section-band {
            padding: var(--space-section) 0;
        }
        .section-band--soft {
            background-color: var(--color-canvas-soft);
        }
        .section-header {
            text-align: center;
            margin-bottom: var(--space-xxl);
        }
        .section-header .caption-uppercase {
            margin-bottom: var(--space-sm);
            display: block;
        }
        .section-header p {
            max-width: 560px;
            margin: var(--space-base) auto 0;
        }

        /* ============================================================
           KAS SUMMARY CARDS
           ============================================================ */
        .kas-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }
        .kas-card {
            background: var(--color-surface-card);
            border: 1px solid var(--color-hairline);
            border-radius: var(--rounded-xl);
            padding: var(--space-lg);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .kas-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .kas-card__icon {
            width: 40px;
            height: 40px;
            border-radius: var(--rounded-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-base);
        }
        .kas-card__icon--masuk {
            background: rgba(22, 163, 74, 0.08);
            color: var(--color-semantic-success);
        }
        .kas-card__icon--keluar {
            background: rgba(220, 38, 38, 0.08);
            color: var(--color-semantic-error);
        }
        .kas-card__icon--saldo {
            background: rgba(41, 37, 36, 0.06);
            color: var(--color-primary);
        }
        .kas-card__icon svg {
            width: 20px;
            height: 20px;
        }
        .kas-card__label {
            margin-bottom: var(--space-xs);
        }
        .kas-card__value {
            font-family: 'EB Garamond', serif;
            font-size: 28px;
            font-weight: 300;
            line-height: 1.2;
            color: var(--color-ink);
            letter-spacing: -0.28px;
        }
        .kas-card__value--success { color: var(--color-semantic-success); }
        .kas-card__value--error { color: var(--color-semantic-error); }

        /* Decorative orb inside kas section */
        .kas-section-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.25;
            pointer-events: none;
        }

        /* ============================================================
           KAS MUTATION TABLE & BADGES
           ============================================================ */
        .kas-table-card {
            background: var(--color-surface-card);
            border: 1px solid var(--color-hairline);
            border-radius: var(--rounded-xxl);
            padding: var(--space-xl);
            margin-top: var(--space-xl);
            box-shadow: var(--shadow-card-hover);
            overflow-x: auto;
        }
        .kas-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
        }
        .kas-table th {
            text-align: left;
            padding: 12px 16px;
            border-bottom: 1px solid var(--color-hairline-strong);
            color: var(--color-muted);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.96px;
        }
        .kas-table td {
            padding: 16px;
            border-bottom: 1px solid var(--color-hairline-soft);
            color: var(--color-ink);
        }
        .kas-table tr:last-child td {
            border-bottom: none;
        }
        .kas-table tr:hover td {
            background-color: rgba(12, 10, 9, 0.015);
        }
        .kas-badge-masuk {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: var(--rounded-pill);
            background: rgba(22, 163, 74, 0.1);
            color: var(--color-semantic-success);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .kas-badge-keluar {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: var(--rounded-pill);
            background: rgba(220, 38, 38, 0.1);
            color: var(--color-semantic-error);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ============================================================
           ARTIKEL CARDS
           ============================================================ */
        .artikel-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }
        .artikel-card {
            background: var(--color-surface-card);
            border: 1px solid var(--color-hairline);
            border-radius: var(--rounded-xl);
            overflow: hidden;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
        }
        .artikel-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .artikel-card__image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: var(--color-surface-strong);
        }
        .artikel-card__image-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--color-surface-strong) 0%, var(--color-hairline-soft) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .artikel-card__image-placeholder::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--color-gradient-sky) 0%, transparent 70%);
            opacity: 0.5;
            filter: blur(20px);
        }
        .artikel-card__image-placeholder svg {
            width: 32px;
            height: 32px;
            color: var(--color-muted-soft);
            position: relative;
            z-index: 1;
        }
        .artikel-card__body {
            padding: var(--space-lg);
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .artikel-card__badge {
            margin-bottom: var(--space-sm);
        }
        .artikel-card__title {
            margin-bottom: var(--space-xs);
        }
        .artikel-card__title a {
            color: var(--color-ink);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .artikel-card__title a:hover {
            color: var(--color-muted);
        }
        .artikel-card__excerpt {
            flex-grow: 1;
            margin-bottom: var(--space-base);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .artikel-card__meta {
            margin-top: auto;
            padding-top: var(--space-sm);
            border-top: 1px solid var(--color-hairline-soft);
        }

        /* ============================================================
           JADWAL KAJIAN CARDS
           ============================================================ */
        .jadwal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }
        .jadwal-card {
            background: var(--color-surface-card);
            border: 1px solid var(--color-hairline);
            border-radius: var(--rounded-xl);
            padding: var(--space-lg);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
        }
        .jadwal-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .jadwal-card__top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: var(--space-base);
        }
        .jadwal-card__badge {
            display: inline-flex;
            align-items: center;
            background-color: var(--color-surface-strong);
            color: var(--color-ink);
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: 0.96px;
            text-transform: uppercase;
            border-radius: var(--rounded-pill);
            padding: 4px 10px;
        }
        .jadwal-card__date {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: var(--color-muted);
        }
        .jadwal-card__title {
            font-family: 'EB Garamond', serif;
            font-size: 24px;
            font-weight: 400;
            line-height: 1.25;
            color: var(--color-ink);
            margin-bottom: var(--space-sm);
            letter-spacing: -0.2px;
        }
        .jadwal-card__title a {
            color: var(--color-ink);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .jadwal-card__title a:hover {
            color: var(--color-muted);
        }
        .jadwal-card__pemateri {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 500;
            color: var(--color-body-strong);
            margin-bottom: var(--space-base);
            display: flex;
            align-items: center;
            gap: var(--space-xs);
        }
        .jadwal-card__meta {
            margin-top: auto;
            padding-top: var(--space-sm);
            border-top: 1px solid var(--color-hairline-soft);
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            color: var(--color-body);
        }
        .jadwal-card__time {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            color: var(--color-primary);
        }

        /* Section with atmospheric orb */
        .artikel-section {
            position: relative;
            overflow: hidden;
        }
        .artikel-section-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.3;
            pointer-events: none;
        }
        .artikel-section-orb--sky {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, var(--color-gradient-sky) 0%, transparent 70%);
            top: -120px;
            left: -100px;
            animation: orbDrift2 20s ease-in-out infinite;
        }
        .artikel-section-orb--rose {
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, var(--color-gradient-rose) 0%, transparent 70%);
            bottom: -100px;
            right: -80px;
            animation: orbDrift1 24s ease-in-out infinite;
        }

        .artikel-empty {
            text-align: center;
            padding: var(--space-xxl) 0;
        }
        .artikel-empty svg {
            width: 48px;
            height: 48px;
            color: var(--color-muted-soft);
            margin-bottom: var(--space-base);
        }

        /* ============================================================
           CTA BAND
           ============================================================ */
        .cta-band {
            background-color: var(--color-canvas);
            padding: var(--space-section) 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-band__orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.35;
            pointer-events: none;
        }
        .cta-band__orb--mint {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--color-gradient-mint) 0%, transparent 70%);
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            animation: orbDrift3 18s ease-in-out infinite;
        }
        .cta-band__orb--peach {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, var(--color-gradient-peach) 0%, transparent 70%);
            top: 50%;
            right: 10%;
            transform: translateY(-50%);
            animation: orbDrift1 22s ease-in-out infinite;
        }
        .cta-content {
            position: relative;
            z-index: 2;
        }
        .cta-content h2 {
            margin-bottom: var(--space-base);
        }
        .cta-content p {
            max-width: 480px;
            margin: 0 auto var(--space-xl);
        }

        /* ============================================================
           FOOTER
           ============================================================ */
        .site-footer {
            background-color: var(--color-canvas);
            border-top: 1px solid var(--color-hairline);
            padding: 64px var(--space-xxl);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: var(--space-xxl);
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-brand {
            font-family: 'EB Garamond', serif;
            font-size: 20px;
            font-weight: 300;
            color: var(--color-ink);
            letter-spacing: -0.3px;
            margin-bottom: var(--space-base);
        }
        .footer-desc {
            font-size: 15px;
            line-height: 1.47;
            letter-spacing: 0.15px;
            color: var(--color-body);
            max-width: 320px;
        }
        .footer-col-title {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: 0.96px;
            text-transform: uppercase;
            color: var(--color-muted);
            margin-bottom: var(--space-base);
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }
        .footer-col a {
            font-size: 15px;
            font-weight: 400;
            line-height: 1.47;
            letter-spacing: 0.15px;
            color: var(--color-body);
            transition: color 0.2s ease;
        }
        .footer-col a:hover {
            color: var(--color-ink);
        }
        .footer-address {
            margin: 0 0 var(--space-sm);
            color: var(--color-body);
            font-size: 15px;
            font-style: normal;
            line-height: 1.65;
        }
        .footer-address strong {
            color: var(--color-ink);
            font-weight: 500;
        }
        .footer-direction-link {
            display: inline-flex;
            align-items: center;
            font-weight: 500 !important;
            color: var(--color-ink) !important;
        }
        .footer-location {
            display: grid;
            grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
            gap: var(--space-xxl);
            align-items: center;
            max-width: 1200px;
            margin: var(--space-xxl) auto 0;
            padding-top: var(--space-xxl);
            border-top: 1px solid var(--color-hairline-soft);
        }
        .footer-location__header h2 {
            margin: var(--space-xs) 0 var(--space-sm);
            color: var(--color-ink);
            font-family: 'EB Garamond', 'Times New Roman', serif;
            font-size: 30px;
            font-weight: 300;
            line-height: 1.15;
        }
        .footer-location__header p {
            max-width: 400px;
            color: var(--color-body);
            font-size: 14px;
            line-height: 1.65;
        }
        .footer-map {
            overflow: hidden;
            border: 1px solid var(--color-hairline);
            border-radius: var(--rounded-xl);
            background: var(--color-canvas-soft);
            box-shadow: var(--shadow-card-hover);
        }
        .footer-map iframe {
            display: block;
            width: 100%;
            height: 320px;
            border: 0;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: var(--space-xxl) auto 0;
            padding-top: var(--space-lg);
            border-top: 1px solid var(--color-hairline-soft);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-bottom p {
            font-size: 14px;
            color: var(--color-muted);
        }

        /* ============================================================
           SCROLL REVEAL
           ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.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
           ============================================================ */

        /* Tablet */
        @media (max-width: 1024px) {
            .display-mega {
                font-size: 48px;
                letter-spacing: -0.96px;
            }
            .hero-band {
                min-height: 60vh;
                padding: 72px 0;
            }
            .kas-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--space-base);
            }
            .artikel-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .jadwal-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-xl);
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-actions .btn-outline {
                display: none;
            }
        }

        @media (max-width: 640px) {
            :root {
                --space-section: 64px;
            }
            .display-mega {
                font-size: 32px;
                letter-spacing: -0.32px;
                line-height: 1.13;
            }
            .display-lg {
                font-size: 28px;
            }
            .display-xl {
                font-size: 32px;
            }
            .hero-band {
                min-height: 50vh;
                padding: 56px 0;
            }
            .hero-orb--mint { width: 280px; height: 280px; }
            .hero-orb--peach { width: 220px; height: 220px; }
            .hero-orb--lavender { width: 200px; height: 200px; }
            .kas-grid {
                grid-template-columns: 1fr;
            }
            .kas-card__value {
                font-size: 24px;
            }
            .artikel-grid {
                grid-template-columns: 1fr;
            }
            .jadwal-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }
            .footer-location {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
                padding-top: var(--space-xl);
            }
            .footer-map iframe {
                height: 260px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: var(--space-sm);
                text-align: center;
            }
            .cta-band {
                padding: 64px 0;
            }
            .site-footer {
                padding: 48px var(--space-lg);
            }
        }
