/* ==========================================================================
   Brand palette (dari referensi warna "picnic cake"). Ubah kode hex di sini,
   otomatis kepakai di semua elemen di seluruh web.
   ========================================================================== */
:root {
    --navy: #2C3F70;
    --navy-dark: #1E2C4F;
    --strawberry: #A5231C;
    --buttercream: #C8D4E5;
    --violet: #8089D2;
    --meringue: #E8EBED;

    --font-display: 'Fraunces', serif;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
}

html { scroll-behavior: smooth; }

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--meringue);
    color: var(--navy-dark);
    font-family: var(--font-body);
    overflow-x: auto;
}

#scaleWrapper {
    width: 1440px;
    transform-origin: top left;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; }

.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 999px;
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-cta { background: var(--strawberry); color: var(--meringue); }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    pointer-events: none;
}
.header-inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 16px 16px 0;
    min-height: 76px;
}

#menu-checkbox { display: none; }

#menu-label {
    pointer-events: auto;
    position: relative;
    z-index: 2;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--buttercream);
    cursor: pointer;
    transition: background 0.3s ease;
}

#menu-label:before,
#menu-label:after,
#menu-bar {
    position: absolute;
    left: 14px;
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--navy);
    transition: background-color 0.25s ease;
}
#menu-label:before { content: ""; top: 15px; }
#menu-label:after  { content: ""; top: 27px; }
#menu-bar { top: 38px; }

#menu-label:before,
#menu-label:after {
    transition: background-color 0.25s ease,
        opacity 0.15s ease 0s,
        left 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.15s;
}

#menu-bar:before {
    content: "BUKA";
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--navy);
    opacity: 0;
    transition: color 0.25s ease, opacity 0.3s ease, font-size 0.3s ease;
}

#menu-checkbox:checked + #menu-label { background: var(--strawberry); }
#menu-checkbox:checked + #menu-label:before,
#menu-checkbox:checked + #menu-label:after,
#menu-checkbox:checked + #menu-label #menu-bar { background-color: var(--meringue); }
#menu-checkbox:checked + #menu-label #menu-bar:before {
    color: var(--meringue);
    opacity: 1;
    font-size: 11px;
}

#menu-checkbox:checked + #menu-label:before,
#menu-checkbox:checked + #menu-label:after {
    transition: background-color 0.25s ease,
        left 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s,
        opacity 0.15s ease 0.4s;
    opacity: 0;
}
#menu-checkbox:checked + #menu-label:before { left: -40px; }
#menu-checkbox:checked + #menu-label:after { left: 64px; }

#menu-checkbox:checked + #menu-label #menu-bar:before {
    animation: menuTextBounce 0.8s ease 0.2s forwards,
        menuTextShakeUp 0.8s ease 0.2s forwards,
        menuTextShakeDown 0.2s ease 1s forwards;
}

@keyframes menuTextBounce {
    0%   { top: 7px; }
    50%  { top: -22px; }
    100% { top: -12px; }
}
@keyframes menuTextShakeUp {
    0%, 100% { transform: rotateZ(0); }
    25% { transform: rotateZ(-10deg); }
    75% { transform: rotateZ(10deg); }
}
@keyframes menuTextShakeDown {
    0%   { transform: rotateZ(0); }
    80%  { transform: rotateZ(3deg); }
    90%  { transform: rotateZ(-3deg); }
    100% { transform: rotateZ(0); }
}

.menu-panel {
    pointer-events: none;
    position: absolute;
    top: 19px;
    right: 85px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--buttercream);
    border-radius: 999px;
    padding: 8px;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.25s ease, transform 0.3s ease;
}
#menu-checkbox:checked ~ .menu-panel {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}

.menu-option {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    padding: 10px 18px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.menu-option:hover { background: var(--strawberry); color: var(--meringue); }

.hero {
    position: relative;
    background: var(--navy);
    overflow: visible;
}
.hero-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 120px;
}

.hero-text { text-align: left; }

.hero-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--buttercream);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    margin-bottom: 28px;
    border: 4px solid rgba(232, 235, 237, 0.15);
}
.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--strawberry);
    margin: 0 0 16px;
    line-height: 1.35;
}
.hero-desc {
    font-family: var(--font-body);
    color: var(--buttercream);
    font-size: 1rem;
    max-width: 420px;
    margin: 0;
}
.highlight-number { color: var(--strawberry); font-weight: 700; }

.hero-identity { text-align: center; }

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(200, 212, 229, 0.1) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--strawberry);
    color: var(--meringue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 22px;
    border-radius: 999px;
    margin-top: 22px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.hero-cta:hover { transform: translateY(-2px); opacity: 0.92; }

.hero-stats {
    display: flex;
    gap: 26px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(200, 212, 229, 0.15);
}
.hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--strawberry);
}
.hero-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--buttercream);
    opacity: 0.7;
    margin-top: 2px;
}

.hero-identity {
    text-align: center;
    background: rgba(232, 235, 237, 0.06);
    border: 1px solid rgba(200, 212, 229, 0.15);
    border-radius: 20px;
    padding: 40px 32px;
}

.company-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--meringue);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.7rem;
    background: var(--strawberry);
    padding: 14px 28px;
    border-radius: 999px;
    border-bottom: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.company-phone:hover { color: var(--meringue); transform: translateY(-2px); opacity: 0.92; }

.company-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.1;
    color: var(--meringue);
    margin: 0 0 20px;
}

.company-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--meringue);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    border-bottom: 2px solid var(--strawberry);
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.company-phone:hover { color: var(--strawberry); }

.hero-drip {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(99%);
    z-index: 10;
    line-height: 0;
    pointer-events: none;
}
.hero-drip svg { width: 100%; height: 70px; display: block; }

.section-placeholder { padding: 90px 0 60px; text-align: center; }
.placeholder-note { color: var(--navy); opacity: 0.4; font-size: 0.85rem; }

.products {
    padding: 90px 0 80px;
    text-align: left;
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--strawberry);
    margin-bottom: 6px;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--navy);
    margin: 0 0 36px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.product-card {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(44, 63, 112, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--violet);
    box-shadow: 0 20px 40px rgba(128, 137, 210, 0.35);
}
.product-photo {
    position: relative;
    height: 520px;
    background: var(--buttercream);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 91%);
}
.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--violet);
    color: var(--meringue);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
}
.product-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--navy);
    transition: transform 0.4s ease;
}
.product-photo-placeholder span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    opacity: 0.55;
}
.product-card:hover .product-photo-placeholder { transform: scale(1.06); }

.product-body { padding: 22px 26px 26px; }

.product-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--navy);
    margin: 0 0 4px;
}
.product-hook {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--strawberry);
    margin: 0 0 6px;
}
.product-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(30, 44, 79, 0.55);
    margin: 0 0 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--strawberry);
}
.product-link svg { transition: transform 0.2s ease; }
.product-card:hover .product-link svg { transform: translateX(4px); }

.products-sub { margin-top: 48px; }
.products-sub-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--navy);
    opacity: 0.55;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.other-card {
    display: block;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(44, 63, 112, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.other-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(44, 63, 112, 0.16);
}
.other-photo {
    position: relative;
    height: 170px;
    background: var(--buttercream);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    transition: transform 0.4s ease, opacity 0.2s ease;
}
.other-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.other-card:hover .other-photo { transform: scale(1.06); opacity: 1; }
.other-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    padding: 14px 16px;
}

.shop-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}
.shop-row::-webkit-scrollbar { height: 6px; }
.shop-row::-webkit-scrollbar-thumb { background: var(--buttercream); border-radius: 999px; }
.shop-row::-webkit-scrollbar-track { background: transparent; }

.shop-card {
    scroll-snap-align: start;
    flex: 0 0 190px;
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(44, 63, 112, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(44, 63, 112, 0.16);
}

.shop-photo {
    position: relative;
    height: 140px;
    background: var(--buttercream);
    overflow: hidden;
}
.shop-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}
.shop-tag--sale { background: var(--strawberry); color: var(--meringue); }
.shop-tag--rent { background: var(--violet); color: var(--navy-dark); }

.shop-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: opacity 0.2s ease;
}

.shop-hover-detail {
    position: absolute;
    inset: 0;
    background: rgba(30, 44, 79, 0.92);
    color: var(--meringue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.shop-hover-detail p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}
.shop-hover-detail span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--buttercream);
}
.shop-card:hover .shop-hover-detail { opacity: 1; }
.shop-card:hover .shop-photo-placeholder { opacity: 0; }

.shop-body { padding: 14px 16px 18px; }
.shop-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin: 0 0 4px;
}
.shop-price {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--strawberry);
}

.shop-more {
    scroll-snap-align: start;
    flex: 0 0 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    border: 2px dashed var(--violet);
    border-radius: 20px;
    padding: 20px 10px;
    transition: background 0.2s ease;
}
.shop-more:hover { background: #fff; }
.shop-more-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--violet);
    color: var(--meringue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer {
    position: relative;
    background: var(--navy-dark);
    padding-top: 60px;
    overflow: hidden;
}
.footer-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(200, 212, 229, 0.07) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
}
.footer-outreach {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--strawberry);
    line-height: 1.5;
    margin: 4px 0 0;
    max-width: 260px;
}

.footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
    text-align: left;
}

.footer-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    margin: 0 0 14px;
}
.footer-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.footer-company {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--buttercream);
    margin: 0 0 12px;
}
.footer-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(200, 212, 229, 0.65);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}
.typewriter-cursor {
    display: inline-block;
    color: var(--strawberry);
    font-weight: 700;
    animation: blinkCursor 0.8s step-end infinite;
}
@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.footer-col-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--strawberry);
    margin: 0 0 18px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-links a {
    position: relative;
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.87rem;
    color: var(--buttercream);
    opacity: 0.8;
    transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--strawberry);
    transition: width 0.25s ease;
}
.footer-links a:hover { opacity: 1; color: #fff; }
.footer-links a:hover::after { width: 100%; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--meringue);
    background: var(--strawberry);
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease;
    animation: footerPulse 2.6s ease-in-out infinite;
}
.footer-contact-item strong { font-weight: 700; }
.footer-contact-item:hover { transform: translateY(-2px); }
.footer-contact-item:nth-child(1) { animation-delay: 0s; }
.footer-contact-item:nth-child(2) { animation-delay: 0.7s; }
.footer-contact-item:nth-child(3) { animation-delay: 1.4s; }
@keyframes footerPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(165, 35, 28, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(165, 35, 28, 0); }
}

.footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--meringue);
    background: var(--violet);
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    margin: 6px 0 16px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-email-link:hover { transform: translateY(-2px); opacity: 0.92; }


.footer-areas {
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: rgba(200, 212, 229, 0.65);
    line-height: 1.5;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 212, 229, 0.15);
    padding: 18px 0;
}
.footer-note {
    color: var(--buttercream);
    font-size: 0.8rem;
    opacity: 0.65;
    margin: 0;
    text-align: center;
}

.projects {
    position: relative;
    background: var(--violet);
    padding: 70px 0 80px;
    text-align: left;
}
.projects-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(-99%);
}
.projects-wave-top svg { width: 100%; height: 50px; display: block; }

.section-eyebrow--onviolet {
    background: var(--strawberry);
    color: var(--meringue);
    padding: 6px 14px;
    border-radius: 999px;
}
.section-title--onviolet { color: var(--meringue); }

.project-carousel {
    overflow-x: hidden;
    overflow-y: visible;
    margin-top: 16px;
    padding: 65px 0;
}
.project-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: projectSlide 26s linear infinite;
}
.project-carousel:hover .project-track { animation-play-state: paused; }

@keyframes projectSlide {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0%); }
}

.project-card {
    position: relative;
    flex: 0 0 270px;
    display: block;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(30, 44, 79, 0.18);
    transition: box-shadow 0.2s ease, transform 0.35s cubic-bezier(0.34, 1.1, 0.4, 1);
    transform-origin: center;
}
.project-card:hover,
.project-card.is-focused {
    box-shadow: 0 20px 40px rgba(30, 44, 79, 0.28);
}
.project-card.is-focused {
    transform: scale(1.4);
    z-index: 50;
}

.project-photo {
    position: relative;
    height: 340px;
    background: var(--buttercream);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--navy);
}
.project-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.project-photo-placeholder span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    opacity: 0.55;
}

.project-category-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    background: var(--strawberry);
    color: var(--meringue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 9px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.location {
    padding: 90px 0 90px;
    text-align: left;
}
.location-hint {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(30, 44, 79, 0.6);
    margin: 0 0 24px;
}

.service-map-wrap {
    position: relative;
    padding: 22px;
    border-radius: 20px;
    background-color: var(--buttercream);
    background-image:
        linear-gradient(rgba(44, 63, 112, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 63, 112, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
}

.map-corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 0 solid var(--navy);
    z-index: 2;
}
.map-corner--tl { top: 10px; left: 10px; border-top-width: 5px; border-left-width: 5px; border-radius: 6px 0 0 0; }
.map-corner--tr { top: 10px; right: 10px; border-top-width: 5px; border-right-width: 5px; border-radius: 0 6px 0 0; }
.map-corner--bl { bottom: 10px; left: 10px; border-bottom-width: 5px; border-left-width: 5px; border-radius: 0 0 0 6px; }
.map-corner--br { bottom: 10px; right: 10px; border-bottom-width: 5px; border-right-width: 5px; border-radius: 0 0 6px 0; }

.service-map {
    position: relative;
    z-index: 1;
    height: 440px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(30, 44, 79, 0.15);
    background: var(--buttercream);
}

.service-map-pin-inner {
    width: 48px;
    height: 48px;
    background: var(--strawberry);
    border: 5px solid var(--violet);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.4);
}

.leaflet-popup-content-wrapper {
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(30, 44, 79, 0.2);
}
.leaflet-popup-content { margin: 14px 16px; }

.service-map-popup {
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 190px;
}
.service-map-popup .city {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
}
.service-map-popup .region-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--strawberry);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-map-popup .addr {
    font-size: 0.78rem;
    color: rgba(30, 44, 79, 0.7);
    line-height: 1.4;
    margin: 4px 0 6px;
}
.popup-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.service-map-popup .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: var(--strawberry);
    border-radius: 999px;
    text-decoration: none;
}
.service-map-popup .phone-link--primary {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 7px 14px;
}
.service-map-popup .phone-link--secondary {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.68rem;
    padding: 5px 10px;
    opacity: 0.85;
}

.location-detail-hero {
    background: var(--meringue);
    padding: 32px 32px 90px;
}
.location-hero-shape-wrap {
    position: relative;
    max-width: 1376px;
    margin: 0 auto;
}
.location-hero-shape { width: 100%; height: auto; display: block; }

.location-hero-text { font-family: var(--font-body); }
.location-hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--strawberry);
    margin-bottom: 14px;
}
.location-hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: var(--meringue);
    margin: 0;
}

.location-hero-subrow {
    position: absolute;
    top: 71%;
    left: 0;
    width: 97%;
    display: flex;
    gap: 80px;
}
.location-hero-subbox {
    position: relative;
    top: 10px;
    flex: 1 1 770px;
    min-width: 0;
    max-width: 770px;
    height: 250px;
    background: var(--navy);
    border-radius: 26px;
}
.location-hero-subbox-photo {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: var(--buttercream);
    border-radius: 18px;
    overflow: hidden;
}
.location-hero-subbox-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-hero-contactbox {
    position: relative;
    top: 150px;
    flex: 1;
    min-width: 0;
    height: 110px;
    background: var(--navy);
    border-radius: 26px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.location-hero-contact-note {
    flex: 1;
    min-width: 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--buttercream);
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}
.location-hero-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.location-hero-contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--meringue);
    white-space: nowrap;
}
.location-hero-contact-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--buttercream);
    white-space: nowrap;
}
.location-detail-region {
    padding: 60px 0;
    text-align: left;
    background: var(--meringue);
}


.location-region-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--navy);
    margin: 0 0 28px;
}

.location-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.location-detail-card {
    background: var(--buttercream);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(30, 44, 79, 0.12);
    scroll-margin-top: 90px;
}
.location-detail-map { height: 220px; }
.location-detail-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.location-detail-body { padding: 22px 24px 26px; }
.location-detail-city {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--navy);
    margin: 0 0 8px;
}
.location-detail-address {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(30, 44, 79, 0.65);
    line-height: 1.5;
    margin: 0 0 16px;
}

.location-detail-phones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.location-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.2s ease;
}
.location-phone-link:hover { transform: translateY(-2px); }
.location-phone-link--primary {
    background: var(--strawberry);
    color: var(--meringue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 12px 20px;
}
.location-phone-link--secondary {
    background: var(--buttercream);
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 7px 14px;
}

.location-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.location-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.location-detail-btn:hover { transform: translateY(-2px); }
.location-detail-btn--primary { background: var(--navy); color: var(--meringue); }
.location-detail-btn--secondary { background: var(--strawberry); color: var(--meringue); }

/* ==========================================================================
   Halaman Produk (detail) — spesifikasi teknis lengkap per produk
   ========================================================================== */
.produk-detail-hero {
    background: var(--meringue);
    padding: 32px 32px 90px;
}
.produk-hero-stats-panel {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 36px;
    font-family: var(--font-body);
    box-sizing: border-box;
}
.produk-hero-stat-mini {
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid rgba(200, 212, 229, 0.15);
    padding-bottom: 16px;
}
.produk-hero-stat-mini:last-child { border-bottom: none; padding-bottom: 0; }
.produk-hero-stat-mini-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--strawberry);
}
.produk-hero-stat-mini-label {
    font-size: 0.9rem;
    color: var(--buttercream);
    opacity: 0.85;
}
.produk-hero-contactbox {
    position: relative;
    top: 10px;
    flex: 1 1 770px;
    min-width: 0;
    max-width: 770px;
    height: 110px;
    background: var(--navy);
    border-radius: 26px;
}

.produk-hero-card .section-title { color: var(--meringue); margin: 0 0 10px; }
.produk-hero-card .location-hint { color: var(--buttercream); opacity: 0.8; margin: 0 0 36px; max-width: 480px; }

.produk-hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--strawberry);
}
.produk-hero-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--buttercream);
    opacity: 0.75;
    margin-top: 4px;
}
.produk-detail-section {
    padding: 70px 0;
    text-align: left;
    scroll-margin-top: 90px;
}
.produk-detail-section:nth-child(odd)  { background: #fff; }
.produk-detail-section:nth-child(even) { background: var(--meringue); }

.produk-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.produk-detail-photo {
    position: relative;
    width: 100%;
    height: 520px;
    background: var(--buttercream);
    border-radius: 24px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.produk-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.produk-detail-photo--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--navy);
    opacity: 0.45;
    height: 100%;
    min-height: 420px;
}
.produk-detail-photo--empty span {
    font-family: var(--font-body);
    font-size: 0.8rem;
}

/* Foto yang gantian tampil (fade) tiap sekian detik — dipakai kalau
   produknya punya lebih dari 1 foto (lihat main.js buat logic gantinya) */
.produk-photo-rotator { position: relative; width: 100%; height: 100%; }
.produk-photo-rotator-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
.produk-photo-rotator-img.is-active { opacity: 1; }
.produk-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}
.produk-size-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--navy);
    background: var(--buttercream);
    padding: 7px 16px;
    border-radius: 999px;
}
.produk-detail-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--navy);
    margin: 0 0 8px;
}
.produk-detail-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(30, 44, 79, 0.6);
    margin: 0 0 28px;
    line-height: 1.5;
}

.produk-spec-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--strawberry);
    margin: 0 0 12px;
}
.produk-detail-info .produk-spec-title { margin-top: 22px; }
.produk-detail-info .produk-spec-title:first-of-type { margin-top: 0; }

.produk-spec-list {
    list-style: none;
    margin: 0 0 4px;
    padding: 0;
    border-top: 1px solid rgba(44, 63, 112, 0.1);
}
.produk-spec-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(44, 63, 112, 0.1);
}
.produk-spec-list li span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(30, 44, 79, 0.6);
    flex-shrink: 0;
}
.produk-spec-list li strong {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    text-align: right;
}

.produk-spec-soon {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(30, 44, 79, 0.55);
    line-height: 1.6;
    background: var(--buttercream);
    border-radius: 16px;
    padding: 18px 20px;
    margin: 0;
}

.produk-usage-wrap { margin-bottom: 32px; }
.produk-usage-scroll {
    overflow-x: auto;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(44, 63, 112, 0.08);
}
.produk-usage-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 420px;
}
.produk-usage-table thead th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--meringue);
    background: var(--navy);
    text-align: left;
    padding: 14px 20px;
}
.produk-usage-table tbody td {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--navy);
    padding: 13px 20px;
    border-bottom: 1px solid rgba(44, 63, 112, 0.08);
}
.produk-usage-table tbody tr:last-child td { border-bottom: none; }
.produk-usage-table tbody tr:nth-child(even) { background: var(--meringue); }

.produk-detail-cta { margin-top: 8px; }

/* Produk & jasa lainnya — grid 2 kolom, background violet, kartu compact
   dengan badge nomor & foto kecil, beda gaya dari 2 produk utama di atas */
.produk-other-section {
    position: relative;
    background: var(--violet);
    padding: 80px 0;
}

.produk-other-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 32px;
}

.produk-other-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    min-height: 280px;
    box-shadow: 0 14px 30px rgba(30, 20, 70, 0.18);
    scroll-margin-top: 90px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.produk-other-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 20, 70, 0.26);
}
.produk-other-card:nth-child(even) { flex-direction: row-reverse; }

.produk-other-index {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--strawberry);
    color: var(--meringue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.produk-other-card:nth-child(even) .produk-other-index { left: auto; right: 16px; }

.produk-other-photo {
    position: relative;
    width: 50%;
    flex-shrink: 0;
    background: var(--buttercream);
    overflow: hidden;
}
.produk-other-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.produk-other-card:hover .produk-other-photo img { transform: scale(1.06); }
.produk-other-photo--empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    opacity: 0.35;
}

.produk-other-body {
    flex: 1;
    min-width: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.produk-other-card:nth-child(even) .produk-other-body { text-align: right; align-items: flex-end; }

.produk-other-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    margin: 0 0 6px;
}
.produk-other-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(30, 44, 79, 0.6);
    line-height: 1.45;
    margin: 0 0 14px;
}

.produk-other-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.produk-other-card:nth-child(even) .produk-other-sizes { justify-content: flex-end; }
.produk-other-size-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--strawberry);
    background: rgba(165, 35, 28, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
}

.produk-other-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--strawberry);
}
.produk-other-link svg { transition: transform 0.2s ease; }
.produk-other-card:hover .produk-other-link svg { transform: translateX(3px); }

.produk-tools-section {
    background: var(--meringue);
    padding: 80px 0;
    text-align: left;
}
.produk-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 20px;
    margin-top: 12px;
}