:root {
    --red: #c0392b;
    --red-dark: #922b21;
    --yellow: #f4d03f;
    --cream: #fdf6e3;
    --ink: #2c1810;
    --muted: #6b5344;
    --line: #e8d5c4;
    --white: #fff;
    --shadow: 0 12px 32px rgba(44, 24, 16, .12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Karla', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, 92%); margin: 0 auto; }

.top {
    background: var(--red);
    color: #fff;
    text-align: center;
    font-size: .88rem;
    font-weight: 600;
    padding: .55rem 1rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 246, 227, .95);
    backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--red);
}
.bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 68px;
}
.logo {
    font-family: 'Patua One', serif;
    font-size: 1.45rem;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: .45rem;
}
nav { margin-left: auto; display: flex; gap: 1.25rem; }
nav a { font-weight: 600; color: var(--muted); }
nav a:hover { color: var(--red); }
.cta {
    background: var(--red);
    color: #fff !important;
    padding: .55rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .92rem;
}
.burger {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.3rem;
    color: var(--ink);
    cursor: pointer;
}

.hero { padding: 3.5rem 0 2.5rem; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 2.5rem;
    align-items: center;
}
.tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .04em;
    padding: .35rem .7rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.hero h1 {
    font-family: 'Patua One', serif;
    font-size: clamp(2.6rem, 6vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.hero h1 span { color: var(--red); }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 34rem; margin-bottom: 1.5rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .85rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .2s;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-outline { border-color: var(--red); color: var(--red); background: transparent; }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-full { width: 100%; }
.badges { display: flex; flex-wrap: wrap; gap: .7rem; }
.badges span {
    background: #fff;
    border: 1px solid var(--line);
    padding: .45rem .75rem;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--muted);
}
.badges i { color: var(--red); margin-right: .3rem; }

.hero-photo { position: relative; }
.hero-photo img {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    border-radius: 24px;
    border: 4px solid #fff;
    box-shadow: var(--shadow);
}
.price-tag {
    position: absolute;
    left: -12px;
    bottom: 28px;
    background: var(--yellow);
    color: var(--ink);
    padding: .85rem 1.1rem;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: var(--shadow);
    line-height: 1.25;
}
.price-tag strong { font-size: 1.25rem; display: block; }

.section { padding: 4rem 0; }
.section-yellow { background: #fff8d6; }
.section-cream { background: #fff; }
.head { text-align: center; max-width: 560px; margin: 0 auto 2rem; }
.head span {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .06em;
    margin-bottom: .5rem;
}
.head h2 {
    font-family: 'Patua One', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: .5rem;
}
.head p { color: var(--muted); }

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem;
    margin-bottom: 1.75rem;
}
.filters button {
    border: 2px solid var(--line);
    background: #fff;
    color: var(--muted);
    padding: .5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.filters button.active,
.filters button:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .85rem;
}
.menu-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem 1.15rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    transition: .2s;
}
.menu-item:hover { border-color: var(--red); box-shadow: var(--shadow); }
.menu-item h3 {
    font-family: 'Patua One', serif;
    font-size: 1.15rem;
    margin-bottom: .2rem;
}
.menu-item p { color: var(--muted); font-size: .92rem; }
.menu-item .harga {
    font-weight: 800;
    color: var(--red);
    white-space: nowrap;
    font-size: 1.05rem;
}
.menu-item.hidden { display: none; }

.packs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.packs article {
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem;
    position: relative;
}
.packs article.hot {
    border-color: var(--red);
    background: linear-gradient(180deg, #fff 0%, #fff5f3 100%);
}
.ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: .25rem .55rem;
    border-radius: 6px;
}
.packs h3 {
    font-family: 'Patua One', serif;
    font-size: 1.35rem;
    margin-bottom: .4rem;
}
.packs .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: .5rem;
}
.packs .price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.packs p { color: var(--muted); margin-bottom: .6rem; }
.packs small { color: var(--ink); font-weight: 600; }

.why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.why-item {
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}
.why-item i {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: .7rem;
}
.why-item h3 {
    font-family: 'Patua One', serif;
    margin-bottom: .35rem;
}
.why-item p { color: var(--muted); font-size: .92rem; }

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.order-grid > div span {
    color: var(--red);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .06em;
}
.order-grid h2 {
    font-family: 'Patua One', serif;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin: .4rem 0 .7rem;
}
.order-grid > div > p { color: var(--muted); margin-bottom: 1.25rem; }
.info { display: grid; gap: .7rem; }
.info div {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 600;
}
.info i { color: var(--red); width: 1.2rem; }
form {
    background: var(--cream);
    border: 2px solid var(--line);
    border-radius: 18px;
    padding: 1.4rem;
    display: grid;
    gap: .75rem;
}
input, select, textarea {
    width: 100%;
    border: 2px solid var(--line);
    border-radius: 10px;
    padding: .8rem 1rem;
    font: inherit;
    background: #fff;
    color: var(--ink);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--red);
}

.loc {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    align-items: center;
}
.loc span {
    color: var(--red);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .06em;
}
.loc h2 {
    font-family: 'Patua One', serif;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin: .4rem 0 .7rem;
}
.loc > div > p { color: var(--muted); margin-bottom: 1rem; }
.loc ul { list-style: none; display: grid; gap: .55rem; }
.loc li { font-weight: 600; display: flex; gap: .6rem; align-items: center; }
.loc li i { color: var(--red); }
.loc-card {
    background: var(--red);
    color: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.loc-card i { font-size: 2rem; margin-bottom: .8rem; }
.loc-card h3 {
    font-family: 'Patua One', serif;
    font-size: 1.5rem;
    margin-bottom: .4rem;
}
.loc-card p { opacity: .92; margin-bottom: 1.2rem; }
.loc-card .btn-outline {
    border-color: #fff;
    color: #fff;
}
.loc-card .btn-outline:hover {
    background: #fff;
    color: var(--red);
}

.footer {
    background: var(--ink);
    color: #f5e6d8;
    padding: 1.5rem 0;
}
.foot {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.foot a { color: var(--yellow); }

.wa {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
    z-index: 60;
}

@media (max-width: 900px) {
    .hero-grid, .order-grid, .loc, .packs, .why { grid-template-columns: 1fr; }
    .menu-list { grid-template-columns: 1fr; }
    .cta { display: none; }
    .burger { display: block; margin-left: auto; }
    nav {
        display: none;
        position: absolute;
        left: 0; right: 0; top: 100%;
        background: var(--cream);
        border-bottom: 3px solid var(--red);
        flex-direction: column;
        padding: 1rem 4%;
        gap: .85rem;
    }
    nav.open { display: flex; }
    .price-tag { left: 12px; }
}
