:root {
    --navy: #1F2A44;
    --cream: #F5E9DA;
    --tan: #C89B5A;
    --brown: #5A3E2B;
    --khaki: #B8A27A;
    --paper: #FBF6EE;
    --ink: #241A12;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

img {
    max-width: 100%;
    display: block;
}

.kawung-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20px 20px, rgba(31, 42, 68, 0.06) 0 6px, transparent 7px),
        radial-gradient(circle at 60px 60px, rgba(31, 42, 68, 0.06) 0 6px, transparent 7px);
    background-size: 80px 80px;
    pointer-events: none;
}

.parang-bg {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, rgba(245, 233, 218, 0.05) 0 14px, transparent 14px 28px);
    pointer-events: none;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 100px;
    background: rgba(251, 246, 238, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(90, 62, 43, 0.1);
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--brown);
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo-mark .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tan);
    display: inline-block;
}

nav ul {
    list-style: none;
    display: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    color: var(--navy);
    opacity: .85;
    transition: all .2s ease;
}

nav a:hover {
    opacity: 1;
    color: var(--tan);
}

@media(min-width:820px) {
    nav ul {
        display: flex;
    }
}

.nav-cta {
    font-size: 13px;
    font-weight: 700;
    background: var(--navy);
    color: var(--cream);
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    display: block;
}

@media(min-width:820px) {
    .burger {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    z-index: 49;
    border-bottom: 1px solid rgba(90, 62, 43, .15);
    display: flex;
    flex-direction: column;
    padding: 10px 32px 20px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform .3s ease;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    padding: 12px 0;
    font-weight: 600;
    text-decoration: none;
    color: var(--navy);
    border-bottom: 1px solid rgba(90, 62, 43, .08);
}

@media(min-width:820px) {
    .mobile-menu {
        display: none;
    }
}

/* HERO / BERANDA */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
    padding: 140px 24px 100px;
    overflow: hidden;
}

.hero .eyebrow {
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brown);
    font-weight: 700;
    margin-bottom: 22px;
    opacity: 0;
    animation: rise .8s ease forwards .1s;
}

.hero h1 {
    font-size: clamp(38px, 7vw, 80px);
    line-height: 1.05;
    color: var(--navy);
    max-width: 920px;
    margin: 0 0 22px;
    opacity: 0;
    animation: rise .9s ease forwards .25s;
}

.hero h1 em {
    font-style: italic;
    color: var(--tan);
}

.hero p.sub {
    font-size: 18px;
    max-width: 560px;
    color: #4a3d30;
    line-height: 1.6;
    opacity: 0;
    animation: rise .9s ease forwards .45s;
}

.hero-cta {
    margin-top: 38px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: rise .9s ease forwards .65s;
}

.btn {
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--navy);
    color: var(--cream);
}

.btn-ghost {
    border: 1.5px solid var(--brown);
    color: var(--brown);
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--brown);
    opacity: .6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.scroll-hint .line {
    width: 1px;
    height: 34px;
    background: var(--brown);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

section {
    position: relative;
    padding: 96px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 48px;
}

.eyebrow-sm {
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--tan);
    margin-bottom: 10px;
    display: block;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--navy);
    margin: 0 0 14px;
}

.section-head p {
    font-size: 16px;
    color: #5c4d3d;
    line-height: 1.7;
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* TENTANG */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: start;
}

@media(max-width:820px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-grid p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a3d30;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.value-list li {
    padding: 16px 0;
    border-top: 1px solid rgba(90, 62, 43, .15);
    display: flex;
    gap: 14px;
}

.value-list li:last-child {
    border-bottom: 1px solid rgba(90, 62, 43, .15);
}

.value-list .k {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--tan);
    flex: 0 0 34px;
}

.value-list .v h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--navy);
}

.value-list .v p {
    margin: 0;
    font-size: 14px;
    color: #5c4d3d;
    line-height: 1.6;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid rgba(90, 62, 43, .12);
}

.value-panel {
    background: var(--brown);
    border-radius: 20px;
    padding: 20px 32px;
}

.value-panel .value-list li {
    border-color: rgba(245, 233, 218, .2);
}

.value-panel .value-list .k {
    color: var(--tan);
}

.value-panel .value-list .v h4 {
    color: var(--cream);
}

.value-panel .value-list .v p {
    color: rgba(245, 233, 218, .8);
}

.quote-card {
    background: var(--brown);
    color: var(--cream);
    border-radius: 20px;
    padding: 40px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 21px;
    line-height: 1.5;
}

.quote-card span {
    display: block;
    margin-top: 18px;
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-size: 13px;
    opacity: .7;
}

/* BRAND / REKOMENDASI */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 8px;
}

.brand-card {
    background: var(--cream);
    border: 1px solid rgba(90, 62, 43, .12);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
}

.brand-name {
    margin: 0;
    font-size: 20px;
    color: var(--navy);
}

.brand-card p {
    margin: 12px 0 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #4a3d30;
    flex: 1;
}

.brand-map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--brown);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1.5px solid rgba(90, 62, 43, .3);
    transition: all .2s ease;
}

.brand-map:hover {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
}

/* stat strip */
.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.stat {
    border-left: 2px solid var(--tan);
    padding-left: 18px;
}

.stat .num {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    color: var(--navy);
    line-height: 1;
}

.stat .lbl {
    font-size: 13.5px;
    color: #5c4d3d;
    margin-top: 8px;
    line-height: 1.5;
}

/* PALETTE */
.palette-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-radius: 18px;
    overflow: hidden;
    margin-top: 32px;
}

@media(max-width:760px) {
    .palette-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.swatch {
    padding: 30px 16px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.swatch .hex {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    font-weight: 600;
}

.swatch .name {
    font-size: 11.5px;
    margin-top: 4px;
    opacity: .85;
}

/* PRODUK */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.prod-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(90, 62, 43, .12);
    display: flex;
    flex-direction: column;
}

.prod-visual {
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 12px;
}

.prod-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
}

.prod-card:hover .prod-visual img {
    transform: scale(1.04);
}

.prod-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--tan);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.prod-body h3 {
    margin: 8px 0 10px;
    font-size: 19px;
    color: var(--navy);
}

.prod-body p {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3d30;
    margin: 0 0 18px;
    flex: 1;
}

.prod-foot {
    display: none;
}

.merch-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 8px;
}

.merch-card {
    background: var(--navy);
    color: var(--cream);
    border-radius: 16px;
    padding: 24px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    min-height: 100px;
}

/* KONTAK */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

@media(max-width:820px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

.contact-info h3 {
    font-size: 22px;
    color: var(--navy);
    margin: 0 0 18px;
}

.info-row {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(90, 62, 43, .15);
}

.info-row .ic {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    font-size: 16px;
}

.info-row .t {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--tan);
}

.info-row .d {
    font-size: 15px;
    color: var(--navy);
    margin-top: 2px;
}

.info-note {
    font-size: 12.5px;
    color: #8a7b68;
    margin-top: 14px;
    line-height: 1.6;
}

form {
    background: var(--cream);
    border-radius: 20px;
    padding: 34px;
    border: 1px solid rgba(90, 62, 43, .12);
}

.f-row {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.f-row label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.f-row input,
.f-row textarea {
    border: 1.5px solid rgba(90, 62, 43, .25);
    background: var(--paper);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 14.5px;
    color: var(--ink);
    resize: vertical;
}

.f-row input:focus,
.f-row textarea:focus {
    outline: 2px solid var(--tan);
    outline-offset: 1px;
}

form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 999px;
    background: var(--navy);
    color: var(--cream);
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    transition: transform .2s ease;
}

form button:hover {
    transform: translateY(-2px);
}

.form-msg {
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--brown);
    display: none;
}

/* INSTAGRAM CARD */
.ig-card {
    max-width: 460px;
    margin: 0 auto;
    background: var(--cream);
    border: 1px solid rgba(90, 62, 43, .12);
    border-radius: 24px;
    padding: 48px 34px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.ig-icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.ig-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ig-handle {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
}

.ig-note {
    font-size: 12.5px;
    color: #8a7b68;
    margin: 0 0 6px;
    line-height: 1.6;
}

footer {
    background: #17233b;
    color: #f7efe5;
    padding: 70px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-logo h3 {
    margin: 0;
    font-size: 32px;
    color: #fff;
}

.footer-logo span {
    font-size: 14px;
    color: #d8cab6;
}

.footer-desc {
    margin-top: 22px;
    max-width: 500px;
    line-height: 1.8;
    color: #d8cab6;
    font-size: 15px;
}

.footer-social h4 {
    margin: 0 0 18px;
    font-size: 20px;
    color: #fff;
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social a {
    color: #d8cab6;
    text-decoration: none;
    margin-bottom: 14px;
    transition: .3s;
    font-size: 15px;
}

.footer-social a:hover {
    color: #C89B5A;
    transform: translateX(6px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 45px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #bcae9c;
}

@media(max-width:820px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        width: 58px;
        height: 58px;
    }

    .footer-logo h3 {
        font-size: 28px;
    }

    .footer-desc {
        margin: 20px auto 0;
    }

    .footer-social {
        align-items: center;
    }

    .footer-social a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 13px;
    }

}

@media (max-width:820px) {

    nav {
        padding: 16px 20px;
    }

    .logo-mark {
        font-size: 22px;
        gap: 8px;
    }

    .logo {
        width: 45px;
        height: 45px;
    }

    .burger {
        margin-left: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-grid h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .footer-grid p {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        font-size: 12px;
        gap: 8px;
    }

}

/* LIGHTBOX */
.prod-visual img,
.about-img {
    cursor: zoom-in;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(23, 35, 59, .92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 42px;
    line-height: 1;
    color: #f7efe5;
    cursor: pointer;
    transition: color .2s ease;
}

.lightbox-close:hover {
    color: var(--tan);
}