*,
*::before,
*::after {
    box-sizing: border-box;
}
html, body {
  overflow-y: scroll; /* tetap aktif scroll tapi stabil */
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/Edge */
}

img {
    max-width: 100%;
    display: block;
}

:root {
    --nav-height: 88px;
}

/* Menu Lengkap */
.menu-lengkap {
    background: #181818;
    padding: 4rem 0 5rem 0;
}
.menu-lengkap h2 {
    color: #e0b973;
    font-family: 'Playfair Display', serif;
    --font-wght: 700;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}
/* Menu Lengkap Vertikal */
.menu-vertikal {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.menu-category {
    background: #232323;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(224,185,115,0.07);
    padding: 2rem 2.5rem;
    width: min(1100px, 100%);
    max-width: 1100px;
    margin: 0 auto;
}
.menu-category h3 {
    color: #e0b973;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    --font-wght: 700;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: center;
}
.menu-list-2col {
    display: grid;
    gap: 2rem 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: flex-start;
}
.menu-list-2col > div {
    min-width: 0;
}
.menu-group {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}
.menu-group:last-child {
    margin-bottom: 0;
}
.menu-group-title {
    display: block;
    color: #fffbe6;
    font-size: 1.1rem;
    --font-wght: 600;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 0.35rem;
}
.menu-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 2px solid #292929;
    color: #fff;
    font-size: 1rem;
}
.menu-group-item:last-of-type {
    border-bottom: none;
}
.menu-group-name {
    flex: 1;
    padding-right: 1rem;
}
.menu-group-price {
    color: #e0b973;
    --font-wght: 600;
    font-weight: 600;
    margin-left: 1.5rem;
    white-space: nowrap;
}
.location {
    background: #131313;
    padding: 5rem 0 6rem 0;
}

.location h2 {
    font-family: 'Playfair Display', serif;
    color: #e0b973;
    font-size: 2.5rem;
    --font-wght: 700;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.location-grid {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.location-info {
    flex: 1 1 320px;
    background: #1f1f1f;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.location-info p {
    margin: 0;
    font-size: 1.05rem;
}

.location-address {
    font-style: normal;
    line-height: 1.8;
    color: #fffbe6;
    background: rgba(224,185,115,0.08);
    border-left: 3px solid rgba(224,185,115,0.6);
    padding: 1rem 1.25rem;
    border-radius: 12px;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.grabfood-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.68);
}

.location-map {
    flex: 1 1 360px;
    border-radius: 20px;
    overflow: hidden;
    background: #1f1f1f;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    min-height: 320px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

@media (max-width: 900px) {
    .menu-list-2col {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .menu-category {
        max-width: 100%;
        width: 100%;
    }
    .location-grid {
        flex-direction: column;
    }
    .location-info,
    .location-map {
        width: 100%;
    }
}
body {
    margin: 0;
    --font-wght: 400;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: var(--font-wght, 400);
    font-optical-sizing: auto;
    font-synthesis: none;
    background: #181818;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;
    isolation: isolate;
    padding-top: var(--nav-height);
}


strong,
b {
    --font-wght: 700;
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    --font-wght: 700;
}

body::-webkit-scrollbar {
  display: none;               /* Safari + Chrome */
}
[id] {
    scroll-margin-top: calc(var(--nav-height) + 24px);
}
header.hero {
    position: relative;
    isolation: isolate;
    background: #181818;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /*padding: calc(var(--nav-height) + 2.5rem) 5vw 3.5rem 5vw;*/
    gap: 2rem;
    overflow: hidden;
    padding: 0 5vw 3.5rem 5vw;

}

header.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/plangddw.jpg') center/cover no-repeat;
    filter: blur(5px) saturate(110%);
    transform: scale(1.12);
    z-index: -2;
}

header.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: -1;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5vw;
    background: rgba(24,24,24,0.95);
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    z-index: 9999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    letter-spacing: 1.8px;
    color: #e0b973;
    --font-wght: 700;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    line-height: 1;
}

.logo-text {
    display: inline-block;
    padding: 10px 0;
}

.logo-image {
    display: none;
    width: 90px;
    height: auto;
    margin: 10px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1250;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    --font-wght: 600;
    font-weight: 600;
    transition: color 0.5s;
}
.nav-links a:hover {
    color: #e0b973;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
}
.nav-toggle:focus-visible {
    outline: 2px solid #e0b973;
    outline-offset: 4px;
}
.nav-toggle .bar {
    width: 26px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 720px;
    padding: 4.5rem 0;
    position: relative;
    z-index: 1;
}
.hero-kicker {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    --font-wght: 600;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #e0b973;
    --font-wght: 700;
    font-weight: 700;
    margin-bottom: 0;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.btn-primary {
    background: linear-gradient(90deg, #e0b973 60%, #fffbe6 100%);
    color: #2a1d0c;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    --font-wght: 600;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(224,185,115,0.15);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.4px;
}
.btn-primary:hover,
.btn-primary:focus-visible {
    background: #fffbe6;
    color: #a37729;
    text-decoration: none;
    transform: translateY(-1px);
}
.btn-primary:focus-visible {
    outline: 2px solid rgba(224,185,115,0.8);
    outline-offset: 4px;
}

.btn-secondary {
    background: rgba(224,185,115,0.12);
    color: #e0b973;
    padding: 0.9rem 2.3rem;
    border: 1px solid rgba(224,185,115,0.6);
    border-radius: 30px;
    font-size: 1.05rem;
    --font-wght: 600;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.3px;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(224,185,115,0.28);
    color: #2a1d0c;
    border-color: rgba(224,185,115,0.9);
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-secondary:focus-visible {
    outline: 2px solid rgba(224,185,115,0.8);
    outline-offset: 4px;
}

section {
    padding: 5rem 0;
}
.container {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
}
.about h2, .menu h2, .reservation h2 {
    font-family: 'Playfair Display', serif;
    color: #e0b973;
    font-size: 2.5rem;
    --font-wght: 700;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
.about p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.menu-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(260px, 75vw, 320px);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-bottom: 1.5rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 5vw;
    scroll-padding-left: 5vw;
    scroll-padding-right: 5vw;
    scrollbar-width: thin;
    scrollbar-color: rgba(224,185,115,0.65) rgba(224,185,115,0.12);
}

.menu-list::-webkit-scrollbar {
    height: 8px;
}

.menu-list::-webkit-scrollbar-track {
    background: rgba(224,185,115,0.12);
    border-radius: 999px;
}

.menu-list::-webkit-scrollbar-thumb {
    background: rgba(224,185,115,0.65);
    border-radius: 999px;
}

.menu-list::-webkit-scrollbar-thumb:hover {
    background: rgba(224,185,115,0.8);
}
.menu-item {
    background: #232323;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(224,185,115,0.07);
    padding: 2rem 1.5rem;
    text-align: center;
    width: clamp(260px, 75vw, 320px);
    scroll-snap-align: start;
}

.menu-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.menu-item h3 {
    color: #e0b973;
    font-family: 'Playfair Display', serif;
    --font-wght: 700;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.menu-item p {
    font-size: 1rem;
    color: #fffbe6;
}

.menu-loading,
.menu-feedback {
    text-align: center;
    color: #fffbe6;
    font-size: 1rem;
    margin: 1.5rem auto 0;
    opacity: 0.85;
}

.menu-feedback--error {
    color: #ffb3b3;
}

/* Reservasi form */
.reservation form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 400px;
    margin: 0 auto 2.5rem auto;
}
.reservation input, .reservation select, .reservation button {
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

.reservation form .btn-primary {
    width: 100%;
}

.reservation input, .reservation select {
    background: #232323;
    color: #fff;
    border: 1px solid #e0b973;
}
.reservation .input-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.reservation .input-wrapper:focus-within {
    cursor: text;
}

.date-input input[type="date"] {
    width: 100%;
    padding-right: 3rem;
    cursor: pointer;
    color: transparent;
    -webkit-text-fill-color: transparent;
    caret-color: transparent;
}

.date-input.has-value input[type="date"],
.date-input:focus-within input[type="date"] {
    color: #fff;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
}

.date-input input[type="date"]::-webkit-calendar-picker-indicator,
.date-input input[type="date"]::-webkit-inner-spin-button {
    opacity: 0;
    pointer-events: none;
}
.date-input::before {
    content: attr(data-placeholder);
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.65);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 2.5rem;
}

.date-input::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    pointer-events: none;
    opacity: 0.85;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2.000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='15' rx='2' ry='2' fill='none' stroke='%23e0b973' stroke-width='1.6'/%3E%3Cline x1='4' y1='9' x2='20' y2='9' stroke='%23e0b973' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='9' y1='3' x2='9' y2='7' stroke='%23e0b973' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='15' y1='3' x2='15' y2='7' stroke='%23e0b973' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.date-input.has-value::before,
.date-input:focus-within::before {
    opacity: 0;
    transform: translateY(-60%);
}

@supports selector(:has(*)) {
    .date-input:has(input:valid)::before {
        opacity: 0;
        transform: translateY(-60%);
    }
}
.reservation select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2.000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e0b973' d='M6 8L0 .5h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 8px;
    padding-right: 2.5rem;
}
/* Paket Section */
.package-section {
    margin-top: 2.5rem;
}
.package-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.package-card {
    background: #232323;
    border: 2px solid transparent;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(224,185,115,0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    width: min(100%, 270px);
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
    cursor: pointer;
    position: relative;
}
.package-card.selected, .package-card:hover {
    border: 2px solid #e0b973;
    box-shadow: 0 8px 32px rgba(224,185,115,0.15);
    transform: translateY(-8px) scale(1.03);
}
.package-title {
    color: #e0b973;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    --font-wght: 700;
    font-weight: 700;
}
.package-desc {
    color: #fffbe6;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}
.wa-action {
    background: linear-gradient(90deg, #e0b973 60%, #fffbe6 100%);
    color: #181818;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    --font-wght: 700;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(224,185,115,0.15);
    transition: background 0.2s, color 0.2s;
    margin-top: auto;
    align-self: center;
}
.wa-action:hover {
    background: #fffbe6;
    color: #e0b973;
}
footer {
    background: radial-gradient(120% 120% at 50% 0%, rgba(224,185,115,0.22) 0%, rgba(20,20,20,0.95) 55%, #0e0e0e 100%);
    padding: 3rem 0 2.5rem 0;
    color: #fffbe6;

    margin-top: 2rem;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}
.footer-social {
    width: 100%;
    padding: 2.25rem 2rem;
    background: linear-gradient(135deg, rgba(224,185,115,0.18), rgba(35,35,35,0.85));
    border: 1px solid rgba(224,185,115,0.35);
    border-radius: 26px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
}
.footer-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin: 0 0 0.75rem 0;
    --font-wght: 700;
    font-weight: 700;
    color: #fff;
}
.footer-social-subtitle {
    margin: 0 auto 1.8rem auto;
    max-width: 520px;
    color: rgba(255, 251, 230, 0.8);
    font-size: 0.98rem;
}
.footer-social-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;

    padding: 0;
    margin: 0;
}
.footer-social-list li {
    --font-wght: 600;
    font-weight: 600;
}
.footer-social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    color: #fffbe6;
    text-decoration: none;
    background: rgba(15, 15, 15, 0.45);
    border: 1px solid rgba(224,185,115,0.35);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 6px 18px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.footer-social-list a:hover,
.footer-social-list a:focus-visible {
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 18px 32px rgba(0,0,0,0.4);
    border-color: rgba(224,185,115,0.65);
}
.footer-social-list a:focus-visible {
    outline: 2px solid rgba(224,185,115,0.8);
    outline-offset: 4px;
}
.social-icon {
    display: inline-flex;
    width: 26px;
    height: 26px;
    color: #e0b973;
}
.social-icon svg {
    width: 100%;
    height: 100%;
}
.social-label {
    font-size: 0.95rem;
    letter-spacing: 0.4px;
}
.footer-copy {
    margin: 0;
    color: rgba(255, 251, 230, 0.75);
    font-size: 0.95rem;
}
.gallery {
    background: #101010;
    padding: 5rem 0;
}
.gallery h2 {
    font-family: 'Playfair Display', serif;
    color: #e0b973;
    font-size: 2.5rem;
    --font-wght: 700;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
.gallery-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    color: #fffbe6;
    font-size: 1.05rem;
}
.gallery-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gallery-card {
    background: #232323;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 16px rgba(224,185,115,0.08);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-card:hover img {
    transform: scale(1.05);
}
.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(0deg, rgba(24,24,24,0.85) 0%, rgba(24,24,24,0.35) 100%);
    color: #fffbe6;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 4rem 0;
    }
    .hero-kicker {
        font-size: 0.95rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .menu-list {
        grid-auto-columns: clamp(240px, 80vw, 300px);
        gap: 1.8rem;
    }
    .menu-item {
        width: clamp(240px, 80vw, 300px);
    }
    .package-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    :root {

        --nav-height: 72px;

    }
    header.hero {
        min-height: auto;
        /*padding: calc(var(--nav-height) + 1.75rem) 5vw 3rem 5vw;*/
        padding: 0 5vw 3.5rem 5vw;
    }
    .navbar {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.65rem 5vw;
    }
    .logo {
        gap: 0;
    }
    .logo-text {
        display: none;
    }
    .logo-image {
        display: block;
        width: 60px;
    }
    .nav-toggle {
        display: flex;
        z-index: 1400;
        position: relative;
    }
    .nav-links {
        position: fixed;
        position: fixed;             /* biar nempel layar, bukan relatif navbar */
        top: 0;
        right: 0;
        height: 100vh;               /* penuh tinggi layar */
        width: 80vw;
        background: rgba(24,24,24,0.95);
        border: 1px solid rgba(224,185,115,0.3);
        box-shadow: 0 10px 25px rgba(0,0,0,0.35);
        /*border-radius: 16px;*/
        flex-direction: column;
        gap: 1rem;
        padding: 3rem 1.5rem;
        min-width: 220px;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 1300;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }
    .nav-links:not(.open) li {
    opacity: 0;
    transform: translateX(20px);
    }
    .nav-links li {
        text-align: left;
        opacity: 1;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.5s ease;
    }


    /* Animasi berurutan (stagger) */
    .nav-links.open li:nth-child(1) { transition-delay: 0.3s; }
    .nav-links.open li:nth-child(2) { transition-delay: 0.5s; }
    .nav-links.open li:nth-child(3) { transition-delay: 0.7s; }
    .nav-links.open li:nth-child(4) { transition-delay: 0.9s; }


    .hero-content {
        padding: 3.5rem 0;
        gap: 1.25rem;
    }
    .hero-kicker {
        font-size: 0.9rem;
        letter-spacing: 0.24em;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.05rem;
    }
    .about p {
        font-size: 1rem;
    }
    .menu-list {
        gap: 1.8rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .menu-list::-webkit-scrollbar {
        display: none;
    }
    section {
        padding: 4rem 0;
    }
    .gallery-subtitle {
        font-size: 1rem;
    }
    .gallery-card img {
        max-height: 220px;
    }

}

@media (max-width: 600px) {
    :root {
        --nav-height: 66px;
    }

    .container {
        width: 92vw;
    }
    .menu-list {
        grid-auto-columns: clamp(220px, 88vw, 260px);
        gap: 1.5rem;
        scroll-padding-inline: 4vw;
    }
    .menu-item {
        width: clamp(220px, 88vw, 260px);
    }
    .hero-kicker {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .location-info {
        padding: 2rem;
    }
    .location-actions {
        flex-direction: column;
    }
    .location-actions .btn-primary,
    .location-actions .btn-secondary {
        width: 100%;
    }
    .footer-social {
        padding: 2rem 1.5rem;
    }
    .footer-social-list {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 480px) {
    :root {
        --nav-height: 60px;
    }
    .navbar {
        gap: 0.65rem;
        padding: 0.5rem 5vw;
    }
    .logo-image {
        width: 45px;

    }
    .hero-content {
        padding: 3rem 1.3rem 2.5rem;
    }
    .hero-kicker {
        font-size: 0.8rem;
        letter-spacing: 0.18em;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .btn-primary {
        width: 100%;
    }
    section {
        padding: 3.5rem 0;
    }
    .gallery-card img {
        max-height: 200px;
    }

    .footer-social {
        padding: 1.8rem 1.25rem;
    }
    .footer-social-list {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .footer-social-list a {
        justify-content: flex-start;
    }
}
