    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --maroon:   #5b0202;
      --maroon-d: #3a0202;
      --pink-bg:  #f9dede;
      --pink-soft:#f0c8c8;
      --cream:    #f6d8d8;
      --text:     #2a1a1a;
      --muted:    #6b4f4f;
      --white:    #ffffff;
      --radius:   18px;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: var(--white);
    }

    /* ===== VIEWS ===== */
    .view { display: none; }
    .view.active { display: block; }

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: #3a0202;
      box-shadow: 0 2px 12px rgba(255, 255, 255, 0.1);
      padding: 0.75rem 2rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
    .nav-logo {
      width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
      border: 2px solid var(--pink-soft);
    }
    .nav-brand-text {
      font-family: 'Playfair Display', serif;
      color: #ffffff; font-size: 1.2rem;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      text-decoration: none; color: #ffffff; font-size: 0.88rem;
      font-weight: 500; position: relative; padding-bottom: 3px;
      transition: color .2s;
    }
    .nav-links a::after {
      content:''; position:absolute; bottom:0; left:0;
      width:0; height:2px; background:var(--maroon); transition:width .25s;
    }
    .nav-links a:hover::after,
    .nav-links a.active::after { width:100%; }
    .nav-links a:hover, .nav-links a.active { color: var(--maroon); }
    .nav-toggle {
      display: none; background: none; border: none;
      font-size: 30px; color: #ffffff; cursor: pointer;
    }
    

    /* ===== CONTENT OFFSET ===== */
    .page-offset { padding-top: 80px; }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      background: #f6d8d8;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      padding: 6rem 2rem 4rem;
    }
    .hero-deco{
    position:absolute;

    top:-40px;

    right:120px;
    transform:translateX(40%);

    width:440px;

    opacity:1;
    z-index:1;
    }

    .hero-content { text-align: center; position: relative; z-index: 2; max-width: 600px; }
    .hero-eyebrow {
      font-size: 0.78rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--maroon); font-weight: 600; margin-bottom: .8rem;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      color: var(--maroon-d); line-height: 1.2; margin-bottom: .6rem;
    }
    .hero-subtitle {
      font-size: 1rem; color: var(--muted); margin-bottom: 2rem; font-weight: 300;
    }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ===== BUTTONS ===== */
    .btn-primary {
      background: var(--maroon); color: #fff; border: 2px solid var(--maroon);
      padding: .7rem 1.8rem; border-radius: 50px; font-weight: 600;
      font-size: .9rem; cursor: pointer; text-decoration: none;
      transition: background .2s, transform .15s;
      font-family: 'Poppins', sans-serif;
    }
    .btn-primary:hover { background: var(--maroon-d); transform: translateY(-1px); }
    .btn-outline {
      background: transparent; color: var(--maroon); border: 2px solid var(--maroon);
      padding: .7rem 1.8rem; border-radius: 50px; font-weight: 600;
      font-size: .9rem; cursor: pointer; text-decoration: none;
      transition: background .2s, color .2s, transform .15s;
      font-family: 'Poppins', sans-serif;
    }
    .btn-outline:hover { background: var(--maroon); color: #fff; transform: translateY(-1px); }
    .btn-full { width: 100%; display: block; text-align: center; }

    /* ===== SECTION SHARED ===== */
    .section { padding: 5rem 2rem; }
    .section-title {
      text-align: center; font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--maroon-d); margin-bottom: 3rem;
    }
    .section-title span { font-style: italic; color: var(--maroon); }
    .bg-pink  { background: var(--pink-bg); }
    .bg-cream { background: var(--cream); }
    .bg-white { background: var(--white); }

/* =========================================================
   RESPONSIVE - SMARTPHONE
========================================================= */
@media (max-width: 768px) {

    /* ===== BODY ===== */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* ===== NAVBAR ===== */
    #navbar {
        padding: .6rem 1rem;
        min-height: 70px;
    }

    .nav-logo {
        width: 44px;
        height: 44px;
    }

    .nav-brand {
        gap: .45rem;
    }

    .nav-brand-text {
        font-size: 1rem;
    }

    .nav-toggle {
        display: block;
        font-size: 28px;
        padding: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        background: var(--maroon-d);

        padding: .7rem 1rem 1rem;
        gap: .2rem;

        box-shadow: 0 8px 20px rgba(0,0,0,.2);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;

        padding: .7rem .8rem;

        color: #fff;
        font-size: .85rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--pink-soft);
    }

    .nav-links a::after {
        display: none;
    }

    /* ===== CONTENT OFFSET ===== */
    .page-offset {
        padding-top: 70px;
    }

    /* ===== HERO ===== */
    .hero {
        width: 100%;
        min-height: calc(100vh - 70px);

        padding: 4rem 1.2rem 3rem;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        max-width: 500px;
        padding: 0 .5rem;
        text-align: center;
    }

    .hero-eyebrow {
        font-size: .62rem;
        letter-spacing: .1em;
        line-height: 1.5;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        line-height: 1.15;
        margin-bottom: .8rem;
    }

    .hero-subtitle {
        font-size: .85rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-deco {
        width: 250px;
        max-width: none;

        top: -25px;
        right: -70px;

        transform: none;
    }

    .hero-btns {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: .7rem;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 85%;
        max-width: 280px;
    }

    /* ===== SECTION ===== */
    .section {
        padding: 3.5rem 1rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }


    /* ===== KATEGORI ===== */
    .kategori-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .8rem;

        width: 100%;
        max-width: 100%;
    }

    .kat-card img {
        height: 180px;
    }

    .kat-card-body {
        padding: .8rem;
    }

    .kat-card-name {
        font-size: .82rem;
        margin-bottom: .7rem;
    }

    .kat-card .btn-primary {
        width: 100%;
        padding: .55rem .5rem;
        font-size: .72rem;
    }

    /* ===== CONTACT ===== */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;

        width: 100%;
        max-width: 100%;
    }

    .contact-info-title {
        font-size: 1rem;
    }

    .contact-info-line {
        font-size: .8rem;
        line-height: 1.6;
    }

    .map-wrap iframe {
        height: 200px;
    }

    /* ===== FOOTER ===== */
    footer {
        padding: 2.5rem 1rem 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;

        width: 100%;
        max-width: 100%;
    }

    .footer-img {
        width: 200px;
        max-width: 100%;
        height: auto;
    }

    .footer-desc {
        font-size: .75rem;
        line-height: 1.6;
    }

    .footer-heading {
        font-size: .82rem;
    }

    .footer-links a {
        font-size: .78rem;
    }

    .footer-bottom {
        font-size: .7rem;
        line-height: 1.5;
    }

    .btn-wa {
        width: 100%;
        justify-content: center;
    }

    /* ===== WHATSAPP FLOAT ===== */
    .wa-float {
        width: 48px;
        height: 48px;

        right: 1rem;
        bottom: 1rem;
    }

    .wa-float i {
        font-size: 1.4rem;
    }
}


/* =========================================================
   SMARTPHONE KECIL
========================================================= */
@media (max-width: 480px) {

    .nav-brand-text {
        font-size: .9rem;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-deco {
        width: 210px;
        right: -65px;
    }
}
/* ===== KATEGORI CARDS ===== */
    .btn-wa {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


