:root {
    --bg-main: #fcfaf6;
    --bg-surface: #f4f0e8;
    --bg-card: #ffffff;
    --brand-accent: #c96f53; 
    --text-primary: #2b2927;
    --text-muted: #6e6a64;
    --border-line: #e6e0d5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header-container, .main-content, .footer-container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background-color: rgba(252, 250, 246, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-line);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--text-primary);
    text-transform: uppercase;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-muted);
    margin-left: 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--brand-accent);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
@keyframes editorialReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content {
    flex: 1;
    padding-bottom: 8rem;
}

.asymmetric-hero {
    padding: 8rem 0 5rem 0;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 1.5rem;
    animation: editorialReveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 2rem;
    max-width: 800px;
    animation: editorialReveal 1s cubic-bezier(0.25, 1, 0.5, 1) both;
    animation-delay: 0.1s;
}

.hero-subline {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
    animation: editorialReveal 1s cubic-bezier(0.25, 1, 0.5, 1) both;
    animation-delay: 0.2s;
}

/* ==========================================================================
   CATALOG GRID
   ========================================================================== */
.catalog-section {
    padding-top: 4rem;
}

.section-title-wrap {
    margin-bottom: 3.5rem;
    border-bottom: 1px solid var(--border-line);
    padding-bottom: 1.5rem;
}

.section-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 4rem 2.5rem;
}

.editorial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-line);
    padding: 1rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    opacity: 0;
    animation: editorialReveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
}

.editorial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(43, 41, 39, 0.04);
}

.image-wrapper {
    background-color: var(--bg-surface);
    overflow: hidden;
    margin-bottom: 1.25rem;
    aspect-ratio: 3 / 4;
}

.editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: sepia(10%) contrast(0.95);
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.editorial-card:hover img {
    transform: scale(1.03);
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
}

.product-price {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
}

.action-trigger {
    background: none;
    border: none;
    color: var(--brand-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.action-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.editorial-card:hover .action-trigger svg {
    transform: translateX(4px);
}

/* ==========================================================================
   PAGES & COMPONENTS
   ========================================================================== */
.standard-page {
    padding: 6rem 0;
    max-width: 750px;
}

.page-header-minimal {
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-line);
    padding-bottom: 2rem;
}

.page-title-minimal {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.page-desc-minimal {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.document-body h3 {
    font-size: 1.3rem;
    margin: 2.5rem 0 0.75rem 0;
    color: var(--text-primary);
    font-weight: 600;
}

.document-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-line);
    padding: 2.5rem;
    border-radius: 4px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1140px;
}

.contact-details-side {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background-color: var(--bg-surface);
    padding: 4rem;
    border-radius: 4px;
}

.detail-block h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-link {
    font-size: 1.4rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--brand-accent);
}

.address-text {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.hamburger-toggle {
    display: none; /* Sembunyikan di desktop */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
    z-index: 1100; /* Berada di atas overlay */
}

.hamburger-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-line);
    padding: 5rem 0 3rem 0;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-line);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--brand-accent);
}

.footer-bottom {
    width: 90%;
    max-width: 1140px;
    margin: 2rem auto 0 auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TOTAL MOBILE EDITORIAL EXPERIENCES - ALL PAGES)
   ========================================================================== */
@media (max-width: 768px) {
    /* ----------------------------------------------------------------------
       1. Global Core Layout Adjustment
       ---------------------------------------------------------------------- */
    .header-container, .main-content, .footer-container {
        width: 88%; /* Memberikan ruang margin samping yang elegan */
    }

    .header-container {
        padding: 1.75rem 0;
    }
    
    .brand-logo {
        font-size: 1.05rem;
        gap: 0.6rem;
        z-index: 1100;
    }
    
    .logo-img {
        height: 28px;
    }

    /* Hamburger Menu Toggle */
    .hamburger-toggle {
        display: flex;
        gap: 5px;
    }
    
    .hamburger-toggle .bar {
        width: 20px;
        background-color: var(--text-primary);
    }

    .hamburger-toggle.active .bar:nth-child(1) {
        transform: translateY(3.5px) rotate(45deg);
    }
    .hamburger-toggle.active .bar:nth-child(2) {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    /* Fullscreen Blur Overlay Navigation */
    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(252, 250, 246, 0.96); 
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1050;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .main-navigation.active {
        opacity: 1;
        pointer-events: auto;
    }

    .main-navigation a {
        margin-left: 0;
        font-size: 1.75rem;
        font-weight: 500;
        letter-spacing: -0.01em;
        transform: translateY(15px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .main-navigation.active a {
        opacity: 1;
        transform: translateY(0);
    }
    .main-navigation.active a:nth-child(1) { transition-delay: 0.1s; }
    .main-navigation.active a:nth-child(2) { transition-delay: 0.15s; }
    .main-navigation.active a:nth-child(3) { transition-delay: 0.2s; }

    /* ----------------------------------------------------------------------
       2. Halaman Utama: Hero & Catalog Lookbook
       ---------------------------------------------------------------------- */
    .asymmetric-hero {
        padding: 5rem 0 3rem 0;
    }

    .hero-badge {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }

    .hero-headline {
        font-size: 2.4rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin-bottom: 1.25rem;
    }

    .hero-subline {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .catalog-section {
        padding-top: 3rem;
    }

    .section-title-wrap {
        margin-bottom: 3rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    /* Grid dibongkar menjadi susunan vertikal majalah fashion */
    .editorial-grid {
        display: flex;
        flex-direction: column;
        gap: 4.5rem;
    }

    .editorial-card {
        background: none;
        border: none;
        padding: 0;
        border-radius: 0;
        box-shadow: none !important;
    }

    .image-wrapper {
        margin-bottom: 1.5rem;
        aspect-ratio: 3 / 4; 
        border-radius: 0;
    }

    .product-title {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .card-footer {
        border-top: none;
        padding-top: 0.25rem;
    }

    /* ----------------------------------------------------------------------
       3. Halaman FAQ: Optimalisasi Struktur List/Akordion
       ---------------------------------------------------------------------- */
    .standard-page {
        padding: 4rem 0;
    }

    .page-title-minimal {
        font-size: 2rem;
        letter-spacing: -0.02em;
        margin-bottom: 2.5rem;
    }

    /* Merapatkan jarak item tanya-jawab agar tidak terlalu renggang di layar HP */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 1rem; 
    }

    .faq-item {
        padding: 1.5rem 1.25rem; /* Padding lebih intim */
        border-radius: 4px;
    }

    .faq-question {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-top: 0.75rem;
    }

    /* ----------------------------------------------------------------------
       4. Halaman Kontak: Mengubah Kolom Kiri-Kanan Jadi Vertikal
       ---------------------------------------------------------------------- */
    /* Layout desktop yang membagi form dan info (grid 2 kolom) kita tumpuk ke bawah */
    .contact-split-layout {
        grid-template-columns: 1fr; /* Reset menjadi 1 kolom tunggal */
        gap: 3rem; /* Jarak aman antar section */
    }

    .contact-form-side {
        order: 1; /* Form tetap di atas */
    }

    .contact-details-side {
        order: 2; /* Detail info kontak berpindah ke bawah form */
        padding: 2.5rem 1.5rem;
        border-radius: 4px;
    }

    .contact-link {
        font-size: 1.25rem;
        word-break: break-all; /* Mencegah email panjang merusak lebar layar */
    }

    /* ----------------------------------------------------------------------
       5. Footer Adjustment
       ---------------------------------------------------------------------- */
    .site-footer {
        padding: 4rem 0 2.5rem 0;
        margin-top: 4rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }
}