/* ==========================================================================
   SUSI SONGKET - LUXURY HERITAGE STYLESHEET
   Inspired by Goyard.com (Refined Elegance, Timeless Craftsmanship)
   Colors:
   - Emerald Deep: #064E3B
   - Antique Gold: #C6A15B
   - Ivory White: #FAF9F6
   - Charcoal: #1C1C1A
   ========================================================================== */

:root {
    --color-emerald: #064E3B;
    --color-emerald-dark: #043629;
    --color-emerald-deep: #02241b;
    --color-gold: #C6A15B;
    --color-gold-light: #E2C889;
    --color-gold-dark: #A07F3F;
    --color-ivory: #FAF9F6;
    --color-ivory-dark: #F2EFE9;
    --color-charcoal: #1C1C1A;
    --color-muted: #6E6D68;
    --color-border-gold: rgba(198, 161, 91, 0.35);

    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Global Reset */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-ivory);
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    color: #4A4A46;
    font-size: 0.975rem;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Luxury Section Titles */
.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background-color: var(--color-gold);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.section-title-light {
    color: var(--color-ivory);
}

/* Buttons */
.btn-gold-solid {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    border: 1px solid var(--color-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(198, 161, 91, 0.25);
}

.btn-gold-solid:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 161, 91, 0.35);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--color-ivory);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    border: 1px solid var(--color-border-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-gold-outline:hover {
    background-color: rgba(198, 161, 91, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

.link-gold {
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.link-gold:hover {
    color: var(--color-gold-light);
    border-bottom-color: var(--color-gold-light);
}

/* Header & Navbar */
.navbar-custom {
    background-color: rgba(6, 78, 59, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-gold);
    padding: 14px 0;
    transition: all 0.4s ease;
    z-index: 1050;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    align-items: center;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--color-ivory);
    line-height: 1;
}

/* Navbar Link Styling */
.navbar-custom .nav-link-custom,
.navbar-custom .nav-link-custom.active,
.navbar-custom .nav-link-custom:focus,
.navbar-custom .nav-link-custom:hover {
    color: var(--color-ivory) !important;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 16px !important;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 65%;
}

/* True Geometric Center alignment for Desktop Navbar Menu */
@media (min-width: 992px) {
    .navbar-custom .container {
        position: relative;
    }

    .navbar-custom .navbar-collapse {
        position: static;
    }

    .navbar-custom .navbar-nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.navbar-btn-contact {
    border: 1px solid var(--color-gold);
    color: var(--color-gold-light);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 2px;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-btn-contact:hover {
    background-color: var(--color-gold);
    color: var(--color-emerald-deep);
    border-color: var(--color-gold);
}

.navbar-btn-user {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border-gold);
    color: var(--color-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-btn-user:hover {
    background-color: var(--color-gold);
    color: var(--color-emerald-deep);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 161, 91, 0.3);
}

/* Custom Luxury Dropdown Menu (Goyard-Style) */
.navbar-custom .nav-item.dropdown {
    position: relative;
}

.navbar-custom .dropdown-menu-custom {
    background-color: rgba(4, 34, 25, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--color-border-gold);
    border-radius: 2px;
    padding: 10px 0;
    margin-top: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.navbar-custom .dropdown-item-custom {
    color: rgba(250, 249, 246, 0.85);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 11px 22px;
    transition: all 0.3s ease;
}

.navbar-custom .dropdown-item-custom:hover,
.navbar-custom .dropdown-item-custom.active,
.navbar-custom .dropdown-item-custom:focus {
    background-color: rgba(198, 161, 91, 0.15);
    color: var(--color-gold-light);
}

/* Remove Bootstrap default dropdown arrow styling if needed and align nicely */
.navbar-custom .dropdown-toggle::after {
    display: none !important;
}

/* Hover dropdown auto-open on Desktop (Without clicking) */
@media (min-width: 992px) {
    /* Invisible hover bridge gap filler */
    .navbar-custom .nav-item.dropdown::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 100%;
        height: 20px;
    }

    .navbar-custom .nav-item.dropdown .dropdown-menu-custom {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        pointer-events: none;
    }

    .navbar-custom .nav-item.dropdown:hover .dropdown-menu-custom,
    .navbar-custom .nav-item.dropdown .dropdown-menu-custom:hover {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
}

/* GOYARD-STYLE SUBPAGE HERO BANNER */
.page-hero-section {
    background: linear-gradient(180deg, rgba(6, 78, 59, 0.94) 0%, rgba(2, 36, 27, 0.98) 100%),
        url('../img/randompic/PHOTO DISPLAY.jpg') center/cover no-repeat;
    padding: 160px 0 80px 0;
    color: var(--color-ivory);
    text-align: center;
    border-bottom: 1px solid var(--color-gold);
    position: relative;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(198, 161, 91, 0.1) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.page-hero-badge {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--color-gold-light);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.page-hero-badge::before,
.page-hero-badge::after {
    content: '';
    width: 24px;
    height: 1px;
    background-color: var(--color-gold);
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--color-ivory);
    margin-bottom: 14px;
    line-height: 1.15;
}

.page-breadcrumb {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-breadcrumb a {
    color: rgba(250, 249, 246, 0.8);
}

.page-breadcrumb a:hover {
    color: var(--color-gold-light);
}

/* HERO SECTION (FULL 100VH VIEWPORT) */
.hero-section {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(6, 78, 59, 0.65) 0%, rgba(3, 36, 27, 0.88) 100%),
        url('../img/foto main page.jpg') center/cover no-repeat;
    color: var(--color-ivory);
    padding-top: 80px;
    box-sizing: border-box;
}

.hero-overlay-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(198, 161, 91, 0.12) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--color-gold-light);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-ivory);
    margin-bottom: 24px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(250, 249, 246, 0.85);
    max-width: 620px;
    margin: 0 auto 36px auto;
    font-weight: 300;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--color-gold);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.85;
}

.scroll-icon {
    width: 24px;
    height: 38px;
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    animation: scrollAnimation 1.8s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    80% {
        transform: translate(-50%, 14px);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
}

/* ABOUT SECTION */
.about-section {
    padding: 100px 0;
    background-color: var(--color-ivory);
}

.about-img-frame {
    position: relative;
    padding: 12px;
    background: var(--color-ivory);
    border: 1px solid var(--color-border-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.about-img-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 16px;
    background: linear-gradient(0deg, rgba(6,78,59,0.9) 0%, transparent 100%);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
}

.about-content {
    padding-left: 20px;
}

/* GOYARD CINEMA VIDEO SECTION */
.video-section {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--color-emerald) 0%, var(--color-emerald-dark) 100%);
    color: var(--color-ivory);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(198, 161, 91, 0.08) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.cinema-video-frame {
    position: relative;
    padding: 16px;
    background: rgba(2, 36, 27, 0.95);
    border: 1px solid var(--color-gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.cinema-video-frame::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(198, 161, 91, 0.25);
    pointer-events: none;
}

.cinema-video-frame video {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    display: block;
}

/* HISTORY CHAPTERS & EDITORIAL STORYTELLING */
.history-section {
    padding: 110px 0;
    background-color: var(--color-ivory);
}

.chapter-badge {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: inline-block;
    margin-bottom: 12px;
}

.story-chapter-box {
    background-color: #FFFFFF;
    border: 1px solid rgba(220, 215, 205, 0.8);
    padding: 45px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    position: relative;
    height: 100%;
}

.story-chapter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--color-gold);
}

.story-img-frame {
    position: relative;
    padding: 10px;
    background: var(--color-ivory);
    border: 1px solid var(--color-border-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.story-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

/* HERITAGE LEGAL SEAL BOX */
.heritage-legal-seal {
    background: #F4F1EA;
    border: 1px solid var(--color-gold);
    padding: 36px 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.04);
}

.heritage-legal-seal::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px dashed rgba(198, 161, 91, 0.4);
    pointer-events: none;
}

.seal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.seal-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-emerald);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* GOYARD VISI MISI & NILAI CARDS */
.vmv-section {
    padding: 110px 0;
    background-color: #F4F1EA;
    border-top: 1px solid rgba(198, 161, 91, 0.18);
    border-bottom: 1px solid rgba(198, 161, 91, 0.18);
}

.goyard-vmv-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(220, 215, 205, 0.85);
    padding: 42px 36px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.goyard-vmv-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(6, 78, 59, 0.09);
}

.goyard-diamond-emblem {
    width: 52px;
    height: 52px;
    border: 1px solid var(--color-gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background-color: var(--color-ivory);
}

.goyard-diamond-icon {
    transform: rotate(-45deg);
    font-size: 1.25rem;
    color: var(--color-gold);
}

/* REFINED VALUE PILLAR BOX (UNIFORM TYPOGRAPHY & EQUAL SIZE) */
.value-pillar-box {
    background: #FAF9F6;
    border: 1px solid rgba(198, 161, 91, 0.3);
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.value-pillar-box:hover {
    background-color: #FFFFFF;
    border-color: var(--color-gold);
    box-shadow: 0 12px 28px rgba(6, 78, 59, 0.07);
    transform: translateY(-4px);
}

.value-pillar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.value-num-badge {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-emerald);
    background-color: rgba(198, 161, 91, 0.2);
    border: 1px solid var(--color-gold);
    padding: 3px 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.value-pillar-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-pillar-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-emerald);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}

.value-pillar-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: #4A4A46;
    line-height: 1.6;
    margin: 0;
}

/* VALUES SECTION */
.values-section {
    padding: 80px 0;
    background-color: #F4F1EA;
    border-top: 1px solid rgba(198, 161, 91, 0.18);
    border-bottom: 1px solid rgba(198, 161, 91, 0.18);
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #FFFFFF;
    border: 1px solid rgba(220, 215, 205, 0.6);
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.value-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gold);
    transform: rotate(45deg);
    background-color: var(--color-ivory);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    background-color: var(--color-emerald);
    border-color: var(--color-emerald);
}

.value-icon {
    transform: rotate(-45deg);
    font-size: 1.5rem;
    color: var(--color-gold);
}

.value-card:hover .value-icon {
    color: var(--color-gold-light);
}

.value-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.value-text {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* PRODUCTS / COLLECTION SECTION */
.collection-section {
    padding: 100px 0;
    background-color: var(--color-ivory);
}

.product-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(220, 215, 205, 0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.08);
    transform: translateY(-6px);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-emerald);
    color: var(--color-gold-light);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 10px;
}

.product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.product-price {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-emerald);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(198, 161, 91, 0.25);
    margin-bottom: 12px;
}

/* PROCESS SECTION ("PROSES PEMBUATAN") — REDESIGN */
.process-section {
    padding: 110px 0 100px;
    background: linear-gradient(165deg, var(--color-emerald-dark) 0%, var(--color-emerald-deep) 60%, #01150f 100%);
    color: var(--color-ivory);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(198, 161, 91, 0.07) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.process-section-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Three-stage horizontal editorial layout */
.process-stages-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    border: 1px solid rgba(198, 161, 91, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.process-connector-line {
    display: none;
}

.process-stage-item {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(198, 161, 91, 0.2);
    transition: background 0.4s ease;
    position: relative;
}
.process-stage-item:last-child { border-right: none; }
.process-stage-item:hover {
    background: rgba(198, 161, 91, 0.05);
}

.process-stage-img-frame {
    position: relative;
    overflow: hidden;
    height: 280px;
    flex-shrink: 0;
}
.process-stage-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.75) saturate(0.85);
}
.process-stage-item:hover .process-stage-img-frame img {
    transform: scale(1.07);
    filter: brightness(0.85) saturate(1);
}

.process-stage-num {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 600;
    color: rgba(250, 249, 246, 0.12);
    pointer-events: none;
    transition: color 0.4s;
    user-select: none;
    letter-spacing: -0.02em;
}
.process-stage-item:hover .process-stage-num {
    color: rgba(198, 161, 91, 0.2);
}

.process-stage-body {
    padding: 32px 28px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(198, 161, 91, 0.2);
}

.process-stage-label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.process-stage-label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: var(--color-gold);
    flex-shrink: 0;
}

.process-stage-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-ivory);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.process-stage-desc {
    font-size: 0.875rem;
    color: rgba(250, 249, 246, 0.65);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

.process-stage-sub-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}
.process-stage-sub-steps span {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(198, 161, 91, 0.35);
    padding: 4px 10px;
    border-radius: 2px;
    background: rgba(198, 161, 91, 0.06);
    transition: all 0.3s ease;
}
.process-stage-item:hover .process-stage-sub-steps span {
    border-color: rgba(198, 161, 91, 0.6);
    background: rgba(198, 161, 91, 0.12);
}

/* Responsive: stack on mobile */
@media (max-width: 991px) {
    .process-stages-wrap {
        grid-template-columns: 1fr;
    }
    .process-stage-item {
        border-right: none;
        border-bottom: 1px solid rgba(198, 161, 91, 0.2);
    }
    .process-stage-item:last-child { border-bottom: none; }
    .process-stage-img-frame { height: 220px; }
}

/* Legacy process-card kept for backward compat */
.process-card {
    background: rgba(3, 36, 27, 0.6);
    border: 1px solid var(--color-border-gold);
    padding: 20px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    background: rgba(6, 78, 59, 0.9);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.process-step-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 16px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-emerald-dark);
}

.process-img-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(198, 161, 91, 0.2);
}

.process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.process-card:hover .process-img {
    transform: scale(1.08);
}

.process-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 6px;
}

.process-text {
    font-size: 0.8rem;
    color: rgba(250, 249, 246, 0.75);
    line-height: 1.5;
    margin-bottom: 0;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 100px 0;
    background-color: var(--color-ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(198, 161, 91, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 78, 59, 0.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
}

.col-g-1 {
    grid-column: span 4;
    height: 280px;
}

.col-g-2 {
    grid-column: span 4;
    height: 280px;
}

.col-g-3 {
    grid-column: span 4;
    height: 280px;
}

.col-g-4 {
    grid-column: span 6;
    height: 320px;
}

.col-g-5 {
    grid-column: span 6;
    height: 320px;
}

/* CTA BANNER SECTION */
.cta-section {
    padding: 85px 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.92) 0%, rgba(3, 36, 27, 0.96) 100%),
        url('../img/randompic/PHOTO DISPLAY.jpg') center/cover no-repeat;
    color: var(--color-ivory);
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--color-ivory);
    margin-bottom: 12px;
}

.cta-desc {
    color: rgba(250, 249, 246, 0.82);
    font-size: 1rem;
    font-weight: 300;
}

/* FOOTER (CLEAN, NEAT & LUXURY) */
.footer {
    background-color: var(--color-emerald-deep);
    color: rgba(250, 249, 246, 0.85);
    padding-top: 70px;
    padding-bottom: 30px;
    border-top: 1px solid var(--color-border-gold);
}

.footer-logo {
    height: 46px;
    width: auto;
}

.footer-brand-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-ivory);
    letter-spacing: 0.12em;
    line-height: 1;
}

.footer-about-text {
    font-size: 0.88rem;
    color: rgba(250, 249, 246, 0.72);
    line-height: 1.65;
    margin-bottom: 24px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 1px;
    background-color: var(--color-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

/* Footer Link Styling */
.footer-links a,
.footer-links a.active,
.footer-links a:focus,
.footer-links a:hover {
    color: rgba(250, 249, 246, 0.85) !important;
    font-size: 0.86rem;
    position: relative;
    padding-bottom: 3px;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover::after,
.footer-links a.active::after {
    width: 100%;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(250, 249, 246, 0.78);
    line-height: 1.5;
}

.footer-contact-icon {
    color: var(--color-gold);
    margin-top: 3px;
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-border-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(3, 36, 27, 0.4);
}

.social-icon-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-emerald-deep);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-divider-gold {
    width: 60px;
    height: 1px;
    background-color: var(--color-border-gold);
    margin: 0 auto 12px auto;
}

.footer-bottom {
    border-top: 1px solid rgba(198, 161, 91, 0.15);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(250, 249, 246, 0.55);
    letter-spacing: 0.05em;
}

/* RESPONSIVE DESIGN ADJUSTMENTS */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .page-hero-title {
        font-size: 2.3rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .col-g-1,
    .col-g-2,
    .col-g-3 {
        grid-column: span 3;
        height: 220px;
    }

    .col-g-4,
    .col-g-5 {
        grid-column: span 3;
        height: 220px;
    }

    .story-chapter-box {
        padding: 30px 24px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .col-g-1,
    .col-g-2,
    .col-g-3,
    .col-g-4,
    .col-g-5 {
        grid-column: span 6;
        height: 240px;
    }

    .process-card {
        margin-bottom: 40px;
    }

    .story-img {
        height: 320px;
    }

    .heritage-legal-seal {
        padding: 24px 20px;
    }
}

/* =====================================================
   PH-EDITORIAL — EDITORIAL PAGE HERO (GLOBAL)
   Digunakan di semua halaman selain Home
   ===================================================== */

.ph-editorial {
    position: relative;
    height: 100vh;
    min-height: 560px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: var(--ph-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Overlay: emerald gradient dari bawah, dark tint dari atas */
.ph-editorial__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(6, 30, 20, 0.72) 0%,
            rgba(6, 46, 30, 0.55) 40%,
            rgba(6, 46, 30, 0.75) 75%,
            rgba(4, 22, 14, 0.90) 100%
        );
    z-index: 1;
}

/* Subtle geometric texture overlay */
.ph-editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(198,161,91,0.025) 60px,
        rgba(198,161,91,0.025) 61px
    );
    z-index: 2;
    pointer-events: none;
}

/* Gold line bottom border */
.ph-editorial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 30%, var(--color-gold) 70%, transparent 100%);
    z-index: 10;
}

/* Content wrapper */
.ph-editorial__content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 780px;
    margin: 0 auto;
}

/* Eyebrow label */
.ph-editorial__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.ph-editorial__eyebrow::before,
.ph-editorial__eyebrow::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--color-gold);
    flex-shrink: 0;
}

/* Title */
.ph-editorial__title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--color-ivory);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

/* Sub text */
.ph-editorial__sub {
    font-family: var(--font-sans);
    font-size: 0.93rem;
    font-weight: 300;
    color: rgba(250,249,246,0.65);
    line-height: 1.85;
    margin-bottom: 28px;
}

/* Gold divider ornament */
.ph-editorial__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 22px;
}
.ph-editorial__divider::before,
.ph-editorial__divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(198,161,91,0.5);
}
.ph-editorial__divider::before { margin-right: 4px; }
.ph-editorial__divider::after  { margin-left: 4px;  }
/* Diamond center via background trick */
.ph-editorial__divider {
    position: relative;
}
.ph-editorial__divider::before {
    background: linear-gradient(90deg, transparent, rgba(198,161,91,0.6));
}
.ph-editorial__divider::after {
    background: linear-gradient(90deg, rgba(198,161,91,0.6), transparent);
}

/* Breadcrumb */
.ph-editorial__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,249,246,0.45);
}
.ph-editorial__breadcrumb a {
    color: rgba(198,161,91,0.8);
    text-decoration: none;
    transition: color 0.3s;
}
.ph-editorial__breadcrumb a:hover { color: var(--color-gold-light); }

.ph-editorial__sep {
    color: rgba(198,161,91,0.4);
    font-size: 0.7rem;
}

/* Scroll hint bottom-right */
.ph-editorial__scroll-hint {
    position: absolute;
    bottom: 28px;
    right: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 6;
}
.ph-editorial__scroll-hint span {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(198,161,91,0.55);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
.ph-editorial__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(198,161,91,0.5), transparent);
    animation: ph-scroll-pulse 2s ease-in-out infinite;
}
@keyframes ph-scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* Responsive */
@media (max-width: 768px) {
    .ph-editorial {
        max-height: 620px;
        min-height: 480px;
    }
    .ph-editorial__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .ph-editorial__scroll-hint {
        display: none;
    }
    .ph-editorial__content {
        padding: 100px 20px 50px;
    }
}