:root {
    --maroon: #7d2028;
    --maroon-dark: #541117;
    --maroon-deep: #3b0d12;
    --gold: #c9a227;
    --gold-light: #e3c45d;
    --cream: #fbf8f2;
    --cream-dark: #f1eadc;
    --white: #ffffff;
    --text: #292321;
    --muted: #766d68;
    --border: rgba(125, 32, 40, 0.12);
    --shadow: 0 18px 50px rgba(59, 13, 18, 0.10);
    --shadow-lg: 0 28px 70px rgba(59, 13, 18, 0.18);
    --radius: 22px;
    --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
    font-family: "Plus Jakarta Sans", sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(
        var(--container),
        calc(100% - 48px)
    );
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

/* =====================================================
   HEADER — NAVIGASI FINAL
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(125, 32, 40, 0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        background .25s ease,
        box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(59, 13, 18, 0.10);
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/* =====================================================
   LOGO + BRAND — FINAL PREMIUM
===================================================== */

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    text-decoration: none;
    flex-shrink: 0;

    min-width: 225px;
}

/* LOGO BULAT TANPA BACKGROUND */
.brand-logo img {
    width: 52px;
    height: 52px;

    display: block;

    object-fit: contain;
    object-position: center;

    flex-shrink: 0;

    /* memastikan tidak ada background tambahan */
    background: transparent;
    border: none;
    box-shadow: none;

    border-radius: 50%;

    transition:
        transform .25s ease,
        filter .25s ease;
}

/* Efek halus ketika mouse diarahkan ke logo */
.brand-logo:hover img {
    transform: scale(1.04);
}


/* =====================================================
   BRAND TEXT
===================================================== */

.brand-text {
    display: flex;
    flex-direction: column;

    justify-content: center;

    line-height: 1.1;
}

.brand-title {
    color: var(--maroon-dark);

    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 600;

    white-space: nowrap;
}

.brand-title strong {
    color: var(--gold);
}

.brand-subtitle {
    margin-top: 5px;

    color: #8b7e72;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2.4px;

    white-space: nowrap;
}


/* =====================================================
   MOBILE LOGO
===================================================== */

/* =====================================================
   NAVBAR DESKTOP
   HILANGKAN TOMBOL HAMBURGER
===================================================== */

@media (min-width: 901px) {

    .nav-links {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle {
        display: none !important;
    }
}


/* =====================================================
   NAVIGATION LINKS
===================================================== */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-links a {
    position: relative;

    display: inline-block;

    padding: 29px 0;

    color: #5f5651;

    text-decoration: none;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;

    transition: color .25s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;

    bottom: 21px;

    height: 2px;

    background: var(--gold);

    transition: right .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--maroon);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    right: 0;
}


/* =====================================================
   WHATSAPP BUTTON
===================================================== */

.nav-whatsapp {
    color: #fffaf0 !important;
}

.nav-whatsapp i,
.nav-whatsapp span {
    color: #fffaf0 !important;
}

/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.nav-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(125, 32, 40, 0.15);
    border-radius: 12px;

    background: var(--white);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.nav-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--maroon);

    border-radius: 10px;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* =====================================================
   MOBILE NAVIGATION PANEL
===================================================== */

.mobile-nav {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    padding: 14px 24px 22px;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid rgba(125, 32, 40, 0.10);

    box-shadow: 0 18px 35px rgba(59, 13, 18, 0.12);
}

.mobile-nav a {
    display: block;

    padding: 13px 4px;

    color: #5f5651;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    border-bottom: 1px solid rgba(125, 32, 40, 0.07);

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.mobile-nav a:hover {
    color: var(--maroon);

    padding-left: 9px;
}

.mobile-nav a:last-child {
    border-bottom: none;
}


/* =====================================================
   MOBILE MENU — ACTIVE
===================================================== */

.site-header.menu-open .mobile-nav {
    display: block;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =====================================================
   SCROLL OFFSET
===================================================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 10px;
    }

    .nav-whatsapp {
        padding: 10px 13px;
    }

}


/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 1100px) {

    .nav-links {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .nav-toggle {
        display: none !important;
    }

    .nav-whatsapp {
        margin-left: auto;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 640px) {

    .navbar {
        min-height: 67px;
    }

    .brand-logo img {
        width: 38px;
        height: 38px;
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-subtitle {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .nav-whatsapp {
        padding: 10px 12px;
    }

    .nav-whatsapp span {
        display: none;
    }

    .nav-whatsapp i {
        font-size: 17px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

}

/* =====================================================
   HERO
===================================================== */

.hero-premium {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at 12% 25%,
            rgba(201, 162, 39, .08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fffdf9 0%,
            #fbf8f2 55%,
            #f4ecdf 100%
        );
}

.hero-premium::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -230px;
    top: -180px;
    border: 1px solid rgba(201, 162, 39, .16);
    border-radius: 50%;
}

.hero-premium::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -250px;
    bottom: -220px;
    border: 1px solid rgba(125, 32, 40, .08);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, .93fr)
        minmax(470px, 1.07fr);
    align-items: center;
    gap: 65px;
    padding: 68px 0 76px;
}

.hero-copy {
    position: relative;
    z-index: 4;
    max-width: 610px;
}


/* EYEBROW */

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--maroon);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.eyebrow-line {
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow span:not(.eyebrow-line) {
    color: var(--gold);
}


/* BADGE */

.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    margin-bottom: 21px;
    border: 1px solid rgba(201, 162, 39, .35);
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    color: #735d20;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(59, 13, 18, .04);
}

.hero-badge i {
    color: var(--gold);
    font-size: 10px;
}


/* HERO TITLE */

.hero-copy h1 {
    margin: 0;
    color: var(--maroon-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(47px, 5.1vw, 72px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -1.8px;
}

.hero-copy h1 span {
    display: block;
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}


/* DESCRIPTION */

.hero-description {
    max-width: 555px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.hero-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


/* PRIMARY */

.hero-btn-primary {
    background: var(--maroon);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(125, 32, 40, .22);
}

.hero-btn-primary i {
    font-size: 11px;
    transition: transform .25s ease;
}

.hero-btn-primary:hover {
    background: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(125, 32, 40, .28);
}

.hero-btn-primary:hover i {
    transform: translateX(3px);
}


/* WHATSAPP */

.hero-btn-whatsapp {
    border: 1px solid rgba(125, 32, 40, .16);
    background: rgba(255, 255, 255, .70);
    color: var(--maroon);
}

.hero-btn-whatsapp i {
    font-size: 18px;
}

.hero-btn-whatsapp:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}


/* =====================================================
   HERO TRUST / USP
===================================================== */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 36px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.trust-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(201, 162, 39, .11);
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
}

.trust-item strong,
.trust-item small {
    display: block;
}

.trust-item strong {
    color: var(--maroon-dark);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
}

.trust-item small {
    margin-top: 3px;
    color: #8a817c;
    font-size: 8px;
    line-height: 1.2;
}

.trust-divider {
    width: 1px;
    height: 31px;
    background: rgba(125, 32, 40, .12);
}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: min(100%, 590px);
    padding: 12px;
    border: 1px solid rgba(201, 162, 39, .72);
    border-radius: 31px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.92),
            rgba(239,226,199,.58)
        );
    box-shadow: 0 30px 70px rgba(59, 13, 18, .19);
    transform: rotate(1.2deg);
}

.hero-image-frame::before {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -1;
    border: 1px solid rgba(125, 32, 40, .10);
    border-radius: 38px;
}

.hero-image-inner {
    position: relative;
    overflow: hidden;
    height: 505px;
    border-radius: 23px;
    background: var(--cream-dark);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% center;
    transform: scale(1.025);
}

.hero-image-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0) 60%,
            rgba(59,13,18,.18) 100%
        );
}


/* IMAGE LABEL */

.hero-image-label {
    position: absolute;
    left: 28px;
    bottom: 27px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(59, 13, 18, .84);
    color: #fff;
    backdrop-filter: blur(8px);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
}

.label-separator {
    color: var(--gold-light);
}


/* FLOATING CARD */

.hero-floating-card {
    position: absolute;
    z-index: 5;
    left: -24px;
    bottom: 57px;
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: 225px;
    padding: 13px 16px 13px 13px;
    border: 1px solid rgba(201, 162, 39, .25);
    border-radius: 15px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 38px rgba(59,13,18,.16);
    backdrop-filter: blur(12px);
}

.floating-card-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(125,32,40,.09);
    color: var(--maroon);
    font-size: 13px;
    flex-shrink: 0;
}

.hero-floating-card strong,
.hero-floating-card small {
    display: block;
}

.hero-floating-card strong {
    color: var(--maroon-dark);
    font-size: 10px;
    line-height: 1.25;
}

.hero-floating-card small {
    margin-top: 3px;
    color: #8a817c;
    font-size: 8px;
    line-height: 1.35;
}


/* DECORATIONS */

.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco-one {
    width: 22px;
    height: 22px;
    right: -4px;
    top: 80px;
    border: 1px solid var(--gold);
}

.hero-deco-two {
    width: 12px;
    height: 12px;
    right: 40px;
    bottom: 37px;
    background: var(--gold);
}


/* GLOW */

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-one {
    width: 220px;
    height: 220px;
    left: 34%;
    top: -130px;
    background: rgba(201,162,39,.07);
}

.hero-glow-two {
    width: 180px;
    height: 180px;
    right: 8%;
    bottom: -100px;
    background: rgba(125,32,40,.06);
}


/* =====================================================
   GENERAL SECTION
===================================================== */

.section {
    position: relative;
    padding: 95px 0;
}

.section-white {
    background: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-heading {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-kicker,
.footer-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.section-title {
    margin: 0;
    color: var(--maroon-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
}

.section-heading p {
    margin: 13px auto 0;
    color: var(--muted);
    font-size: 13px;
}


/* =====================================================
   REASONS
===================================================== */

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reason-card {
    position: relative;
    overflow: hidden;
    padding: 35px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255,255,255,.82);
    box-shadow: 0 10px 35px rgba(59,13,18,.05);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.reason-number {
    position: absolute;
    top: 16px;
    right: 21px;
    color: rgba(125,32,40,.07);
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 700;
}

.reason-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(201,162,39,.12);
    color: var(--gold);
}

.reason-card h3 {
    margin: 0 0 9px;
    color: var(--maroon-dark);
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.reason-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}


/* =====================================================
   PAKET CATERING
===================================================== */

.paket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.paket-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 29px 29px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 38px rgba(59,13,18,.06);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


/* FOTO PAKET CATERING */

.paket-image {
    width: 100%;
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f1ed;
}

.paket-image img {
    width: 100%;
    height: auto;
    display: block;
}

.paket-no-image {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #9a8578;
    font-size: 14px;
}

.paket-no-image i {
    font-size: 30px;
}


/* PAKET HOVER */

.paket-card:hover {
    transform: translateY(-7px);
    border-color: rgba(201,162,39,.4);
    box-shadow: var(--shadow-lg);
}


/* PAKET RIBBON */

.paket-ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--white);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.1px;
}


/* PAKET HEADER */

.paket-index {
    color: rgba(125,32,40,.45);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.paket-header h3 {
    margin: 8px 0 10px;
    color: var(--maroon-dark);
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.paket-price {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
}

.paket-desc {
    min-height: 42px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 11px;
}


/* PAKET DIVIDER */

.paket-divider {
    width: 100%;
    height: 1px;
    margin: 23px 0 19px;
    background: var(--border);
}


/* DAFTAR MENU PAKET */

.paket-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.paket-menu-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #655c57;
    font-size: 11px;
    line-height: 1.55;
}

.paket-menu-list i {
    margin-top: 3px;
    color: var(--gold);
    font-size: 9px;
}


/* TOMBOL WHATSAPP PAKET */

.btn-wa {
    width: 100%;
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: auto;
    border-radius: 999px;
    background: var(--maroon);
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition:
        transform .25s ease,
        background .25s ease;
}

.btn-wa:hover {
    background: var(--maroon-dark);
    transform: translateY(-2px);
}


/* =====================================================
   GALLERY / MENU CARD
===================================================== */

.gallery-section {
    overflow: hidden;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.menu-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 35px rgba(59,13,18,.06);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.menu-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--cream-dark);
}

.menu-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.menu-card:hover img {
    transform: scale(1.05);
}

.menu-info {
    position: relative;
    padding: 23px 24px 26px;
}

.menu-number {
    color: var(--gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.menu-info h3 {
    margin: 5px 0 7px;
    color: var(--maroon-dark);
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.menu-info p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}


/* =====================================================
   MENU WEBSITE
===================================================== */

.menu-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #999;
    background: #f1ede9;
    font-size: 14px;
}

.menu-no-image i {
    font-size: 28px;
}

.menu-category {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #8b5e3c;
}

.menu-price {
    margin: 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #5c3b25;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: var(--maroon-deep);
    color: rgba(255,255,255,.72);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 65px;
    padding: 76px 0 64px;
}

.footer-brand-col {
    max-width: 360px;
}

.footer-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.footer-brand-col h3 {
    margin: 0;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 27px;
}

.footer-brand-col h3 span {
    color: var(--gold-light);
}

.footer-brand-col p {
    max-width: 310px;
    margin: 12px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.8;
}

.site-footer h4 {
    margin: 0 0 17px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 11px;
}

.footer-contact-list i {
    width: 18px;
    color: var(--gold-light);
    text-align: center;
}

.footer-contact-list a {
    color: rgba(255,255,255,.67);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-contact-list a:hover {
    color: var(--gold-light);
}

.footer-address {
    max-width: 270px;
    margin: 0 0 18px;
    color: rgba(255,255,255,.63);
    font-size: 11px;
    line-height: 1.8;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(201,162,39,.38);
    border-radius: 999px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 9px;
    font-weight: 700;
    transition:
        background .2s ease,
        color .2s ease;
}

.map-link-btn:hover {
    background: var(--gold);
    color: var(--maroon-deep);
}


/* COPYRIGHT */

.copyright {
    border-top: 1px solid rgba(255,255,255,.08);
}

.copyright .container {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.copyright p,
.copyright span {
    margin: 0;
    color: rgba(255,255,255,.42);
    font-size: 9px;
}

.copyright span {
    color: rgba(201,162,39,.65);
}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.floating-wa {
    position: fixed;
    z-index: 200;
    right: 23px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px 12px 13px;
    border-radius: 999px;
    background: var(--maroon);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(59,13,18,.28);
    font-size: 10px;
    font-weight: 800;
    transition:
        transform .25s ease,
        background .25s ease;
}

.floating-wa i {
    font-size: 21px;
}

.floating-wa:hover {
    background: var(--maroon-dark);
    transform: translateY(-3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 10px;
    }

    .hero-grid {
        grid-template-columns:
            minmax(0, .92fr)
            minmax(400px, 1.08fr);
        gap: 35px;
    }

    .hero-copy h1 {
        font-size: clamp(43px, 5.5vw, 61px);
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-image-inner {
        height: 455px;
    }

    .hero-floating-card {
        left: -10px;
    }
}


/* =====================================================
   TABLET / SMALL LAPTOP
===================================================== */

@media (max-width: 900px) {

    .navbar {
        min-height: 72px;
    }

    .nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 58px;
    }

    .hero-copy {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-eyebrow,
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 650px);
        min-height: auto;
        margin: 0 auto;
    }

    .hero-image-frame {
        width: 100%;
        transform: none;
    }

    .hero-floating-card {
        left: 18px;
        bottom: 38px;
    }

    .reasons-grid,
    .paket-grid,
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 640px) {

    @media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }


    .container {
        
        width: min(
            var(--container),
            calc(100% - 30px)
        );
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .navbar {
        min-height: 67px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-subtitle {
        font-size: 7px;
        letter-spacing: 1.8px;
    }

    .nav-whatsapp {
        padding: 10px 12px;
    }

    .nav-whatsapp span {
        display: none;
    }

    .nav-whatsapp i {
        font-size: 17px;
    }


    /* HERO */

    .hero-premium {
        min-height: auto;
    }

    .hero-grid {
        gap: 34px;
        padding: 44px 0 55px;
    }

    .hero-eyebrow {
        justify-content: center;
        font-size: 8px;
        letter-spacing: 1.8px;
    }

    .hero-badge {
        padding: 7px 11px;
        font-size: 9px;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 12vw, 53px);
        line-height: 1.05;
        letter-spacing: -1.1px;
    }

    .hero-description {
        margin-top: 19px;
        font-size: 12px;
        line-height: 1.75;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 24px;
    }

    .hero-btn {
        width: 100%;
        min-height: 50px;
    }


    /* TRUST */

    .hero-trust {
        width: 100%;
        align-items: stretch;
        gap: 8px;
        margin-top: 27px;
    }

    .trust-item {
        flex: 1;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .trust-icon {
        width: 31px;
        height: 31px;
        font-size: 11px;
    }

    .trust-item strong {
        font-size: 8px;
    }

    .trust-item small {
        font-size: 7px;
    }

    .trust-divider {
        height: auto;
        min-height: 42px;
    }


    /* IMAGE */

    .hero-visual {
        width: 100%;
    }

    .hero-image-frame {
        padding: 8px;
        border-radius: 22px;
    }

    .hero-image-inner {
        height: min(105vw, 430px);
        border-radius: 16px;
    }

    .hero-main-image {
        object-position: 78% center;
    }

    .hero-image-label {
        left: 18px;
        bottom: 18px;
        padding: 8px 10px;
        font-size: 7px;
        letter-spacing: .8px;
    }

    .hero-floating-card {
        left: 10px;
        bottom: 17px;
        max-width: 190px;
        padding: 9px 11px 9px 9px;
    }

    .floating-card-icon {
        width: 29px;
        height: 29px;
        font-size: 11px;
    }

    .hero-floating-card strong {
        font-size: 8px;
    }

    .hero-floating-card small {
        font-size: 7px;
    }

    .hero-deco-one {
        right: 1px;
        top: 40px;
        width: 16px;
        height: 16px;
    }

    .hero-deco-two {
        right: 18px;
        bottom: 13px;
        width: 8px;
        height: 8px;
    }


    /* SECTIONS */

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-title {
        font-size: 31px;
    }

    .section-heading p {
        font-size: 11px;
    }

    .reasons-grid,
    .paket-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        padding: 29px 24px;
    }

    .paket-card {
        padding: 30px 23px 24px;
    }

    .menu-info {
        padding: 20px 20px 23px;
    }


    /* PAKET IMAGE MOBILE */

    .paket-image {
        margin-bottom: 16px;
    }

    .paket-image img {
        width: 100%;
        height: auto;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 58px 0 45px;
    }

    .footer-brand-col {
        grid-column: auto;
    }

    .copyright .container {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }


    /* FLOATING WA */

    .floating-wa {
        right: 14px;
        bottom: 14px;
        padding: 11px 13px 11px 11px;
    }

    .floating-wa span {
        display: none;
    }

    .floating-wa i {
        font-size: 22px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .brand-text {
        display: none;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .hero-trust {
        gap: 4px;
    }

    .trust-item small {
        display: none;
    }

    .hero-image-inner {
        height: 330px;
    }
}


/* =====================================================
   ACCESSIBILITY
===================================================== */

a:focus-visible {
    outline: 3px solid rgba(201,162,39,.55);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}


/* =====================================================
   TESTIMONI - BINTANG RATING
===================================================== */

/* =====================================================
   TESTIMONI - RATING BINTANG
   ===================================================== */

/* =====================================================
   TESTIMONI - RATING BINTANG
===================================================== */

#testimoni .testimonial-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

#testimoni .testimonial-rating .rating-star {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: bold;
    line-height: 1;
    color: #d8d0c8 !important;
}

/* BINTANG AKTIF SESUAI RATING */
#testimoni .testimonial-rating .rating-star.active {
    color: #f5b301 !important;
}
}

/* =====================================================
   NAVBAR FINAL - DESKTOP TANPA HAMBURGER
===================================================== */

@media (min-width: 901px) {

    .navbar {
        gap: 16px;
    }

    .nav-links {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex: 1;
        min-width: 0;
    }

    .nav-links a {
        font-size: 10px;
        white-space: nowrap;
    }

    .nav-whatsapp {
        flex-shrink: 0;
        padding: 11px 15px;
    }

    .nav-toggle {
        display: none !important;
    }
}

/* =====================================================
   NAVBAR FINAL - BRAND + NAVIGASI DINAMIS
===================================================== */

@media (min-width: 901px) {

    /* Jarak elegan antara logo/brand dan navigasi */
    .brand-logo {
        margin-right: 45px;
        flex-shrink: 0;
    }

    /* Navigasi desktop */
    .nav-links {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex: 1;
        min-width: 0;
    }

    /* Tulisan menu */
    .nav-links a {
        position: relative;
        padding: 29px 0;
        font-size: 10px;
        white-space: nowrap;
    }

    /* Garis emas */
    .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 21px;
        width: 0;
        height: 3px;
        background: var(--gold);
        transition: width 0.3s ease;
    }

    /* Menu aktif */
    .nav-links a.active {
        color: var(--maroon);
    }

    .nav-links a.active::after {
        width: 100%;
    }

    /* Hamburger desktop dihilangkan */
    .nav-toggle {
        display: none !important;
    }

    /* Tombol WhatsApp */
    .nav-whatsapp {
        flex-shrink: 0;
    }
}

/* =====================================================
   HERO PREMIUM - FINAL POLISH
===================================================== */

@media (min-width: 901px) {

    .hero-premium {
        min-height: 680px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        gap: 72px;
        padding: 0px 0 70px;
    }

    .hero-copy {
        max-width: 570px;
    }

    /* Eyebrow lebih elegan */
    .hero-eyebrow {
        margin-bottom: 19px;
        font-size: 9px;
        letter-spacing: 3px;
    }

    .eyebrow-line {
        width: 42px;
    }

    /* Badge */
    .hero-badge {
        margin-bottom: 23px;
        padding: 9px 15px;
        font-size: 10px;
        letter-spacing: .2px;
    }

    /* Judul utama */
    .hero-copy h1 {
        font-size: clamp(50px, 4.6vw, 68px);
        line-height: 1.04;
        letter-spacing: -1.5px;
    }

    .hero-copy h1 span {
        margin-top: 3px;
    }

    /* Deskripsi */
    .hero-description {
        max-width: 520px;
        margin-top: 25px;
        font-size: 14px;
        line-height: 1.9;
    }

    /* Tombol */
    .hero-actions {
        margin-top: 29px;
        gap: 13px;
    }

    .hero-btn {
        min-height: 53px;
        padding: 0 21px;
        font-size: 11px;
    }

    /* Trust / kepercayaan */
    .hero-trust {
        margin-top: 34px;
        gap: 15px;
    }

    /* FOTO HERO */
    .hero-visual {
        min-height: 535px;
    }

    .hero-image-frame {
        width: min(100%, 610px);
        padding: 10px;
        border-radius: 28px;
        transform: rotate(0.7deg);
        box-shadow: 0 28px 65px rgba(59, 13, 18, .17);
    }

    .hero-image-inner {
        height: 510px;
        border-radius: 21px;
    }

    .hero-main-image {
        object-position: center center;
        transform: scale(1.035);
        transition: transform .7s ease;
    }

    .hero-image-frame:hover .hero-main-image {
        transform: scale(1.065);
    }

    /* Label foto */
    .hero-image-label {
        left: 25px;
        bottom: 24px;
        padding: 10px 14px;
        font-size: 8px;
    }
}


/* =====================================================
   HERO MOBILE
===================================================== */

@media (max-width: 900px) {

    .hero-premium {
        min-height: auto;
    }

    .hero-grid {
        gap: 42px;
        padding: 48px 0 55px;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 11vw, 58px);
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-image-frame {
        transform: none;
    }

    .hero-image-inner {
        height: 420px;
    }
}

/* =========================================================
   NAVBAR FINAL — ANDRIA KITCHEN
   PREMIUM • ELEGANT • CLEAN
   Beranda dihapus
   Hamburger dihilangkan
========================================================= */


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* =========================================================
   NAVBAR UTAMA
========================================================= */

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 24px;
}


/* =========================================================
   LOGO + BRAND
========================================================= */

.brand-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
    margin-right: 32px;
    text-decoration: none;
}


/* LOGO BULAT */

.brand-logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 50%;
}


/* TEXT BRAND */

.brand-text {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}


/* NAMA ANDRIA KITCHEN */

.brand-title {
    font-size: 27px;
    line-height: 1;
    white-space: nowrap;
}


/* PREMIUM CATERING */

.brand-subtitle {
    margin-top: 7px;
    font-size: 9px;
    letter-spacing: 3px;
    white-space: nowrap;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav-links {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}


/* =========================================================
   LINK MENU
========================================================= */

.nav-links a {
    position: relative;
    display: inline-block !important;

    padding: 29px 0;

    color: #5f5651;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* HOVER */

.nav-links a:hover {
    color: var(--maroon);
}


/* MENU AKTIF */

.nav-links a.active {
    color: var(--maroon);
}


/* =========================================================
   GARIS EMAS
========================================================= */

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 20px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.25s ease;
}


.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* =========================================================
   TOMBOL WHATSAPP — PESAN SEKARANG
========================================================= */

.nav-whatsapp {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    white-space: nowrap;

    padding: 12px 20px;

    font-size: 13px;
    font-weight: 700;

    border-radius: 30px;
}


/* ICON WHATSAPP */

.nav-whatsapp i {
    font-size: 17px;
}


/* =========================================================
   HAMBURGER — DIMATIKAN TOTAL
========================================================= */

.nav-toggle {
    display: none !important;
}


/* =========================================================
   MOBILE NAVIGATION — DIMATIKAN TOTAL
========================================================= */

.mobile-nav {
    display: none !important;
}


/* =========================================================
   LAPTOP / LAYAR MENENGAH
========================================================= */

@media (max-width: 1250px) {

    .navbar {
        gap: 15px;
    }

    .brand-logo {
        margin-right: 18px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-whatsapp {
        padding: 11px 16px;
        font-size: 12px;
    }
}


/* =========================================================
   LAPTOP KECIL
========================================================= */

@media (max-width: 1100px) {

    .navbar {
        gap: 10px;
    }

    .brand-logo {
        margin-right: 10px;
        gap: 9px;
    }

    .brand-logo img {
        width: 50px;
        height: 50px;
    }

    .brand-title {
        font-size: 23px;
    }

    .brand-subtitle {
        font-size: 8px;
        letter-spacing: 2.4px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .nav-whatsapp {
        padding: 10px 13px;
        font-size: 11px;
    }

    .nav-whatsapp i {
        font-size: 15px;
    }
}


/* =========================================================
   LAYAR 901px – 1000px
========================================================= */

@media (max-width: 1000px) {

    .navbar {
        gap: 7px;
    }

    .brand-logo {
        margin-right: 5px;
    }

    .brand-logo img {
        width: 46px;
        height: 46px;
    }

    .brand-title {
        font-size: 20px;
    }

    .brand-subtitle {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .nav-links {
        gap: 9px;
    }

    .nav-links a {
        font-size: 10px;
    }

    .nav-whatsapp {
        padding: 9px 11px;
        font-size: 10px;
    }
}


/* =========================================================
   DI BAWAH 900px
   NAVIGASI TETAP ADA
   HAMBURGER TETAP HILANG
========================================================= */

@media (max-width: 900px) {

    .site-header {
        overflow-x: auto;
    }

    .navbar {
        width: max-content;
        min-width: 100%;
        padding: 0 15px;
        gap: 10px;
    }

    .brand-logo {
        flex-shrink: 0;
    }

    .nav-links {
        display: flex !important;
        flex: 0 0 auto;
        flex-shrink: 0;
        gap: 12px;
    }

    .nav-links a {
        font-size: 10px;
        padding: 25px 0;
    }

    .nav-whatsapp {
        flex-shrink: 0;
    }

    .nav-toggle {
        display: none !important;
    }

    .mobile-nav {
        display: none !important;
    }
}


/* =========================================================
   HP
========================================================= */

@media (max-width: 640px) {

    .navbar {
        min-height: 65px;
        padding: 0 10px;
        gap: 9px;
    }

    .brand-logo {
        gap: 7px;
    }

    .brand-logo img {
        width: 40px;
        height: 40px;
    }

    .brand-title {
        font-size: 17px;
    }

    .brand-subtitle {
        margin-top: 4px;
        font-size: 6px;
        letter-spacing: 1.7px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 9px;
        padding: 22px 0;
    }

    .nav-whatsapp {
        padding: 8px 11px;
    }

    .nav-whatsapp span {
        display: none;
    }
}

/* =========================================================
   ANDRIA KITCHEN
   PREMIUM FOOTER FINAL
   ========================================================= */

.site-footer {
    position: relative;
    margin-top: 100px;
    background: #4a160f;
    color: #ffffff;
    overflow: hidden;
}


/* =========================================================
   DEKORASI BAGIAN ATAS
   ========================================================= */

.site-footer::before {
    content: "";
    position: absolute;
    top: -58px;
    left: -3%;
    width: 106%;
    height: 95px;
    background: #fbf8f3;
    border-radius: 50% 50% 0 0 / 55% 55% 0 0;
    border-bottom: 2px solid #c99b55;
}


/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

.site-footer::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -120px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(201, 155, 85, 0.15);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   FOOTER CONTAINER
   ========================================================= */

.site-footer .footer-content {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;

    padding: 95px 0 55px;

    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr
        .85fr;

    gap: 48px;
}


/* =========================================================
   FOOTER COLUMN
   ========================================================= */

.site-footer .footer-col {
    position: relative;
}


/* GARIS PEMISAH */

.site-footer .footer-col:not(:first-child)::before {
    content: "";

    position: absolute;

    left: -24px;
    top: 8px;

    width: 1px;
    height: calc(100% - 16px);

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(201, 155, 85, .45),
            transparent
        );
}


/* =========================================================
   LOGO
   ========================================================= */

.site-footer .footer-logo-wrapper {
    width: 112px;
    height: 112px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(201, 155, 85, .65);

    background:
        rgba(255, 255, 255, .04);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .18);
}


.site-footer .footer-logo {
    width: 92px;
    height: 92px;

    object-fit: contain;

    display: block;
}


/* =========================================================
   BRAND
   ========================================================= */

.site-footer .footer-brand {
    margin: 0 0 9px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 31px;

    line-height: 1.1;

    font-weight: 700;
}


.site-footer .footer-brand .highlight-gold {
    color: #d5ad67;
}


.site-footer .footer-tagline {
    max-width: 340px;

    margin: 0;

    color: rgba(255, 255, 255, .72);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER KICKER
   ========================================================= */

.site-footer .footer-kicker {
    display: block;

    margin-bottom: 9px;

    color: #d5ad67;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .32em;

    text-transform: uppercase;
}


/* =========================================================
   FOOTER TITLE
   ========================================================= */

.site-footer .footer-col h4 {
    margin: 0 0 24px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;

    line-height: 1.15;
}


/* =========================================================
   CONTACT LIST
   ========================================================= */

.site-footer .footer-contact-list {
    list-style: none;

    padding: 0;
    margin: 0;
}


.site-footer .footer-contact-list li {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 17px;
}


.site-footer .footer-contact-list i {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d4a85d,
            #9e6826
        );

    color: #ffffff;

    font-size: 14px;
}


.site-footer .footer-contact-list a {
    padding-top: 6px;

    color: rgba(255, 255, 255, .88);

    text-decoration: none;

    font-size: 12px;

    line-height: 1.5;

    transition: .2s ease;
}


.site-footer .footer-contact-list a:hover {
    color: #e0bd7c;
}


/* =========================================================
   ADDRESS
   ========================================================= */

.site-footer .footer-address {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, .76);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   MAP BUTTON
   ========================================================= */

.site-footer .map-link-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 18px;

    border: 1px solid #c99b55;

    border-radius: 999px;

    color: #e1bd79;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    transition: .25s ease;
}


.site-footer .map-link-btn:hover {
    background: #c99b55;

    color: #42130e;

    transform:
        translateY(-2px);
}


/* =========================================================
   MENU CEPAT
   ========================================================= */

.site-footer .footer-quick-links {
    list-style: none;

    padding: 0;
    margin: 0;
}


.site-footer .footer-quick-links li {
    margin-bottom: 12px;
}


.site-footer .footer-quick-links a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: rgba(255, 255, 255, .78);

    text-decoration: none;

    font-size: 12px;

    transition: .2s ease;
}


.site-footer .footer-quick-links a::before {
    content: "›";

    color: #d5ad67;

    font-size: 18px;

    line-height: 0;
}


.site-footer .footer-quick-links a:hover {
    color: #ffffff;

    transform:
        translateX(3px);
}


/* =========================================================
   PESAN SEKARANG
   ========================================================= */

.site-footer .footer-wa-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    width: 100%;

    margin-top: 22px;

    padding: 12px 16px;

    border: 1px solid #d5ad67;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #c99b55,
            #a87535
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    transition: .25s ease;
}


.site-footer .footer-wa-btn:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, .20);
}


/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.site-footer .footer-social {
    display: flex;

    gap: 9px;

    margin-top: 22px;
}


.site-footer .footer-social a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(213, 173, 103, .65);

    border-radius: 50%;

    color: #d5ad67;

    text-decoration: none;

    transition: .25s ease;
}


.site-footer .footer-social a:hover {
    background: #d5ad67;

    color: #43150f;

    transform:
        translateY(-2px);
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.site-footer .copyright {
    position: relative;

    z-index: 2;

    border-top:
        1px solid
        rgba(
            213,
            173,
            103,
            .22
        );
}


.site-footer .copyright .container {
    width: min(1180px, calc(100% - 60px));

    margin: 0 auto;

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.site-footer .copyright p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .55
        );

    font-size: 10px;
}


.site-footer .copyright span {
    color:
        #d5ad67;

    font-size: 10px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .site-footer .footer-content {

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap: 45px 35px;
    }


    .site-footer .footer-col:nth-child(3)::before,
    .site-footer .footer-col:nth-child(4)::before {

        display: none;
    }
}


@media (max-width: 600px) {

    .site-footer {
        margin-top: 75px;
    }


    .site-footer::before {

        top: -35px;

        height: 60px;
    }


    .site-footer .footer-content {

        width:
            calc(100% - 36px);

        grid-template-columns:
            1fr;

        gap: 38px;

        padding:
            70px 0 40px;
    }


    .site-footer .footer-col:not(:first-child)::before {

        display: none;
    }


    .site-footer .footer-col {

        padding-bottom: 5px;
    }


    .site-footer .footer-logo-wrapper {

        width: 96px;
        height: 96px;
    }


    .site-footer .footer-logo {

        width: 78px;
        height: 78px;
    }


    .site-footer .footer-brand {

        font-size: 27px;
    }


    .site-footer .footer-col h4 {

        font-size: 23px;
    }


    .site-footer .copyright .container {

        width:
            calc(100% - 36px);

        min-height: 90px;

        flex-direction:
            column;

        justify-content:
            center;

        text-align:
            center;

        gap: 7px;
    }
}


/* =========================================================
   ANDRIA KITCHEN — NAVBAR ELEGANT PREMIUM
   TAHAP 1 — PERBAIKAN PROPORSI NAVBAR
   ========================================================= */

/* NAVBAR UTAMA */
.site-header .navbar {
    height: 112px;
    min-height: 112px;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* =========================================================
   LOGO + BRAND
   ========================================================= */

.site-header .brand-logo {
    display: inline-flex !important;
    align-items: center;

    gap: 14px;
    margin-right: 30px;

    flex-shrink: 0;
    text-decoration: none;
}


/* LOGO BULAT */
.site-header .brand-logo img {
    width: 72px;
    height: 72px;

    display: block;

    object-fit: contain;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    border-radius: 50%;

    flex-shrink: 0;
}


/* BRAND TEXT */
.site-header .brand-text {
    display: flex !important;
    flex-direction: column;
    justify-content: center;

    flex-shrink: 0;
}


/* NAMA ANDRIA KITCHEN */
.site-header .brand-title {
    color: var(--maroon-dark);

    font-family: "Playfair Display", serif;

    font-size: 34px;
    font-weight: 600;

    line-height: 1;

    white-space: nowrap;
}


/* WARNA KITCHEN */
.site-header .brand-title strong {
    color: var(--gold);
}


/* PREMIUM CATERING */
.site-header .brand-subtitle {
    margin-top: 8px;

    color: #8b7e72;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    line-height: 1;

    white-space: nowrap;
}


/* =========================================================
   MENU NAVIGASI
   ========================================================= */

.site-header .nav-links {
    display: flex !important;

    align-items: center;
    justify-content: center;

    gap: 25px;

    flex: 1 1 auto;
    min-width: 0;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* LINK MENU */
.site-header .nav-links a {
    position: relative;

    display: inline-flex !important;
    align-items: center;

    height: 52px;
    padding: 0;

    color: #5f5651;

    text-decoration: none;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    transition:
        color .25s ease,
        transform .25s ease;
}


/* HOVER */
.site-header .nav-links a:hover {
    color: var(--maroon);
}


/* MENU AKTIF */
.site-header .nav-links a.active {
    color: var(--maroon);
}


/* =========================================================
   GARIS EMAS MENU AKTIF
   ========================================================= */

.site-header .nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 3px;

    width: 0;
    height: 2px;

    margin: auto;

    background: var(--gold);

    transition: width .25s ease;
}


.site-header .nav-links a:hover::after,
.site-header .nav-links a.active::after {
    width: 100%;
}


/* =========================================================
   TOMBOL PESAN SEKARANG
   ========================================================= */

.site-header .nav-whatsapp {
    width: 180px;
    min-width: 180px;

    height: 50px;
    min-height: 50px;
    max-height: 50px;

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 18px !important;

    margin: 0;

    border-radius: 999px;

    background: var(--maroon);
    color: var(--white);

    text-decoration: none;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    box-shadow:
        0 8px 22px rgba(125, 32, 40, .18);

    flex-shrink: 0;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


/* ICON WHATSAPP */
.site-header .nav-whatsapp i {
    font-size: 21px;

    flex-shrink: 0;
}


/* HOVER TOMBOL */
.site-header .nav-whatsapp:hover {
    background: var(--maroon-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(125, 32, 40, .25);
}


/* =========================================================
   HAMBURGER TETAP HILANG
   ========================================================= */

.site-header .nav-toggle {
    display: none !important;
}


/* MOBILE PANEL TETAP TIDAK DIPAKAI
   untuk sementara mengikuti desain navbar sekarang */
.site-header .mobile-nav {
    display: none !important;
}


/* =========================================================
   LAYAR 1200–1400 PX
   ========================================================= */

@media (max-width: 1400px) {

    .site-header .navbar {
        gap: 22px;
    }

    .site-header .brand-logo {
        margin-right: 15px;
    }

    .site-header .brand-logo img {
        width: 66px;
        height: 66px;
    }

    .site-header .brand-title {
        font-size: 30px;
    }

    .site-header .nav-links {
        gap: 18px;
    }

    .site-header .nav-links a {
        font-size: 15px;
    }

    .site-header .nav-whatsapp {
        width: 170px;
        min-width: 170px;
        font-size: 14px;
    }
}


/* =========================================================
   LAYAR 901–1100 PX
   ========================================================= */

@media (max-width: 1100px) and (min-width: 901px) {

    .site-header .navbar {
        height: 100px;
        min-height: 100px;

        gap: 12px;
    }

    .site-header .brand-logo {
        gap: 9px;
        margin-right: 5px;
    }

    .site-header .brand-logo img {
        width: 55px;
        height: 55px;
    }

    .site-header .brand-title {
        font-size: 24px;
    }

    .site-header .brand-subtitle {
        font-size: 8px;
        letter-spacing: 2.3px;
    }

    .site-header .nav-links {
        gap: 10px;
    }

    .site-header .nav-links a {
        font-size: 12px;
    }

    .site-header .nav-whatsapp {
        width: 150px;
        min-width: 150px;

        height: 46px;
        min-height: 46px;
        max-height: 46px;

        font-size: 12px;
    }

    .site-header .nav-whatsapp i {
        font-size: 17px;
    }
}

/* =========================================================
   ANDRIA KITCHEN
   NAVBAR - PESAN SEKARANG TANPA GARIS KUNING
   GARIS MENU NAVIGASI LAIN TETAP AKTIF
   ========================================================= */


/* ---------------------------------------------------------
   MENU NAVIGASI BIASA
   Garis kuning tetap muncul saat hover / aktif
   --------------------------------------------------------- */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 20px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.25s ease;
}


/* Saat menu biasa dipilih */
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* ---------------------------------------------------------
   TOMBOL PESAN SEKARANG
   Hilangkan garis kuning sepenuhnya
   --------------------------------------------------------- */

.nav-whatsapp::after,
.nav-whatsapp:hover::after,
.nav-whatsapp:focus::after,
.nav-whatsapp:active::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}


/* Pastikan tombol tetap tanpa underline */
.nav-whatsapp {
    text-decoration: none !important;
}


/* Jangan biarkan hover menampilkan garis */
.nav-whatsapp:hover {
    text-decoration: none !important;
}


/* ---------------------------------------------------------
   WARNA TEKS & ICON PESAN SEKARANG
   Putih cream
   --------------------------------------------------------- */

.nav-whatsapp,
.nav-whatsapp span,
.nav-whatsapp i {
    color: #fffaf0 !important;
}
/* =========================================================
   ANDRIA KITCHEN
   NAVBAR - UKURAN MENU LEBIH BESAR & PROPORSIONAL
   ========================================================= */

@media (min-width: 1101px) {

    .nav-links {
        display: flex !important;
        align-items: center;
        justify-content: center;

        gap: 22px;

        white-space: nowrap;
    }

    .nav-links a {
        font-size: 15px !important;
        font-weight: 600;

        white-space: nowrap;

        padding: 29px 0;

        line-height: 1;
    }

}


/* =========================================================
   LAPTOP AGAR TETAP 1 BARIS
   ========================================================= */

@media (min-width: 901px) and (max-width: 1100px) {

    .nav-links {
        gap: 13px;
        white-space: nowrap;
    }

    .nav-links a {
        font-size: 12px !important;
        white-space: nowrap;
    }

}

/* =========================================================
   ANDRIA KITCHEN
   NAVBAR MENU — 16px
   PROPORSIONAL • ELEGAN • TETAP 1 BARIS
   ========================================================= */

@media (min-width: 1101px) {

    .nav-links {
        display: flex !important;
        align-items: center;
        justify-content: center;

        gap: 18px;

        white-space: nowrap;
    }

    .nav-links a {
        font-size: 16px !important;
        font-weight: 600;

        white-space: nowrap;

        padding: 29px 0;

        line-height: 1;
    }

}


/* =========================================================
   LAPTOP
   Tetap proporsional dan tidak turun baris
   ========================================================= */

@media (min-width: 901px) and (max-width: 1100px) {

    .nav-links {
        gap: 12px;

        white-space: nowrap;
    }

    .nav-links a {
        font-size: 12px !important;

        white-space: nowrap;
    }

}
/* =========================================================
   ANDRIA KITCHEN — FINAL NAVBAR
   HANYA MEMPERBESAR TEKS MENU
   TOMBOL PESAN SEKARANG DIPERTAHANKAN
   ========================================================= */

@media (min-width: 1101px) {

    /* MENU NAVIGASI */
    .site-header .nav-links {
        gap: 18px !important;
        white-space: nowrap !important;
    }

    .site-header .nav-links a {
        font-size: 16px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
    }

    /* =====================================================
       PESAN SEKARANG — JANGAN UBAH UKURAN & BACKGROUND
       ===================================================== */

    .site-header .nav-whatsapp {
        background: var(--maroon) !important;
        color: #fffaf0 !important;

        /* ukuran mengikuti tombol yang sudah ada */
        width: 180px !important;
        min-width: 180px !important;
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;

        font-size: 15px !important;
        font-weight: 700 !important;
        border-radius: 999px !important;
    }

    .site-header .nav-whatsapp i,
    .site-header .nav-whatsapp span {
        color: #fffaf0 !important;
    }

    /* HILANGKAN GARIS EMAS DARI PESAN SEKARANG */
    .site-header .nav-whatsapp::after,
    .site-header .nav-whatsapp:hover::after,
    .site-header .nav-whatsapp:focus::after,
    .site-header .nav-whatsapp:active::after {
        content: none !important;
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        background: none !important;
    }
}


/* =========================================================
   LAYAR 901–1100 PX
   ========================================================= */

@media (min-width: 901px) and (max-width: 1100px) {

    .site-header .nav-links {
        gap: 9px !important;
        white-space: nowrap !important;
    }

    .site-header .nav-links a {
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    /* PESAN SEKARANG TETAP PROPORSIONAL */
    .site-header .nav-whatsapp {
        background: var(--maroon) !important;
        color: #fffaf0 !important;

        width: 150px !important;
        min-width: 150px !important;
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;

        font-size: 12px !important;
        border-radius: 999px !important;
    }

    .site-header .nav-whatsapp i,
    .site-header .nav-whatsapp span {
        color: #fffaf0 !important;
    }

    .site-header .nav-whatsapp::after,
    .site-header .nav-whatsapp:hover::after,
    .site-header .nav-whatsapp:focus::after,
    .site-header .nav-whatsapp:active::after {
        content: none !important;
        display: none !important;
    }
}
/* =========================================================
   ANDRIA KITCHEN — PENEGASAN BRAND NAVBAR
   HANYA LOGO + NAMA WEBSITE
   ========================================================= */

@media (min-width: 1101px) {

    .site-header .brand-logo {
        gap: 14px !important;
        flex-shrink: 0 !important;
    }

    .site-header .brand-logo img {
        width: 64px !important;
        height: 64px !important;
    }

    .site-header .brand-title {
        font-size: 31px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .site-header .brand-subtitle {
        font-size: 9.5px !important;
        letter-spacing: 3px !important;
    }
}

/* =========================================================
   ANDRIA KITCHEN — FINAL SPACING NAVBAR
   HANYA MENGATUR RUANG ANTARA BRAND & NAVIGASI
   ========================================================= */

@media (min-width: 1101px) {

    .site-header .navbar {
        width: min(1140px, calc(100% - 40px)) !important;
        margin: 0 auto !important;
        gap: 16px !important;
    }

    .site-header .brand-logo {
        margin-right: 8px !important;
        flex-shrink: 0 !important;
    }

    .site-header .nav-links {
        gap: 16px !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        justify-content: flex-end !important;
    }

    .site-header .nav-links a {
        white-space: nowrap !important;
    }

    /* PESAN SEKARANG — TIDAK DIUBAH */
    .site-header .nav-whatsapp {
        flex-shrink: 0 !important;
    }
}
/* =========================================================
   ANDRIA KITCHEN — SECTION VIEW PREMIUM
   Hanya untuk halaman website utama
   Tidak mengubah navbar / dashboard
   ========================================================= */

@media (min-width: 1101px) {

    /* Mengurangi ruang kosong sebelum isi section */
    .site-header ~ main .section {
        padding-top: 10px !important;
        padding-bottom: 70px !important;
    }

    /* Heading section lebih dekat dengan navbar */
    .site-header ~ main .section .section-heading {
        margin-bottom: 30px !important;
    }

    /* Paket Catering */
    #paket .paket-grid {
        gap: 22px !important;
    }

    #paket .paket-card {
        padding-top: 24px !important;
        padding-bottom: 25px !important;
    }

    /* Membuat area foto lebih proporsional
       tanpa memotong gambar */
    #paket .paket-image {
        height: 330px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        background: #f5f1ed !important;
    }

    #paket .paket-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* Galeri */
    #galeri .section-heading {
        margin-bottom: 30px !important;
    }

    /* Testimoni */
    #testimoni .section-heading {
        margin-bottom: 30px !important;
    }

    /* Promo */
    #promo .section-heading {
        margin-bottom: 30px !important;
    }
}

/* =====================================================
   HILANGKAN FLOATING WHATSAPP - CHAT KAMI
   ===================================================== */

.floating-wa {
    display: none !important;
}

/* =========================================================
   ANDRIA KITCHEN — SOFT SCROLL REVEAL
   TAHAP 1
   ========================================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1),
        filter 0.8s ease;

    will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Aksesibilitas */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* =====================================================
   KHUSUS KONTAK
   Turunkan isi footer saat #kontak menjadi target
   Tidak memengaruhi navbar/section lainnya
   ===================================================== */

#kontak:target .footer-content {
    transform: none;
}

/* =========================================================
   ANDRIA KITCHEN
   FOOTER — BATIK GOLD LINE DECORATION
   SENTUHAN TIPIS & ELEGAN
   ========================================================= */

.site-footer .copyright {
    position: relative;
}


/* =========================================================
   GARIS ORNAMEN BATIK
   ========================================================= */

.site-footer .copyright::before {
    content: "";

    position: absolute;

    left: 50%;
    top: -1px;

    transform: translateX(-50%);

    width: min(92%, 1080px);
    height: 8px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(213,173,103,.18) 8%,
            rgba(213,173,103,.55) 20%,
            rgba(213,173,103,.55) 80%,
            rgba(213,173,103,.18) 92%,
            transparent 100%
        );

    opacity: .75;

    pointer-events: none;
}


/* =========================================================
   MOTIF GEOMETRIS BATIK
   ========================================================= */

.site-footer .copyright::after {
    content: "";

    position: absolute;

    left: 50%;
    top: -5px;

    transform: translateX(-50%) rotate(45deg);

    width: 10px;
    height: 10px;

    border:
        1px solid
        rgba(213,173,103,.72);

    background: #4a160f;

    box-shadow:
        0 0 0 4px #4a160f;

    pointer-events: none;
}


/* =========================================================
   GARIS BATIK TAMBAHAN
   ========================================================= */

.site-footer .copyright .container {
    position: relative;
}


/* Motif kecil kiri dan kanan */

.site-footer .copyright .container::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: -5px;

    height: 10px;

    background:
        repeating-linear-gradient(
            135deg,
            transparent 0px,
            transparent 8px,
            rgba(213,173,103,.22) 8px,
            rgba(213,173,103,.22) 9px,
            transparent 9px,
            transparent 17px
        );

    opacity: .55;

    pointer-events: none;
}

/* =====================================================
   POSISI KONTAK — NAIK SEDIKIT
   ===================================================== */

#kontak {
    scroll-margin-top: 25px;
}