* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --black: #0A0A0A;
    --black-soft: #111111;
    --black-card: #161616;
    --white: #FAFAF8;
    --white-muted: #dfdcd7;
    --white-soft: #e4decf;
    --text-muted: #575553;
    --shadow: #a19f9a3e;

    --nav-height: 80px;
    --border-radius: 0px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: #e7e4db;
    color: var(--black);
    overflow-x: hidden;
}   

/* =================================== SECTION BASE =================================== */
section { 
    max-width: 1200px;
    padding: 6rem 4rem;  
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.section-full {
    max-width: 100%;
    padding: 6rem 4rem;  
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #0A0A0A;
}

.section-label {
    font-size: 1rem; 
    font-weight: 300;
    color: var(--text-muted); 
    line-height: 1.3;
    letter-spacing: 0.2em; 
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-label-center {
    font-size: 1rem; 
    font-weight: 300;
    color: var(--text-muted); 
    line-height: 1.3;
    letter-spacing: 0.2em; 
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; line-height: 1;
    margin-bottom: 1.5rem;
}

.section-title-center {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; line-height: 1;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-sub {
    font-size: 1rem; 
    font-weight: 300;
    color: var(--text-muted); 
    line-height: 1.7;
}

.section-sub-center {
    font-size: 1rem; 
    font-weight: 300;
    color: var(--text-muted); 
    line-height: 1.7;
    text-align: center;
}

.section-divider {
    border: none;
    border-top: 5px solid rgba(201,168,76,0.12);
}

/* =================================== NAVIGATION =================================== */
.nav {
    height: var(--nav-height);
    position: sticky; 
    top: 0;
    z-index: 100;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    padding: 1.25rem 4rem;
    background: var(--black);
    backdrop-filter: blur(12px);
}

.nav-logo {
    display: flex; 
    align-items: center; 
    gap: 0.75rem;
}

.nav-logo img {
    width: 50px;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.nav-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; 
    font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex; gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.78rem; font-weight: 400;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--white);
    transition: color 0.25s;
}

.nav-links a:hover { color: var(--gold); }

.nav-contact {
    padding: 0.5rem 1.4rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s, color 0.25s;
    cursor: pointer; background: transparent;
    font-family: 'Outfit', sans-serif;
}

.nav-contact:hover { 
    color: var(--white);
    background-color: var(--gold);
}


/* =================================== HERO =================================== */
.hero {
    min-height: calc(100vh - var(--nav-height));
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    text-align: center;
    overflow: hidden;
}   

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 1rem;
    border: 2px solid var(--gold);
    font-size: 0.7rem; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.hero-title img {
    width: 220px;
    margin-top: 5rem;
    filter: drop-shadow(-10px 10px 0px var(--shadow));
}

.hero-title h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600; 
    line-height: 1.1;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-title h1 em { 
    color: var(--black);
}

.hero-sub {
    max-width: 520px; 
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex; gap: 1rem; justify-content: center;
    animation: fadeInUp 0.8s 0.45s ease both;
}

.btn-primary {
    padding: 0.85rem 2.2rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.78rem; 
    font-weight: 600;
    letter-spacing: 0.1em; 
    text-transform: uppercase;
    text-decoration: none; 
    border: none; 
    cursor: pointer;
    transition: transform ease-in-out 0.2s, box-shadow ease-in-out 0.2s;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 0 0 var(--shadow);
}

.btn-primary:hover { 
    transform: translateY(-5px); 
    box-shadow: -5px 5px 0 var(--shadow);
}

.btn-outline {
    padding: 0.85rem 2.2rem;
    background-color: transparent;
    color: var(--gold-dark);
    font-size: 0.78rem; 
    font-weight: 400;
    letter-spacing: 0.1em; 
    text-transform: uppercase;
    text-decoration: none; 
    border: 2px solid var(--gold); 
    cursor: pointer;
    transition: transform ease-in-out 0.2s, box-shadow ease-in-out 0.2s;
    font-family: 'Outfit', sans-serif;
}

.btn-outline:hover { 
    transform: translateY(-5px);
    box-shadow: -5px 5px 0 var(--shadow);
}

.hero-stats {
    display: flex; 
    justify-content: center;
    align-items: flex-end;
    gap: 5rem;
    animation: fadeInUp 0.8s 0.6s ease both;
    margin-top: 5rem;
}

.stat-item { text-align: center; }

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; 
    font-weight: 600; 
    color: var(--gold-dark);
    line-height: 1;
}
.stat-label {
    font-size: 0.68rem; 
    font-weight: 400;
    letter-spacing: 0.12em; 
    text-transform: uppercase;
    color: var(--text-muted); 
    margin-top: 0.35rem;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(24px); 
    }
    to { 
        opacity: 1;
        transform: translateY(0); 
    }
}


/* =================================== ABOUT =================================== */

.about-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 4rem; 
    align-items: center;
}

.span-title{
    color: var(--gold-dark);
    font-style: italic;
    font-weight: 100;
    font-size: 4rem;
}

.span-subtitle{
    color: var(--gold-dark);
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.25rem;
}

.about-text p strong { 
    /* color: var(--black-soft);  */
    font-weight: 500; 
}

.about-cards {
    display: grid; 
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    width: 560px;
    height: 430px;
    background-color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: -5px 5px 0 var(--shadow);
}

.about-card {
    overflow: hidden;
}

.about-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cards .emblem {
    filter: drop-shadow(-6px 6px 0.5px var(--shadow));
}


/* =================================== PRODUCTS =================================== */
.products-section { 
    padding: 6rem 0; 
}

.products-card p {
    font-size: 1.1rem; 
    font-weight: 300;
    color: var(--white-muted); 
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.products-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 4rem; 
}

.products-inner h2 {
    color: var(--black);
}

.products-grid {
    display: grid; 
    grid-template-columns: repeat(4, 200px);
    gap: 2rem; 
    margin-top: 3rem;
    border-radius: var(--border-radius);
    justify-content: center;
    align-items: center;
}   

.product-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid var(--gold-light);
    transition: transform ease-in-out 0.2s, box-shadow ease-in-out 0.2s;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card:hover { 
    transform: scale(1.01);
    box-shadow: -5px 5px 0 var(--shadow);
}


/* =================================== VISI & MISI =================================== */
.vm-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.vm-box {
    border: 2px solid var(--gold-light);
    padding: 2.5rem;
    position: relative;
    box-shadow: -5px 5px 0 var(--shadow);
    background-color: white;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.vm-box::before {
    content: '';
    position: absolute; 
    top: 0px; 
    left: 0px;
    width: 6rem; 
    height: 6px;
    background: var(--gold-light);
}

.vm-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; 
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.vm-box p {
    margin-bottom: 1rem;
    text-align: justify;
}

.vm-box ul {
    list-style: none; 
    padding: 0;
    margin-top: -0.75rem;
}

.vm-box li {
    padding: 0.6rem 0;
    display: flex; 
    gap: 0.75rem;
    text-align: justify;
}

.vm-box li::before {
    content: '→'; 
    color: var(--gold); 
    font-size: 1.1rem;
}


/* =================================== Achievement   =================================== */
.marquee-rows {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.marquee-row {
    overflow: hidden;
    position: relative;
}

.marquee-row::before, .marquee-row::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.marquee-row::before {
    left: 0;
    background: linear-gradient(to right, var(--white-soft), transparent);
}

.marquee-row::after {
    right: 0;
    background: linear-gradient(to left, var(--white-soft), transparent);
}

/* ── TRACK ── */
.track {
    display: flex;
    gap: 10px;
    width: max-content;
}
.line-1, .line-3{
    animation: scroll-left 20s linear infinite;
}

.line-2 {
    animation: scroll-right 25s linear infinite;
}

@keyframes scroll-left {
    from { transform: translateX(0%); }
    to   { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* pause on hover */
.marquee-row:hover .track {
    animation-play-state: paused;
}

/* ── ACHIEVEMENT CARD ── */
.ach-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid rgba(201,168,76,0.2);
    padding: 10px 18px 10px 12px;
    flex-shrink: 0;
    cursor: default;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.15s;
    min-width: 220px;
}

.ach-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.ach-card:hover {
    border-color: rgba(201,168,76,0.55);
    transform: translateY(-2px);
    box-shadow: -4px 4px 0 var(--shadow);
}

.ach-card:hover::after { width: 100%; }

.ach-img-wrap {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--bg);
    padding: 5px;
}

.ach-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.2s;
}

.ach-card:hover .ach-img-wrap img {
    filter: grayscale(0%) opacity(1);
}

.ach-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.ach-card::before {
    display: none;
}


/* =================================== LOCATION =================================== */
.locations-grid {
    display: grid; 
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; 
    margin-top: 3rem;
}

.location-card {
    background: var(--white );
    border: 2px solid var(--gold);
    padding: 1.75rem;
    transition: transform ease-in-out 0.25s, box-shadow ease-in-out 0.25s;
}

.location-card:hover { 
    transform: translateY(-7px);
    box-shadow: -10px 10px 0 var(--shadow);
}

.location-type {
    font-size: 0.65rem; 
    font-weight: 600;
    letter-spacing: 0.15em; 
    text-transform: uppercase;
    color: var(--gold-dark); 
    margin-bottom: 0.6rem;
}

.location-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; 
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.location-addr {
    font-size: 0.8rem; 
    font-weight: 300;
    color: var(--text-muted); 
    line-height: 1.6;
}


/* =================================== CTA =================================== */
.cta-wrap {
    background: var(--white-soft);
    position: relative;
    overflow: hidden;
}

.cta-top {
    padding: 5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.inner-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cta-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem,5vw,4.5rem);
    font-weight: 600;
    line-height:1.05;
    text-align: center;
    color: var(--black);
}

.cta-title em { 
    color: var(--gold-dark);
    font-style: italic; 
}

.cta-desc {
    font-size: 0.95rem;
    font-weight: 300;
    text-align: center;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 1.25rem;
    max-width: 480px;
}

.cta-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;  
    grid-template-columns: 1fr 1fr;
}

.brand-panel {
    padding :3rem 4rem;
    position: relative;
    transition: background 0.2s;
}
.brand-panel:first-child { border-right: 1px solid var(--gold); }

.brand-panel:hover { background:rgba(201,168,76,0.04); }

.brand-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 4rem;
    width: 3rem;
    height: 2px;
    background: var(--gold);
}

.brand-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background-color: white;
    margin-left: -2rem;
    padding: 0.7rem 2rem;
    border: 2px solid var(--gold);
    overflow: hidden;
    width: 100%;
    height: 120px;
    transition: box-shadow ease-in-out 0.2s, transform ease-in-out 0.2s;
}

.brand-emblem {
    width: 100px;
    height:100px;
}

.brand-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
}

.brand-tagline {
    font-size: 0.68rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.15rem;
    width: max-content;
}

.brand-decor {
    width: 100%;
    position: relative;
    right: -4rem;
    rotate: 20deg;
    overflow: hidden;
    display: flex;
    justify-content: end;
}

.brand-panel:hover .brand-head {
    box-shadow: -10px 10px 0 var(--shadow);
    transform: translateY(-5px);
}

.decor {
    width: 120px;
    height: 400px;
    background-color: var(--shadow);
    transition: background-color ease-in-out 0.2s;
}

.brand-panel:hover .decor {
    background-color: var(--gold);
}

.contact-rows {
    display: flex;
    flex-direction: column;
}

.contact-row {
    display: flex;
    align-items: center;gap:1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    text-decoration: none;
    position: relative;
    transition: padding-left 0.2s;
}

.contact-row::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.2s ease;
}
.contact-row:hover { padding-left:2rem; }
.contact-row:hover::after { width:1.5rem; }

.contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 0.5px solid rgba(201,168,76,0.5);
    flex-shrink: 0;
    transition:border-color ease-in-out 0.2s, box-shadow ease-in-out 0.2s;
}
.contact-row:hover .contact-icon {
    border-color: var(--gold);
    box-shadow: -5px 5px 0 var(--shadow);
}
.contact-icon svg {
    width:18px;
    height:18px;
}

.contact-platform {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.2;
}
.contact-value {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--black);
    margin-top: 0.1rem;
}

.contact-arrow {
    margin-left: auto;
    font-size: 0.8rem;
    color: rgba(201,168,76,0);
    transition: color 0.2s, transform 0.2s;
}
.contact-row:hover .contact-arrow { color: var(--gold-dark);
    transform: translateX(3px);
}


/* =================================== FOOTER =================================== */
footer {
    padding: 2.5rem 4rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    font-size: 1rem; font-weight: 700;
    letter-spacing: 0.1em;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-dark);
}

.creator {
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.75rem;
}

.footer-note {
    font-size: 1rem; 
    font-weight: 300;
    color: var(--text-muted);
}


/* =================================== SETTING ENTAH APA INI =================================== */
.full-bg {
    background-color: var(--white-soft);
}

a {
    text-decoration: none;
    color: inherit;
}

strong {
    font-weight: 700;
}


/* ===================================================================================================
   RESPONSIVE — MEDIA QUERIES
   Breakpoints:
     1204px  → layout tightening (about fix, nav shrink)
     1024px  → laptop/tablet landscape
     950px   → tablet portrait
     480px   → mobile
=================================================================================================== */

/* ─────────────────────────────────────────────
   HAMBURGER BUTTON (hidden on desktop)
───────────────────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--gold);
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav contact link inside mobile dropdown (hidden on desktop) */
.nav-contact-mobile { display: none; }


@media (max-width: 1204px) {

    /* NAV */
    .nav {
        padding: 1rem 2.5rem;
    }
    .nav-logo img { width: 38px; }
    .nav-logo span { font-size: 0.88rem; }
    .nav-links { gap: 1.6rem; }
    .nav-links a { font-size: 0.7rem; }
    .nav-contact { 
        font-size: 0.68rem; 
        padding: 0.45rem 1rem; 
    }

    /* ABOUT — fix layout break */
    .about-grid { gap: 2.5rem; }
    .about-cards {
        width: 100%;
        max-width: 460px;
        height: 360px;
    }

    /* PRODUCTS */
    .products-grid { grid-template-columns: repeat(4, 1fr); }
    .product-card { box-shadow: -5px 5px 0 var(--shadow); }
    .product-card:hover { transform: none; }

    .section-full { padding: 4rem 1.5rem; }
    .ach-card { 
        min-width: 170px; 
        padding: 8px 12px 8px 10px; 
    }
    .ach-img-wrap { height: 140px; }
    .ach-label { font-size: 0.7rem; }
    
    .location-card { box-shadow: -5px 5px 0 var(--shadow); }
    .location-card:hover { transform: none; }

    /* CTA */
    .brand-panel { padding: 2.5rem 2.5rem; }
}

@media (max-width: 1168px) {
    .hero-title { height: auto; gap: 1.2rem; }
    .hero-title img { width: 160px; margin-top: 3rem; }
    .hero-title h1 { font-size: 3.5rem; }
    .hero-sub { margin-top: -1rem;}
    .hero-stats { gap: 3rem; margin-top: 4rem; }

    .brand-wrap {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    /* SECTION base */
    section { padding: 5rem 3rem; }

    .btn-primary { box-shadow: -5px 5px 0 var(--shadow); }
    .btn-outline { box-shadow: -5px 5px 0 var(--shadow); }
    .btn-primary:hover { 
        transform: none; 
        box-shadow: -5px 5px 0 var(--shadow);
    }
    .btn-outline:hover { 
        transform: none;
        box-shadow: -5px 5px 0 var(--shadow);
    }

    /* ABOUT */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-cards {
        width: 100%;
        max-width: 580px;
        height: 380px;
        margin: 0 auto;
    }

    /* PRODUCTS */
    .products-inner { padding: 0 4rem; }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    /* VISI MISI */
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ach-img-wrap img { filter: none; }
    .marquee-row:hover .track { animation-play-state: running; }
    .ach-card { box-shadow: -5px 5px 0 var(--shadow); }
    .ach-card:hover {
        border-color: transparent;
        transform: none;
        box-shadow: none;
    }
    .ach-card:hover::after { width: 0; }

    /* LOCATIONS */
    .locations-grid { grid-template-columns: 1fr 1fr; }
    .location-card:hover { 
        transform: none;
        box-shadow: -5px 5px 0 var(--shadow);
    }

    /* CTA */
    .cta-top {
        padding: 4rem 3rem;
        gap: 1.5rem;
    }
    .cta-bottom {
        grid-template-columns: 1fr;
    }
    .brand-panel:first-child {
        border-right: none;
        border-bottom: 1px solid var(--gold);
    }
    .brand-panel {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 3rem 2rem;
    }
    .brand-panel:hover { background: transparent; }
    .brand-wrap {   
        width: 100%;
        max-width: 480px;
    }
    .brand-head {
        width: 100%;
        margin-left: 0;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        height: auto;
        padding: 1.5rem 2rem 1rem;
        gap: 0.5rem;
        box-shadow: -5px 5px 0 var(--shadow);
    }
    .brand-panel:hover .brand-head {
        box-shadow: -5px 5px 0 var(--shadow);
        transform: none;
    }
    .brand-emblem {
        width: 80px;
        height: 80px;
    }
    .brand-name { text-align: center; font-size: 1.4rem; }
    .brand-tagline { text-align: center; width: 100%; }
    .brand-decor { display: none; }
    .brand-panel:hover .decor {
        background-color: transparent;
    }
    .brand-panel::before { left: 50%; transform: translateX(-50%); }
    .contact-rows {
        gap: 10px;
        width: 100%;
        max-width: 480px;
        margin-top: 0.5rem;
    }
    .contact-row {
        background-color: var(--white);
        padding: 1rem 1.5rem;
        border: 1px solid rgba(201,168,76,0.3);
        box-shadow: -4px 4px 0 var(--shadow);
    }
    .contact-row:hover { padding: 1rem 1.5rem; }
    .contact-row:hover::after { width: 0; }
    .contact-icon { box-shadow: -5px 5px 0 var(--shadow); }
    .contact-row:hover .contact-icon {
        box-shadow: -5px 5px 0 var(--shadow);
    }
    .contact-row:hover .contact-arrow { 
        color: transparent;
        transform: none;
    }

    /* FOOTER */
    footer { padding: 2rem 3rem; }
}


@media (max-width: 950px) {

    :root { --nav-height: 68px; }

    /* NAV */
    .nav { padding: 1rem 1.5rem; }
    .nav-logo img { width: 34px; }
    .nav-logo span { font-size: 0.82rem; }
    .nav-links {
        display: none;  
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--black);
        padding: 1rem 0 1.5rem;
        border-top: 1px solid rgba(201,168,76,0.15);
        z-index: 99;
    }
    .nav-links.nav-open { display: flex; }
    .nav-links li {
        padding: 0;
        border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a {
        display: block;
        padding: 0.85rem 2rem;
        font-size: 0.75rem;
        letter-spacing: 0.14em;
    }
    .nav-contact { display: none; }
    .nav-contact-mobile { display: block; }
    .nav-contact-mobile a {
        color: var(--gold);
        font-weight: 500;
    }
    .nav-hamburger { display: flex; }

    /* HERO */
    .hero { padding: 2rem 1.5rem; }
    .hero-badge { font-size: 0.6rem; letter-spacing: 0.12em; text-align: center; }
    .hero-title { flex-direction: column; height: auto; gap: 1rem; }
    .hero-title img { width: 110px; margin-top: 0; }
    .hero-title img:last-child { display: none; }
    .hero-title h1 { font-size: 2.8rem; }
    .hero-sub { font-size: 0.9rem; margin-top: 1rem;}
    .hero-stats { gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
    .stat-num { font-size: 1.7rem; }

    /* SECTION */
    section { padding: 4rem 1.5rem; }

    /* PRODUCTS */
    .products-section { padding: 4rem 0; }
    .products-inner { padding: 0 1.5rem; }
    .products-grid {
        gap: 1rem;
    }
    .product-card { padding: 1.5rem 1rem; }

    /* VM */
    .vm-box { padding: 2rem; }

    /* ACHIEVEMENT */
    .section-full { padding: 4rem 1.5rem; }
    .ach-card { min-width: 170px; padding: 8px 12px 8px 10px; }
    .ach-img-wrap { height: 140px; }
    .ach-label { font-size: 0.7rem; }

    /* LOCATIONS */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* ACHIEVEMENT */
    .marquee-row::before, .marquee-row::after {
        width: 20px;
    }
    .section-full { padding: 3rem 1.2rem; }
    .ach-card { min-width: 140px; padding: 6px 10px; }
    .ach-img-wrap { height: 110px; }
    .ach-label { font-size: 0.65rem; }

    /* CTA */
    .cta-top { padding: 3rem 1.5rem 2.5rem; }
    .cta-title { font-size: clamp(2rem, 7vw, 3rem); }
    .brand-panel { padding: 2rem 1.5rem; }
    .brand-head { margin-left: 0; }

    /* FOOTER */
    footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {

    :root { --nav-height: 62px; }

    /* NAV */
    .nav { padding: 0.85rem 1.2rem; }

    /* HERO */
    .hero-title h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
    .btn-primary, .btn-outline { width: 100%; max-width: 240px; text-align: center; }
    .hero-stats { gap: 1.5rem; }
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: 0.6rem; }

    /* SECTION */
    section { padding: 3rem 1.2rem; }
    .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

    /* ABOUT */
    .span-title { font-size: 3rem; }
    .about-cards {
        height: 260px;
    }

    .section-full { padding: 3rem 1.2rem; }
    .ach-card { min-width: 110px; padding: 6px 10px; }
    .ach-img-wrap { height: 100px; }
    .ach-label { font-size: 0.65rem; }

    /* PRODUCTS */
    .products-inner { padding: 0 1.2rem; }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .product-card { padding: 1.2rem 0.75rem; }

    /* VISI MISI */
    .vm-grid { gap: 1.5rem; }
    .vm-box { padding: 1.5rem; }
    .vm-box h3 { font-size: 1.3rem; }

    /* CTA */
    .cta-top { padding: 2.5rem 1.2rem 2rem; }
    .brand-panel { padding: 1.75rem 1.2rem; }
    .brand-head { padding: 1.2rem 1.5rem 0.8rem; }
    .brand-emblem { width: 60px; height: 60px; }
    .contact-value { font-size: 0.8rem; }
    .contact-arrow { display: none; }

    /* FOOTER */
    footer { padding: 1.75rem 1.2rem; }
    .footer-brand { font-size: 0.85rem; }
    .footer-note { font-size: 0.75rem; }
}