    :root {
        --ivory: #F3EFE3;
        --ivory-2: #EAE3D2;
        --ink: #201C16;
        --forest: #1E2A1C;
        --forest-2: #283523;
        --gold: #C89B3C;
        --gold-soft: #E4C878;
        --crimson: #7C2F2A;
        --sage: #5C6B4B;
        --line: rgba(32, 28, 22, 0.14);
        --line-on-dark: rgba(243, 239, 227, 0.18);
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        background: var(--ivory);
        color: var(--ink);
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 16px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

    img {
        max-width: 100%;
        display: block;
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: 'Cormorant Garamond', serif;
        font-weight: 500;
        margin: 0;
        letter-spacing: -0.01em;
    }

    .eyebrow {
        font-family: ''DM Mono', monospace;
text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 0.72rem;
        font-weight: 700;
    }

    a {
        color: inherit;
    }

    .wrap {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 32px;
    }

    section {
        position: relative;
    }

    /* ---------- Header ---------- */
    header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(243, 239, 227, 0.92);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid var(--line);
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 32px;
        max-width: 1180px;
        margin: 0 auto;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .brand img {
        height: 38px;
        width: 38px;
        object-fit: contain;
    }

    .brand-text {
        font-family: 'Fraunces', serif;
        font-weight: 600;
        font-size: 1.02rem;
        line-height: 1.05;
    }

    .brand-text span {
        display: block;
        font-family: 'Space Mono', monospace;
        font-weight: 400;
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        color: var(--sage);
        text-transform: uppercase;
        margin-top: 2px;
    }

    nav.links {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    nav.links a {
        font-size: 0.86rem;
        font-weight: 500;
        text-decoration: none;
        position: relative;
        padding-bottom: 3px;
    }

    nav.links a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .3s ease;
    }

    nav.links a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-cta {
        background: var(--forest);
        color: var(--ivory);
        font-size: 0.8rem;
        font-weight: 600;
        padding: 5px 10px;
        border-radius: 10px;
        text-decoration: none;
        letter-spacing: 0.02em;
    }

    .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.4rem;
        cursor: pointer;
        color: var(--ink);
    }

    /* ---------- Hero ---------- */
    .hero {
        background: radial-gradient(120% 140% at 78% 20%, var(--forest-2) 0%, var(--forest) 55%, #17200F 100%);
        color: var(--ivory);
        overflow: hidden;
    }

    .hero-grid {
        max-width: 1180px;
        margin: 0 auto;
        padding: 88px 32px 70px;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 40px;
        align-items: center;
    }

    .hero-eyebrow {
        color: var(--gold-soft);
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .hero-eyebrow::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--gold-soft);
        display: inline-block;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 4.6vw, 3.6rem);
        line-height: 1.06;
    }

    .hero h1 em {
        font-style: italic;
        color: var(--gold-soft);
        font-weight: 400;
    }

    .hero p.lead {
        margin-top: 24px;
        max-width: 44ch;
        color: rgba(243, 239, 227, 0.8);
        font-size: 1.02rem;
    }

    .hero-cta {
        display: flex;
        gap: 16px;
        margin-top: 36px;
        flex-wrap: wrap;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 26px;
        font-size: 0.88rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 2px;
        letter-spacing: 0.01em;
        transition: transform .25s ease, background .25s ease;
    }

    .btn-primary {
        background: var(--gold);
        color: #1B1608;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        background: var(--gold-soft);
    }

    .btn-ghost {
        border: 1px solid var(--line-on-dark);
        color: var(--ivory);
    }

    .btn-ghost:hover {
        border-color: var(--gold-soft);
        color: var(--gold-soft);
    }

    .asuh-row {
        display: flex;
        gap: 22px;
        margin-top: 52px;
        flex-wrap: wrap;
    }

    .asuh-chip {
        font-family: 'Space Mono', monospace;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(243, 239, 227, 0.72);
    }

    .asuh-chip b {
        color: var(--gold-soft);
        font-size: 0.95rem;
    }

    /* Signature: stamp portrait */
    .stamp-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stamp-ring {
        position: absolute;
        width: 100%;
        padding-bottom: 100%;
        border-radius: 50%;
        animation: spin 34s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .stamp-ring svg {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
    }

    .stamp-ring text {
        font-family: 'Space Mono', monospace;
        font-size: 6.6px;
        letter-spacing: 3px;
        fill: rgba(228, 200, 120, 0.8);
        text-transform: uppercase;
    }

    .stamp-photo {
        position: relative;
        width: 78%;
        aspect-ratio: 1/1;
        border-radius: 50%;
        overflow: hidden;
        border: 1px solid rgba(228, 200, 120, 0.45);
        box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
    }

    .stamp-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .stamp-badge {
        position: absolute;
        bottom: -6%;
        left: -4%;
        background: var(--crimson);
        color: var(--ivory);
        border-radius: 50%;
        width: 92px;
        height: 92px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-family: 'Space Mono', monospace;
        font-size: 0.62rem;
        line-height: 1.35;
        letter-spacing: 0.04em;
        border: 1px solid rgba(243, 239, 227, 0.4);
        box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.5);
        transform: rotate(-8deg);
    }

    .stamp-badge2 {
        position: absolute;
        bottom: -6%;
        right: -4%;
        left: auto;

        background: var(--crimson);
        color: var(--ivory);
        border-radius: 50%;
        width: 92px;
        height: 92px;

        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;

        font-family: 'Space Mono', monospace;
        font-size: 0.62rem;
        line-height: 1.35;
        letter-spacing: 0.04em;

        border: 1px solid rgba(243, 239, 227, 0.4);
        box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.5);

        transform: rotate(8deg);
    }

    @media(prefers-reduced-motion:reduce) {
        .stamp-ring {
            animation: none;
        }
    }

    /* ---------- Section headers ---------- */
    .sec-head {
        max-width: 640px;
        margin-bottom: 52px;
    }

    .sec-head .eyebrow {
        color: var(--sage);
        margin-bottom: 14px;
    }

    .sec-head h2 {
        font-size: clamp(1.7rem, 3vw, 2.35rem);
    }

    .sec-head p {
        margin-top: 16px;
        max-width: 56ch;
    }

    .on-dark .sec-head p {
        color: rgba(243, 239, 227, 0.7);
    }

    .on-dark .sec-head .eyebrow {
        color: var(--gold-soft);
    }

    .on-dark .sec-head h2 {
        color: var(--ivory);
    }

    /* ---------- Tentang ---------- */
    /* =========================================
   ABOUT SECTION
========================================= */

    .about {
        position: relative;
        padding: 110px 0;
        background: var(--ivory, #faf8f3);
        overflow: hidden;
    }

    .about .wrap {
        position: relative;
        z-index: 2;
    }

    /* Section heading */

    .about .sec-head {
        max-width: 760px;
        margin-bottom: 52px;
    }

    .about .sec-head .eyebrow {
        margin-bottom: 14px;
    }

    .about .sec-head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3.4rem);
        line-height: 1.1;
        font-weight: 500;
        letter-spacing: -0.03em;
        color: var(--dark, #201c16);
    }

    /* Main content */

    .about-main {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 64px;
        align-items: center;
    }

    .about-content {
        max-width: 560px;
    }

    .about-content-title {
        margin: 0 0 22px;
        font-size: clamp(1.45rem, 2.4vw, 2rem);
        line-height: 1.3;
        font-weight: 500;
        color: var(--dark, #201c16);
    }

    .about-content p {
        margin: 0;
        max-width: 58ch;
        color: rgba(32, 28, 22, 0.72);
        font-size: 1rem;
        line-height: 1.85;
    }

    .about-content p+p {
        margin-top: 18px;
    }

    /* Highlight points */

    .about-highlights {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 32px;
    }

    .about-highlight {
        padding: 18px 14px;
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid var(--line, rgba(32, 28, 22, 0.12));
        text-align: center;
    }

    .about-highlight strong {
        display: block;
        margin-bottom: 5px;
        color: var(--sage, #66705b);
        font-size: 0.95rem;
        font-weight: 600;
    }

    .about-highlight span {
        color: rgba(32, 28, 22, 0.65);
        font-size: 0.78rem;
        line-height: 1.4;
    }

    /* Image collage */

    .about-gallery {
        position: relative;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 16px;
        min-height: 520px;
    }

    .about-image {
        position: relative;
        margin: 0;
        overflow: hidden;
        background: #ebe7dc;
    }

    .about-gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
    }

    .about-image {
        position: relative;
        width: 100%;
        height: 250px;
        margin: 0;
        overflow: hidden;
        background: #ebe7dc;
        border: 1px solid var(--line, rgba(32, 28, 22, 0.12));
    }

    .about-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition:
            transform 0.6s ease,
            filter 0.6s ease;
    }

    .about-image:hover img {
        transform: scale(1.04);
        filter: brightness(0.9);
    }

    .about-image figcaption {
        position: absolute;
        right: 16px;
        bottom: 16px;
        left: 16px;
        padding: 13px 16px;
        color: #ffffff;
        font-size: 0.82rem;
        line-height: 1.5;
        background: rgba(20, 18, 15, 0.68);
        backdrop-filter: blur(8px);
    }

    /* =========================================
    VISI & MISI
    ========================================= */

    .about-values {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        width: 100%;
        margin-top: 72px;
        background: var(--ivory-2, #f4f0e7);
        border: 1px solid var(--line, rgba(32, 28, 22, 0.12));
        border-left: 4px solid var(--gold, #b89348);
    }

    .value-block {
        min-width: 0;
        padding: 42px 38px;
    }

    .value-block+.value-block {
        border-left: 1px solid var(--line, rgba(32, 28, 22, 0.12));
    }

    .value-block .eyebrow {
        margin-bottom: 18px;
        color: var(--sage, #66705b);
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    /* Visi */

    .vision-text {
        max-width: 34ch;
        margin: 0;
        color: var(--dark, #201c16);
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        font-style: italic;
        font-weight: 400;
        line-height: 1.55;
    }

    /* Misi */

    .misi-list {
        display: grid;
        gap: 16px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .misi-list li {
        position: relative;
        min-width: 0;
        padding-left: 24px;
        color: rgba(32, 28, 22, 0.76);
        font-size: 0.95rem;
        line-height: 1.7;
        overflow-wrap: anywhere;
    }

    .misi-list li::before {
        content: "";
        position: absolute;
        top: 0.7em;
        left: 0;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--gold, #b89348);
    }

    /* ---------- ASUH cards ---------- */
    .asuh {
        background: var(--forest);
        color: var(--ivory);
        padding: 110px 0;
    }

    .asuh-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--line-on-dark);
        border: 1px solid var(--line-on-dark);
    }

    .asuh-card {
        background: var(--forest);
        padding: 38px 28px;
        min-height: 270px;
        display: flex;
        flex-direction: column;
    }

    .asuh-card .letter {
        font-family: 'Fraunces', serif;
        font-size: 3.2rem;
        color: var(--gold-soft);
        font-weight: 500;
        line-height: 1;
    }

    .asuh-card h4 {
        margin-top: 18px;
        font-size: 1.05rem;
        color: var(--ivory);
        font-weight: 500;
    }

    .asuh-card p {
        margin-top: 10px;
        font-size: 0.87rem;
        color: rgba(243, 239, 227, 0.62);
        flex: 1;
    }


    /* ---------- Footer ---------- */
    footer {
        background: #171308;
        color: rgba(243, 239, 227, 0.65);
        padding: 70px 0 30px;
    }

    .foot-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 50px;
        border-bottom: 1px solid rgba(243, 239, 227, 0.12);
    }

    .foot-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

    .foot-brand img {
        height: 36px;
        width: 36px;
    }

    .foot-brand span {
        font-family: 'Fraunces', serif;
        color: var(--ivory);
        font-size: 1.05rem;
        font-weight: 600;
    }

    .foot-col h5 {
        font-family: 'Space Mono', monospace;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold-soft);
        margin-bottom: 16px;
    }

    .foot-col a,
    .foot-col p {
        display: block;
        font-size: 0.87rem;
        color: rgba(243, 239, 227, 0.6);
        text-decoration: none;
        margin-bottom: 10px;
    }

    .foot-col a:hover {
        color: var(--gold-soft);
    }

    .foot-bottom {
        display: flex;
        justify-content: space-between;
        padding-top: 26px;
        font-size: 0.76rem;
        font-family: 'Space Mono', monospace;
        color: rgba(243, 239, 227, 0.35);
        flex-wrap: wrap;
        gap: 10px;
    }

    /* ---------- reveal ---------- */
    .reveal {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

    /* ---------- Responsive ---------- */
    @media(max-width:920px) {
        nav.links {
            display: none;
        }

        .menu-toggle {
            display: block;
        }

        .hero-grid {
            grid-template-columns: 1fr;
            padding-top: 56px;
        }

        .stamp-wrap {
            order: -1;
            max-width: 320px;
            margin: 0 auto 44px;
        }

        .about {
            padding: 90px 0;
        }

        .about-main {
            grid-template-columns: 1fr;
            gap: 44px;
        }

        .about-content {
            max-width: 720px;
        }

        .about-gallery {
            min-height: 470px;
        }

        .about-image:first-child {
            height: 470px;
        }

        .about-image:last-child {
            height: 350px;
            margin-top: 60px;
        }

        .about-values {
            grid-template-columns: 1fr;
            margin-top: 56px;
        }

        .value-block {
            padding: 36px 32px;
        }

        .value-block+.value-block {
            border-top: 1px solid var(--line, rgba(32, 28, 22, 0.12));
            border-left: 0;
        }

        .vision-text {
            max-width: 48ch;
        }

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

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

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

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

    @media(max-width:560px) {
        .wrap {
            padding: 0 20px;
        }

        .nav {
            padding: 14px 20px;
        }

        .hero-grid {
            padding: 56px 20px 50px;
        }

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

        .gauge-legend {
            grid-template-columns: 1fr;
        }

        .stamp-wrap {
            max-width: 240px;
            margin: 0 auto 40px;
        }

        .stamp-photo {
            width: 82%;
        }

        .stamp-badge {
            width: 74px;
            height: 74px;
            font-size: 0.52rem;
            bottom: -14%;
            left: -8%;
        }

        .stamp-badge2 {
            width: 74px;
            height: 74px;
            font-size: 0.52rem;
            bottom: -14%;
            right: -8%;
            left: auto;
            transform: rotate(8deg);
        }

        .about {
            padding: 60px 0;
        }

        .about-main {
            gap: 34px;
        }

        .about-highlights {
            grid-template-columns: 1fr;
        }

        .about-highlight {
            text-align: left;
        }

        .about-gallery {
            grid-template-columns: 1fr;
        }

        .about-image:first-child,
        .about-image:last-child {
            height: 280px;
        }

        .about-image figcaption {
            right: 10px;
            bottom: 10px;
            left: 10px;
            padding: 12px 14px;
        }

        .about-values {
            margin-top: 42px;
            border-left-width: 3px;
        }

        .value-block {
            padding: 28px 22px;
        }

        .value-block .eyebrow {
            margin-bottom: 14px;
            font-size: 0.72rem;
        }

        .vision-text {
            max-width: none;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .misi-list {
            gap: 14px;
        }

        .misi-list li {
            padding-left: 21px;
            font-size: 0.9rem;
            line-height: 1.65;
        }

        .misi-list li::before {
            width: 6px;
            height: 6px;
        }
    }