/* ============================================================
   wastra.css – Wastra Home Fabric
   Stylesheet utama untuk halaman website
   ============================================================ */

/* ── 1. CSS VARIABLES & RESET ─────────────────────────────── */
:root {
    --linen:        #FAF6F0;
    --linen-dk:     #F0EBE1;
    --charcoal:     #1C1915;
    --espresso:     #2E2520;
    --mocha:        #5A4A3C;
    --taupe:        #8C7B6B;
    --brass:        #B8945F;
    --brass-lt:     #D4B37D;
    --sage:         #7A8C6E;
    --sage-lt:      #A3B396;
    --ivory:        #FDFBF7;
    --blush:        #E8D5C4;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Outfit', system-ui, sans-serif;

    --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background: var(--linen);
    color: var(--espresso);
    overflow-x: hidden;
    cursor: auto;
    -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* ── 2. CURSOR CUSTOM ────────────────────────────────────── */
.cursor {
    width: 8px; height: 8px;
    background: var(--brass);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform .12s var(--ease-out-expo);
    mix-blend-mode: multiply;
    display: none !important;
}
.cursor-ring {
    width: 32px; height: 32px;
    border: 1.5px solid var(--mocha);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: transform .35s var(--ease-out-expo), width .3s, height .3s, border-color .3s;
    display: none !important;
}
.cursor.hover     { transform: scale(3); }
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--brass); }

/* ── 3. NOISE TEXTURE OVERLAY ────────────────────────────── */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1000; opacity: .5;
}

/* ── 4. ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── 5. REVEAL ON SCROLL ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── 6. NAVBAR ───────────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 1.2rem 3.5rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: background .4s, padding .4s, box-shadow .4s;
}
nav.scrolled {
    background: rgba(250, 246, 240, .93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: .75rem 3.5rem;
    box-shadow: 0 1px 0 rgba(46, 37, 32, .08);
}
.nav-logo               { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--espresso); letter-spacing: -.01em; }
/* Logo filter dikontrol dari PHP berdasarkan navbar_logo_color setting */
.nav-logo img           { transition: filter .3s, height .3s; }
.nav-logo span          { color: var(--brass); font-weight: 600; }
.nav-links              { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a            { font-size: .8rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--mocha); position: relative; transition: color .25s; }
.nav-links a::after     { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out-expo); }
.nav-links a:hover      { color: var(--espresso); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta                { background: var(--brass) !important; color: var(--linen) !important; padding: .55rem 1.5rem; border-radius: 2px; transition: background .25s, box-shadow .25s !important; font-weight: 500 !important; letter-spacing: .04em; }
.nav-cta:hover          { background: var(--brass-lt) !important; box-shadow: 0 4px 16px rgba(184,148,95,.35) !important; }
.nav-cta::after         { display: none !important; }
.nav-hamburger          { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span     { display: block; width: 24px; height: 1.5px; background: var(--espresso); transition: .3s; }

/* Mobile menu */
.mobile-menu            { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--linen); z-index: 490; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; opacity: 0; transition: opacity .3s; }
.mobile-menu.open       { display: flex; opacity: 1; }
.mobile-menu a          { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--espresso); transition: color .2s; }
.mobile-menu a:hover    { color: var(--brass); }
.mobile-close           { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; color: var(--espresso); cursor: pointer; }

/* ── 7. HERO ─────────────────────────────────────────────── */
.hero                   { min-height: 100vh; position: relative; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; padding-top: 5rem; }
.hero-left              { background: var(--espresso); display: flex; flex-direction: column; justify-content: flex-end; padding: 8rem 4rem 5rem; position: relative; overflow: hidden; }
.hero-left::before      { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(184,148,95,.15) 0%, transparent 60%); }
.hero-left::after       { content: ''; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent 0%, rgba(184,148,95,.3) 30%, rgba(184,148,95,.3) 70%, transparent 100%); }
.hero-eyebrow           { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); font-weight: 400; margin-bottom: 1.5rem; display: flex; align-items: center; gap: .8rem; animation: fadeIn 1s var(--ease-out-expo) .3s both; }
.hero-eyebrow::before   { content: ''; display: block; width: 40px; height: 1px; background: var(--brass); }
.hero-headline          { font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 300; line-height: 1; color: var(--linen); letter-spacing: -.02em; animation: fadeUp 1.1s var(--ease-out-expo) .5s both; }
.hero-headline em       { font-style: italic; color: var(--brass-lt); }
.hero-headline strong   { font-weight: 600; display: block; }
.hero-desc              { margin-top: 2rem; font-size: .92rem; line-height: 1.8; color: rgba(250,246,240,.55); max-width: 400px; font-weight: 300; animation: fadeUp 1.1s var(--ease-out-expo) .7s both; }
.hero-actions           { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; animation: fadeUp 1.1s var(--ease-out-expo) .9s both; }
.btn-primary-hero       { background: var(--brass); color: var(--espresso); padding: .9rem 2.2rem; font-size: .82rem; font-weight: 500; letter-spacing: .05em; transition: background .25s, transform .25s; border-radius: 2px; display: inline-flex; align-items: center; gap: .6rem; }
.btn-primary-hero:hover { background: var(--brass-lt); transform: translateY(-2px); }
.btn-primary-hero svg   { width: 16px; height: 16px; fill: currentColor; }
.btn-ghost-hero         { border: 1px solid rgba(250,246,240,.25); color: var(--linen); padding: .9rem 2.2rem; font-size: .82rem; font-weight: 300; letter-spacing: .05em; transition: border-color .25s, background .25s; border-radius: 2px; }
.btn-ghost-hero:hover   { border-color: var(--brass); background: rgba(184,148,95,.08); }
.hero-social            { margin-top: 2.1rem; padding-top: 1.5rem; border-top: 1px solid rgba(250,246,240,.14); animation: fadeUp 1.1s var(--ease-out-expo) 1.1s both; }
.hero-social-label      { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(250,246,240,.42); margin-bottom: .7rem; }
.hero-social-links      { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-social-links .social-btn {
    width: 46px;
    height: 46px;
    border-color: rgba(250,246,240,.34);
    background: rgba(250,246,240,.1);
}
.hero-social-links .social-btn svg {
    width: 19px;
    height: 19px;
    fill: rgba(250,246,240,.9);
}
.hero-social-links .social-btn:hover {
    border-color: var(--brass-lt);
    background: rgba(184,148,95,.26);
}
.hero-social-links .social-btn:hover svg {
    fill: var(--brass-lt);
}
.hero-social-links a.is-disabled { opacity: .55; cursor: default; pointer-events: none; }
.hero-social-empty      { font-size: .78rem; color: rgba(250,246,240,.5); }
.hero-right             { position: relative; overflow: hidden; background: var(--hero-bg-image) center/cover no-repeat var(--linen-dk); }
/* Gradient fade di atas foto hero agar tidak bertabrakan dengan navbar */
.hero-right::before     { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to bottom, var(--linen) 0%, transparent 100%); z-index: 2; pointer-events: none; }
.hero-img-grid          { position: absolute !important; top: 5rem !important; left: 0 !important; right: 0 !important; bottom: 0 !important; display: grid; grid-template-columns: 55% 45%; grid-template-rows: 58% 42%; gap: 3px; }
.hero-img-cell          { overflow: hidden; position: relative; }
.hero-img-cell > img    { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 5s ease; }
.hero-img-cell:hover > img { transform: scale(1.05); }
.hero-float-badge           { position: absolute; z-index: 10; background: var(--ivory); border-radius: 4px; padding: .75rem 1.1rem; box-shadow: 0 8px 32px rgba(46,37,32,.15); animation: floatY 4s ease-in-out infinite; }
.hero-float-badge.badge-wa  { bottom: 25%; left: -4%; animation-delay: 0s; }
.hero-float-badge.badge-rating { top: 16%; right: 5%; animation-delay: 1.5s; }
.hero-float-badge .badge-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe); font-weight: 500; }
.hero-float-badge .badge-val   { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--espresso); line-height: 1.1; margin-top: 2px; }
.badge-stars            { color: var(--brass); font-size: .72rem; }
.hero-right::after      { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(46,37,32,.04) 0%, transparent 50%); pointer-events: none; }

/* Classic Wastra: rapikan 4 tile hero supaya tone lebih konsisten */
body[data-theme-key="classic-wastra"] .wa-hero-shell--split {
    padding-top: 0;
}
body[data-theme-key="classic-wastra"] .wa-hero-shell--split .hero-img-grid {
    top: 0 !important;
    bottom: 0 !important;
    gap: 2px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
body[data-theme-key="classic-wastra"] .wa-hero-shell--split .hero-right {
    background: #0f1724;
}
body[data-theme-key="classic-wastra"] .wa-hero-shell--split .hero-right::before {
    display: none;
}
body[data-theme-key="classic-wastra"] .wa-hero-shell--split .hero-img-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(13,20,30,.22) 0%, rgba(13,20,30,.12) 45%, rgba(13,20,30,.3) 100%),
        radial-gradient(circle at 72% 84%, rgba(21,34,52,.28) 0%, transparent 56%);
    pointer-events: none;
}
body[data-theme-key="classic-wastra"] .wa-hero-shell--split .hero-img-cell > img {
    filter: saturate(.9) contrast(1.02) brightness(.92);
}
body[data-theme-key="classic-wastra"] .wa-hero-shell--split .hero-img-cell:nth-child(1) > img {
    object-position: 42% 54%;
}
body[data-theme-key="classic-wastra"] .wa-hero-shell--split .hero-img-cell:nth-child(2) > img {
    filter: saturate(.72) contrast(1.04) brightness(.88);
    object-position: center 54%;
}
body[data-theme-key="classic-wastra"] .wa-hero-shell--split .hero-img-cell:nth-child(3) > img {
    object-position: 50% 44%;
}
body[data-theme-key="classic-wastra"] .wa-hero-shell--split .hero-img-cell:nth-child(4) > img {
    object-position: 58% 46%;
}

/* ── 8. MARQUEE ──────────────────────────────────────────── */
.marquee-strip  { background: var(--brass); padding: .62rem clamp(1rem, 2.4vw, 2rem); overflow: hidden; white-space: nowrap; display: flex; align-items: center; gap: .75rem; }
.marquee-label  { flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 30px; max-width: min(48vw, 260px); overflow: hidden; text-overflow: ellipsis; padding: 0 .78rem; border-radius: 999px; border: 1px solid rgba(29,43,46,.24); background: rgba(250,252,253,.16); color: var(--espresso); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; line-height: 1; white-space: nowrap; }
.marquee-track  { flex: 1 1 auto; min-width: 0; overflow: hidden; }
.marquee-inner  { display: inline-flex; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.marquee-item   { font-family: var(--font-display); font-size: .9rem; font-weight: 600; color: var(--espresso); letter-spacing: .015em; padding: 0 1rem; font-style: normal; white-space: nowrap; line-height: 1.2; }
.marquee-dot    { color: rgba(53,82,87,.86); font-style: normal; padding: 0 .18rem; white-space: nowrap; }
.marquee-strip:hover .marquee-inner { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
    .marquee-inner { animation: none; }
}

/* ── 9. SECTION BASE ─────────────────────────────────────── */
.section-wrap       { padding: 6rem 3rem; max-width: 1280px; margin: 0 auto; }
.section-tag        { display: inline-flex; align-items: center; gap: .6rem; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); font-weight: 500; margin-bottom: 1rem; }
.section-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--brass); }
.section-title      { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 300; line-height: 1.12; letter-spacing: -.01em; color: var(--espresso); }
.section-title em   { font-style: italic; color: var(--mocha); }
.section-title strong { font-weight: 600; }
.section-subtitle   { font-size: .95rem; color: var(--taupe); line-height: 1.8; font-weight: 300; max-width: 500px; margin-top: 1rem; }

/* ── 10. TENTANG ─────────────────────────────────────────── */
.about-bg           { background: var(--ivory); }
.about-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.about-img          { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; }
.about-img > div    { width: 100%; height: 100%; }
.about-accent       { position: absolute; bottom: -1rem; right: -1rem; width: 140px; height: 140px; border: 1px solid var(--brass); border-radius: 4px; z-index: -1; }
.about-content      { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text         { font-size: .92rem; line-height: 1.85; color: var(--mocha); font-weight: 300; }
.about-highlight    { background: linear-gradient(135deg, var(--espresso) 0%, var(--mocha) 100%); border-radius: 4px; padding: 2rem 2.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-stat         { text-align: center; }
.about-stat-num     { font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; color: var(--brass-lt); }
.about-stat-label   { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,246,240,.45); margin-top: .3rem; }
.ph-about           { background: linear-gradient(135deg, #C9B498 0%, #8B7355 40%, #3E2E20 100%); }

/* ── 11. LAYANAN ─────────────────────────────────────────── */
.services-bg                    { background: var(--linen); }
.services-grid                  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; margin-top: 3.5rem; }
.svc-card                       { position: relative; overflow: hidden; padding: 2.8rem 2rem; background: var(--ivory); cursor: pointer; transition: background .4s; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; }
.svc-card::before               { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0; background: var(--espresso); transition: height .5s var(--ease-out-expo); z-index: 0; }
.svc-card:hover::before         { height: 100%; }
.svc-card.svc-dark              { background: var(--espresso); }
.svc-card.svc-dark::before      { background: var(--mocha); }
.svc-card > *                   { position: relative; z-index: 1; }
.svc-number                     { font-family: var(--font-display); font-size: 4.5rem; font-weight: 600; line-height: 1; color: rgba(46,37,32,.05); position: absolute; top: 1.2rem; right: 1.5rem; transition: color .4s; }
.svc-card:hover .svc-number     { color: rgba(250,246,240,.04); }
.svc-icon                       { width: 48px; height: 48px; border-radius: 50%; background: var(--brass); display: flex; align-items: center; justify-content: center; margin-bottom: 1.6rem; transition: background .4s, transform .4s; }
.svc-card:hover .svc-icon       { background: var(--brass-lt); transform: scale(1.08); }
.svc-icon svg                   { width: 22px; height: 22px; fill: var(--espresso); }
.svc-name                       { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; line-height: 1.25; color: var(--espresso); margin-bottom: .7rem; transition: color .4s; }
.svc-card:hover .svc-name,
.svc-card.svc-dark .svc-name    { color: var(--linen); }
.svc-desc                       { font-size: .83rem; line-height: 1.75; color: var(--taupe); font-weight: 300; transition: color .4s; }
.svc-card:hover .svc-desc,
.svc-card.svc-dark .svc-desc    { color: rgba(250,246,240,.55); }
.svc-link                       { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--brass); margin-top: 1.5rem; transition: gap .3s, color .4s; }
.svc-card:hover .svc-link       { color: var(--brass-lt); gap: .8rem; }
.svc-link svg                   { width: 14px; height: 14px; fill: currentColor; }
.services-conversion            { margin-top: 1.2rem; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.15rem; border: 1px solid rgba(46,37,32,.12); border-radius: 14px; background: linear-gradient(135deg, rgba(250,246,240,.95) 0%, rgba(244,236,224,.98) 100%); box-shadow: 0 14px 34px rgba(46,37,32,.08); }
.services-conversion-copy       { flex: 1 1 540px; min-width: 0; }
.services-conversion-kicker     { display: inline-flex; align-items: center; min-height: 26px; padding: 0 .6rem; border-radius: 999px; border: 1px solid rgba(184,148,95,.38); background: rgba(184,148,95,.12); color: var(--mocha); font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; line-height: 1; }
.services-conversion-title      { margin: .55rem 0 0; color: var(--espresso); font-size: clamp(1rem, 1.45vw, 1.28rem); line-height: 1.34; font-weight: 700; max-width: 44ch; }
.services-conversion-desc       { margin: .4rem 0 0; color: rgba(46,37,32,.8); font-size: .88rem; line-height: 1.62; max-width: 64ch; }
.services-conversion-points     { margin-top: .62rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.services-conversion-points span { display: inline-flex; align-items: center; min-height: 28px; padding: 0 .66rem; border-radius: 999px; border: 1px solid rgba(90,74,60,.16); background: rgba(255,255,255,.66); color: rgba(46,37,32,.84); font-size: .68rem; font-weight: 600; letter-spacing: .01em; line-height: 1; }
.services-conversion-cta        { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 1.15rem; border-radius: 999px; border: 1px solid rgba(184,148,95,.5); background: linear-gradient(135deg, var(--brass) 0%, var(--brass-lt) 100%); color: var(--espresso); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 12px 28px rgba(184,148,95,.28); transition: transform .2s, box-shadow .2s, background .2s; }
.services-conversion-cta:hover  { transform: translateY(-1px); background: linear-gradient(135deg, #C39D67 0%, #DDBC8A 100%); box-shadow: 0 16px 34px rgba(184,148,95,.34); }
.services-slider-controls       { display: none; }

/* ── 12. PRODUK ──────────────────────────────────────────── */
.featured-bg                    {
    background:
        linear-gradient(180deg, rgba(232,213,196,.38) 0%, rgba(250,246,240,.92) 16%, var(--ivory) 42%, #F6F0E6 100%);
    border-top: 1px solid rgba(184,148,95,.14);
}
.featured-header                { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.featured-link                  { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mocha); font-weight: 500; display: flex; align-items: center; gap: .5rem; border-bottom: 1px solid var(--mocha); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.featured-link:hover            { color: var(--brass); border-color: var(--brass); }
.featured-scroll                { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.prod-card                      { background: var(--linen); border-radius: 4px; overflow: hidden; transition: transform .4s var(--ease-out-expo), box-shadow .4s; }
.prod-card:hover                { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(46,37,32,.1); }
.prod-img                       { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--linen-dk); display: block; width: 100%; border: 0; padding: 0; text-align: left; }
.prod-img.is-clickable          { cursor: zoom-in; }
.prod-img:disabled              { cursor: default; }
.prod-img > div,
.prod-img > img                 { width: 100%; height: 100%; transition: transform .6s; }
.prod-img > img                 { display: block; object-fit: cover; }
.has-site-product-watermark .prod-img { isolation: isolate; }
.has-site-product-watermark .prod-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--site-product-watermark-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: min(52%, 190px);
    opacity: .14;
    pointer-events: none;
    z-index: 1;
}
.has-site-product-watermark .prod-img .prod-badge { z-index: 2; }
.prod-card:hover .prod-img > div,
.prod-card:hover .prod-img > img { transform: scale(1.05); }
.prod-badge                     { position: absolute; top: .8rem; left: .8rem; background: var(--espresso); color: var(--linen); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 2px; font-weight: 500; }
.prod-badge.new                 { background: var(--brass); color: var(--espresso); }
.prod-badge.promo               { background: var(--sage); color: var(--ivory); }
.product-lightbox               { position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.product-lightbox.is-open       { display: flex; }
.product-lightbox-backdrop      { position: absolute; inset: 0; background: rgba(9,11,14,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.product-lightbox-dialog        { position: relative; z-index: 1; width: min(980px, 100%); max-height: min(720px, 92vh); background: #12161d; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.product-lightbox-close         { position: absolute; top: .75rem; right: .75rem; z-index: 3; width: 40px; height: 40px; border: 1px solid rgba(248,229,197,.26); border-radius: 50%; background: rgba(18,22,29,.78); color: #f5e1bf; font-size: 1.55rem; line-height: 1; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.product-lightbox-close:hover   { background: rgba(23,28,37,.94); color: #ffe8c5; border-color: rgba(248,229,197,.45); transform: translateY(-1px); }
.product-lightbox-stage         { position: relative; height: min(62vh, 560px); background: radial-gradient(circle at 50% 35%, #232a36 0%, #12161d 62%, #0d1117 100%); display: flex; align-items: center; justify-content: center; }
.product-lightbox-stage img     { width: 100%; height: 100%; object-fit: contain; display: block; filter: brightness(1.06) contrast(1.06) saturate(1.04); }
.product-lightbox-nav           { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 44px; height: 58px; border: 1px solid rgba(248,229,197,.2); background: rgba(18,22,29,.75); color: #f5e1bf; font-size: 2.4rem; line-height: 1; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.product-lightbox-nav.is-prev   { left: .75rem; }
.product-lightbox-nav.is-next   { right: .75rem; }
.product-lightbox-nav:hover     { background: rgba(23,28,37,.94); color: #ffe8c5; border-color: rgba(248,229,197,.42); }
.product-lightbox-nav:disabled  { opacity: .35; cursor: default; }
.product-lightbox-meta          { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1rem 1.2rem; background: linear-gradient(180deg, #171c25 0%, #11161e 100%); border-top: 1px solid rgba(255,255,255,.08); }
.product-lightbox-title         { font-family: var(--font-display); color: #f4e7d4; font-size: 1.08rem; font-weight: 500; }
.product-lightbox-count         { color: rgba(236,218,194,.82); font-size: .78rem; margin-top: .15rem; }
.product-lightbox-thumbs        { display: flex; gap: .45rem; overflow-x: auto; max-width: 48%; padding-bottom: .1rem; }
.product-lightbox-thumbs button { width: 54px; height: 42px; flex: 0 0 auto; border: 2px solid rgba(248,229,197,.2); border-radius: 6px; padding: 0; overflow: hidden; background: #1b212c; cursor: pointer; opacity: .75; transition: opacity .2s, border-color .2s; }
.product-lightbox-thumbs button:hover { opacity: .95; border-color: rgba(248,229,197,.42); }
.product-lightbox-thumbs button.is-active { border-color: #e0be8d; opacity: 1; }
.product-lightbox-thumbs img    { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-body                      { padding: 1.2rem 1.3rem 1.4rem; }
.prod-cat                       { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); font-weight: 500; margin-bottom: .3rem; }
.prod-name                      { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--espresso); line-height: 1.3; }
.prod-detail-link               { transition: color .2s; }
.prod-detail-link:hover         { color: var(--brass); }
.prod-meta                      { display: flex; justify-content: space-between; align-items: center; margin-top: .8rem; padding-top: .7rem; border-top: 1px solid var(--linen-dk); }
.prod-price                     { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--espresso); }
.prod-price small               { font-size: .72rem; color: var(--taupe); font-weight: 300; font-family: var(--font-body); }
.prod-price-usd                 { display: block; margin-top: .15rem; font-family: var(--font-body); font-size: .78rem; color: var(--brass); font-weight: 700; }

/* ── PRODUCT DETAIL ─────────────────────────────────────── */
.product-detail-page            { background: linear-gradient(180deg, var(--ivory) 0%, var(--linen) 100%); min-height: 100vh; }
.product-detail-hero            { padding-top: 5.5rem; position: relative; overflow: hidden; }
.product-detail-bg-word         { position: absolute; right: -2vw; top: 5.5rem; font-family: var(--font-display); font-size: clamp(7rem, 20vw, 18rem); color: rgba(184,148,95,.07); line-height: .8; pointer-events: none; }
.product-detail-grid            { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr); gap: clamp(2rem, 5vw, 4.8rem); align-items: start !important; position: relative; z-index: 1; }
.product-detail-media           { min-width: 0; display: flex; flex-direction: column; gap: .75rem; align-items: flex-start; position: relative; align-self: start !important; }
.product-detail-copy            { align-self: start; }
.product-detail-image-frame     { position: relative; }
.product-detail-media-head      { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: .8rem; color: var(--taupe); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.product-detail-media-head span:first-child { color: var(--brass); font-weight: 600; }
.product-detail-main-image      { width: 100%; aspect-ratio: 4/3; border: 0; padding: 0; border-radius: 8px; overflow: hidden; background: var(--linen-dk); cursor: zoom-in; box-shadow: 0 24px 70px rgba(46,37,32,.14); position: relative; }
.product-detail-main-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,25,21,.18), transparent 45%); opacity: 0; transition: opacity .3s; z-index: 2; pointer-events: none; }
.product-detail-main-image:hover::after { opacity: 1; }
.product-detail-main-image img  { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .6s var(--ease-smooth); position: relative; z-index: 0; }
.product-detail-main-image:hover img { transform: scale(1.035); }
.product-detail-main-image.is-empty { background: linear-gradient(135deg, var(--linen-dk), var(--blush)); }
.product-detail-thumbs          { display: grid; grid-template-columns: repeat(auto-fit, minmax(78px, 1fr)); gap: .65rem; width: 100%; }
.product-detail-thumb           { width: 100%; aspect-ratio: 1 / 1; border: 1px solid rgba(46,37,32,.12); border-radius: 12px; padding: 0; overflow: hidden; background: #fff; cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease; opacity: .84; position: relative; isolation: isolate; }
.product-detail-thumb:hover     { transform: translateY(-2px); opacity: 1; border-color: rgba(184,148,95,.55); box-shadow: 0 14px 28px rgba(46,37,32,.08); }
.product-detail-thumb.is-active { opacity: 1; border-color: var(--brass); box-shadow: 0 16px 30px rgba(184,148,95,.18); }
.product-detail-thumb img       { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 0; }
.product-detail-media.has-product-watermark .product-detail-main-image,
.product-lightbox.has-product-watermark .product-lightbox-stage { isolation: isolate; }
.product-detail-media.has-product-watermark .product-detail-main-image::before,
.product-detail-media.has-product-watermark .product-detail-thumb::before,
.product-lightbox.has-product-watermark .product-lightbox-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--product-watermark-image);
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}
.product-detail-media.has-product-watermark .product-detail-main-image::before {
    background-size: min(52%, 280px);
    opacity: .16;
    z-index: 1;
}
.product-detail-media.has-product-watermark .product-detail-thumb::before {
    background-size: 68%;
    opacity: .14;
    z-index: 1;
}
.product-lightbox.has-product-watermark .product-lightbox-stage::after {
    background-size: min(36vw, 280px);
    opacity: .13;
    z-index: 1;
}
.product-detail-copy            { min-width: 0; background: rgba(250,246,240,.72); border: 1px solid rgba(184,148,95,.14); border-radius: 18px; padding: clamp(1.2rem, 2.8vw, 1.8rem); box-shadow: 0 22px 70px rgba(46,37,32,.08); backdrop-filter: blur(8px); position: relative; }
.product-detail-back            { position: absolute; top: .85rem; right: .85rem; z-index: 3; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: var(--brass); background: rgba(253,251,247,.92); border: 1px solid rgba(184,148,95,.22); border-radius: 999px; box-shadow: 0 10px 26px rgba(46,37,32,.14); transition: background .2s, color .2s, transform .2s, border-color .2s; }
.product-detail-back:hover      { background: var(--espresso); border-color: var(--espresso); color: var(--linen); transform: translateX(-2px); }
.product-detail-back svg        { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }
.product-detail-media > .product-detail-back { position: absolute; top: .85rem; left: .85rem; right: auto; margin: 0; }
.product-detail-badge           { top: .85rem; right: .85rem; left: auto; z-index: 3; }
.product-info-stack             { display: grid; gap: .85rem; }
.product-info-block             { border: 1px solid rgba(46,37,32,.055); border-radius: 14px; padding: clamp(1rem, 2.2vw, 1.45rem); box-shadow: 0 12px 34px rgba(46,37,32,.035); }
.product-info-block.is-title    { background: linear-gradient(135deg, rgba(253,251,247,.92), rgba(244,237,226,.82)); }
.product-info-block.is-price    { background: linear-gradient(135deg, rgba(240,235,225,.8), rgba(253,251,247,.7)); }
.product-info-block.is-desc     { background: rgba(255,255,255,.55); }
.product-detail-kicker          { display: inline-flex; align-items: center; gap: .5rem; color: var(--brass); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }
.product-detail-kicker::before  { content: ''; width: 26px; height: 1px; background: var(--brass); }
.product-detail-copy h1         { font-family: var(--font-display); font-size: clamp(2.35rem, 4.8vw, 4.35rem); line-height: 1.04; color: var(--espresso); font-weight: 500; margin: .55rem 0 .75rem; }
.product-detail-model           { color: var(--taupe); font-size: .92rem; }
.product-detail-summary         { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.product-detail-summary > div   { padding: .9rem 1rem; background: rgba(253,251,247,.72); border: 1px solid rgba(184,148,95,.16); border-radius: 12px; }
.product-detail-summary > div + div { border-left: 1px solid rgba(184,148,95,.16); }
.product-detail-summary span    { display: block; color: var(--taupe); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .3rem; }
.product-detail-summary strong  { display: block; color: var(--espresso); font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; line-height: 1.2; }
.product-detail-summary small   { font-family: var(--font-body); color: var(--taupe); font-size: .75rem; font-weight: 300; }
.product-detail-summary .product-detail-price-usd { display: block; margin-top: .25rem; color: var(--brass); font-size: .85rem; font-weight: 700; }
.product-info-label             { color: var(--brass); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: .55rem; }
.product-detail-pdf-tiers       { margin-top: .35rem; border: 1px solid rgba(184,148,95,.16); border-radius: 12px; background: rgba(253,251,247,.72); overflow: hidden; }
.product-detail-pdf-tier-toggle-all { margin-top: .1rem; display: inline-flex; align-items: center; gap: .45rem; color: var(--taupe); font-size: .72rem; letter-spacing: .04em; }
.product-detail-pdf-tier-toggle-all input { width: 16px; height: 16px; accent-color: var(--brass); }
.product-detail-pdf-tier-row    { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .75rem .85rem; cursor: pointer; }
.product-detail-pdf-tier-row + .product-detail-pdf-tier-row { border-top: 1px dashed rgba(184,148,95,.24); }
.product-detail-pdf-tier-row.is-selected { background: rgba(184,148,95,.1); }
.product-detail-pdf-tier-check   { width: 16px; height: 16px; flex: 0 0 auto; accent-color: var(--brass); margin-right: .15rem; }
.product-detail-pdf-tier-copy small { display: block; color: var(--taupe); font-size: .63rem; letter-spacing: .09em; text-transform: uppercase; margin-bottom: .1rem; }
.product-detail-pdf-tier-copy strong { display: block; color: var(--espresso); font-size: .86rem; font-weight: 600; line-height: 1.35; }
.product-detail-pdf-tier-price  { color: var(--espresso); font-family: var(--font-display); font-size: .95rem; font-weight: 600; white-space: nowrap; }
.product-detail-desc            { color: var(--mocha); line-height: 1.88; font-weight: 300; }
.product-detail-desc > *:first-child { margin-top: 0; }
.product-detail-desc > *:last-child { margin-bottom: 0; }
.product-detail-desc p          { margin: 0 0 1rem; }
.product-detail-desc h2,
.product-detail-desc h3,
.product-detail-desc h4         { margin: 1.6rem 0 .8rem; color: var(--espresso); line-height: 1.2; letter-spacing: -.01em; }
.product-detail-desc h2         { font-family: var(--font-display); font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 500; }
.product-detail-desc h3         { font-family: var(--font-display); font-size: clamp(1.2rem, 2.1vw, 1.6rem); font-weight: 500; }
.product-detail-desc h4         { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--taupe); }
.product-detail-desc ul,
.product-detail-desc ol         { margin: .35rem 0 1.1rem 1.2rem; padding-left: .6rem; }
.product-detail-desc li         { margin-bottom: .45rem; }
.product-detail-desc blockquote { margin: 1.15rem 0; padding: .95rem 1rem; border-left: 3px solid var(--brass); background: rgba(184,148,95,.08); border-radius: 0 12px 12px 0; color: var(--espresso); font-style: italic; }
.product-detail-desc a          { color: var(--espresso); text-decoration: underline; text-decoration-color: rgba(184,148,95,.8); text-underline-offset: .18em; }
.product-detail-desc strong     { color: var(--espresso); font-weight: 600; }
.product-detail-actions         { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-top: 1rem; margin-bottom: .45rem; }
.product-detail-cta             { display: inline-flex; width: fit-content; }
.product-detail-secondary       { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 1.1rem; border: 1px solid var(--linen-dk); color: var(--mocha); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; transition: border-color .2s, color .2s; }
.product-detail-secondary:hover { border-color: var(--brass); color: var(--brass); }
.product-detail-buy-cta         { min-height: 56px; padding: .7rem 1.2rem; border: 0; border-radius: 12px; background: linear-gradient(135deg, #2b211c 0%, #46342b 45%, #6f503f 100%); color: var(--linen); display: inline-grid; align-content: center; gap: .16rem; box-shadow: 0 16px 30px rgba(46,37,32,.26); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.product-detail-buy-cta:hover   { transform: translateY(-1px); box-shadow: 0 20px 34px rgba(46,37,32,.34); filter: brightness(1.04); }
.product-detail-buy-label       { display: block; font-size: .9rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; line-height: 1.1; }
.product-detail-buy-note        { display: block; font-size: .72rem; letter-spacing: .02em; color: rgba(250,246,240,.82); font-weight: 400; line-height: 1.2; }
.product-detail-inquiry-cta     { background: rgba(255,255,255,.85); border-color: rgba(184,148,95,.32); min-height: 56px; }
.product-detail-trustline       { margin-top: .35rem; margin-bottom: .9rem; display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.product-detail-trustline span  { display: inline-flex; align-items: center; padding: .34rem .62rem; border-radius: 999px; border: 1px solid rgba(184,148,95,.24); background: rgba(255,255,255,.58); color: var(--mocha); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.product-detail-sticky-cta      { position: fixed; left: 50%; bottom: 1rem; transform: translateY(120%) translateX(-50%); width: min(720px, calc(100% - 2rem)); z-index: 1200; background: rgba(21,17,14,.95); border: 1px solid rgba(184,148,95,.32); border-radius: 14px; padding: .58rem .62rem; display: flex; align-items: center; justify-content: space-between; gap: .65rem; box-shadow: 0 24px 48px rgba(0,0,0,.34); opacity: 0; pointer-events: none; transition: transform .24s ease, opacity .24s ease; }
.product-detail-sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0) translateX(-50%); }
.product-detail-sticky-copy small { display: block; color: rgba(250,246,240,.68); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .12rem; }
.product-detail-sticky-copy strong { color: #fff; font-family: var(--font-display); font-size: 1rem; line-height: 1.05; }
.product-detail-sticky-btn      { border: 0; min-height: 44px; border-radius: 10px; padding: 0 .9rem; background: var(--brass); color: var(--espresso); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; cursor: pointer; white-space: nowrap; }
.product-detail-sticky-btn:hover { background: var(--brass-lt); }

/* ── 13. GALERI ──────────────────────────────────────────── */
.gallery-bg                     { background: var(--espresso); }
.gallery-bg .section-tag        { color: var(--brass-lt); }
.gallery-bg .section-tag::before { background: var(--brass-lt); }
.gallery-bg .section-title      { color: var(--linen); }
.gallery-bg .section-title em   { color: var(--brass-lt); }
.gallery-head                   { text-align: center; }
.gallery-head .section-tag      { justify-content: center; }
.gallery-head .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }
.gallery-more-link              { display: inline-flex; margin-top: 1rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--linen) !important; font-weight: 500; border-bottom: 1px solid rgba(250,246,240,.58); padding-bottom: .15rem; }
.gallery-more-link:hover        { color: var(--brass-lt) !important; border-color: rgba(212,179,125,.85); }
.gallery-grid                   { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: .6rem; margin-top: 3rem; }
.gallery-item                   { overflow: hidden; border-radius: 4px; position: relative; cursor: pointer; }
.gallery-item > div.gi-ph       { width: 100%; height: 100%; min-height: 400px; transition: transform .6s var(--ease-smooth); }
.gallery-item:hover > div.gi-ph { transform: scale(1.06); }
.gallery-item:nth-child(1)      { grid-row: span 2; }
.gallery-item:nth-child(1) > div.gi-ph { min-height: 100%; }
.gallery-overlay                { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,25,21,.7) 0%, transparent 60%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 1.2rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text           { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--linen); font-style: italic; }
.gallery-item                   { border: 0; padding: 0; background: none; text-align: left; width: 100%; }

/* Gallery height variants based on item count */
.gallery-grid--single .gallery-item > div.gi-ph       { min-height: 250px; }
.gallery-grid--few .gallery-item > div.gi-ph          { min-height: 300px; }
.gallery-grid--normal .gallery-item > div.gi-ph       { min-height: 400px; }

.project-modal                  { position: fixed; inset: 0; z-index: 960; display: none; }
.project-modal.is-open          { display: block; }
.project-modal-backdrop         { position: absolute; inset: 0; background: rgba(9,11,14,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.project-modal-dialog           { position: relative; width: min(960px, calc(100% - 2rem)); margin: 5.5rem auto 0; background: #12161d; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 24px 80px rgba(0,0,0,.5); border-radius: 14px; display: grid; grid-template-columns: 1.1fr .9fr; max-height: calc(100vh - 7rem); overflow: hidden; }
.project-modal-close            { position: absolute; top: .55rem; right: .55rem; width: 40px; height: 40px; border: 1px solid rgba(248,229,197,.26); border-radius: 50%; background: rgba(18,22,29,.78); color: #f5e1bf; font-size: 1.45rem; line-height: 1; cursor: pointer; z-index: 2; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.project-modal-close:hover      { background: rgba(23,28,37,.94); color: #ffe8c5; border-color: rgba(248,229,197,.45); transform: translateY(-1px); }
.project-modal-nav              { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 58px; border: 1px solid rgba(248,229,197,.2); background: rgba(18,22,29,.75); color: #f5e1bf; font-size: 2rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; transition: background .2s, color .2s, border-color .2s, opacity .2s; }
.project-modal-nav:hover        { background: rgba(23,28,37,.94); color: #ffe8c5; border-color: rgba(248,229,197,.42); }
.project-modal-nav.is-prev      { left: .55rem; }
.project-modal-nav.is-next      { right: .55rem; }
.project-modal-nav:disabled     { opacity: .45; cursor: default; }
.project-modal-media            { min-height: 300px; background: radial-gradient(circle at 50% 35%, #232a36 0%, #12161d 62%, #0d1117 100%); position: relative; }
.project-modal-media img        { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.05) contrast(1.06) saturate(1.04); }
.project-modal-media-nav        { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 46px; border: 1px solid rgba(248,229,197,.2); background: rgba(18,22,29,.78); color: #f5e1bf; font-size: 1.6rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; transition: background .2s, color .2s, border-color .2s; }
.project-modal-media-nav:hover  { background: rgba(23,28,37,.94); color: #ffe8c5; border-color: rgba(248,229,197,.42); }
.project-modal-media-nav.is-prev { left: .45rem; }
.project-modal-media-nav.is-next { right: .45rem; }
.project-modal-media-count      { position: absolute; left: 50%; bottom: .6rem; transform: translateX(-50%); padding: .2rem .55rem; border-radius: 999px; background: rgba(18,22,29,.82); color: rgba(236,218,194,.9); border: 1px solid rgba(248,229,197,.24); font-size: .68rem; letter-spacing: .08em; }
.project-modal-copy             { padding: 1.4rem 1.3rem 1.2rem; overflow: auto; background: linear-gradient(180deg, #171c25 0%, #10151d 100%); border-left: 1px solid rgba(255,255,255,.08); }
.project-modal-meta             { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: .85rem; }
.project-modal-meta span        { display: inline-flex; align-items: center; padding: .25rem .55rem; border-radius: 999px; background: rgba(216,180,122,.16); color: #cfab78; border: 1px solid rgba(216,180,122,.24); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.project-modal-copy h3          { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; line-height: 1.2; color: #f4e7d4; margin-bottom: .75rem; }
.project-modal-copy p           { color: rgba(236,218,194,.84); line-height: 1.8; font-weight: 300; white-space: pre-line; }

/* ── 14. KEUNGGULAN ──────────────────────────────────────── */
.trust-bg                       { background: var(--linen-dk); }
.trust-grid                     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(46,37,32,.08); margin-top: 3.5rem; }
.trust-item                     { padding: 2.5rem 1.8rem; border-right: 1px solid rgba(46,37,32,.08); text-align: center; transition: background .3s; }
.trust-item:last-child          { border-right: none; }
.trust-item:hover               { background: rgba(184,148,95,.05); }
.trust-icon                     { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--brass); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.3rem; transition: background .3s; }
.trust-item:hover .trust-icon   { background: var(--brass); }
.trust-icon svg                 { width: 22px; height: 22px; fill: var(--brass); transition: fill .3s; }
.trust-item:hover .trust-icon svg { fill: var(--espresso); }
.trust-title                    { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--espresso); margin-bottom: .5rem; }
.trust-desc                     { font-size: .8rem; color: var(--taupe); line-height: 1.7; font-weight: 300; }
.trust-proofwall                { display: grid; grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr); gap: 1.15rem; margin-top: 3rem; align-items: start; }
.trust-intro--proof             { padding: 1.15rem 1.1rem; border: 1px solid rgba(46,37,32,.12); border-radius: 14px; background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(250,246,240,.92)); box-shadow: 0 10px 26px rgba(46,37,32,.08); }
.trust-proof-points             { margin-top: .72rem; display: flex; flex-wrap: wrap; gap: .42rem; }
.trust-proof-points span        { display: inline-flex; align-items: center; min-height: 27px; padding: 0 .62rem; border-radius: 999px; border: 1px solid rgba(184,148,95,.3); background: rgba(184,148,95,.12); color: var(--mocha); font-size: .64rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; line-height: 1; }
.trust-manifesto                { margin-top: .72rem; padding: .75rem .82rem; border-radius: 12px; border: 1px solid rgba(46,37,32,.1); background: rgba(255,255,255,.68); }
.trust-manifesto strong         { display: block; color: var(--espresso); font-size: 1.06rem; font-weight: 700; margin-bottom: .25rem; }
.trust-manifesto p              { margin: 0; color: var(--mocha); font-size: .9rem; line-height: 1.62; }
.trust-evidence                 { min-width: 0; }
.trust-mobile-hint              { display: none; }
.trust-grid--mobile-peek        { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin-top: 0; border: 0; }
.trust-item--loud               { text-align: left; border: 1px solid rgba(46,37,32,.12); border-radius: 16px; padding: 1rem .95rem; background: linear-gradient(145deg, #1f3554 0%, #355d8d 100%); color: #f6f8fc; box-shadow: 0 16px 34px rgba(25,40,62,.24); }
.trust-item--loud .trust-item-head { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-bottom: .66rem; }
.trust-item--loud .trust-index  { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; min-height: 42px; padding: 0 .45rem; border-radius: 12px; border: 1px solid rgba(173,214,255,.35); background: rgba(12,22,36,.32); color: #e8f3ff; font-size: 1.15rem; font-weight: 700; letter-spacing: .02em; line-height: 1; }
.trust-item--loud .trust-icon   { width: 44px; height: 44px; margin: 0; border-color: rgba(173,214,255,.36); background: rgba(12,22,36,.28); }
.trust-item--loud .trust-icon svg { width: 18px; height: 18px; fill: #b9dbff; }
.trust-item--loud .trust-title  { color: #f6f8fc; font-size: 1.03rem; margin-bottom: .36rem; }
.trust-item--loud .trust-desc   { color: rgba(232,242,255,.9); font-size: .84rem; line-height: 1.58; }
.trust-slider-controls          { display: none; }

/* ── 15. PROSES PEMESANAN ────────────────────────────────── */
.process-bg             { background: var(--ivory); }
.process-steps          { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; position: relative; }
.process-steps::before  { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, transparent, var(--brass), transparent); }
.process-step           { text-align: center; position: relative; }
.step-num               { width: 64px; height: 64px; border-radius: 50%; background: var(--linen); border: 2px solid var(--brass); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--brass); transition: background .3s, color .3s; }
.process-step:hover .step-num { background: var(--brass); color: var(--espresso); }
.step-title             { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--espresso); margin-bottom: .5rem; }
.step-desc              { font-size: .82rem; color: var(--taupe); line-height: 1.7; font-weight: 300; }
.process-mobile-progress { display: none; }
.process-slider-controls { display: none; }

/* ── 16. TESTIMONI ───────────────────────────────────────── */
.testi-bg               { background: var(--espresso); }
.testi-bg .section-tag  { color: var(--brass-lt); }
.testi-bg .section-tag::before { background: var(--brass-lt); }
.testi-bg .section-title { color: var(--linen); }
.testi-bg .section-title em { color: var(--brass-lt); }
.testi-head              { text-align: center; }
.testi-head .section-tag { justify-content: center; }
.testi-head .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }
.testi-more-link         { display: inline-flex; margin-top: 1rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #FAF6F0 !important; font-weight: 500; border-bottom: 1px solid rgba(250,246,240,.72); padding-bottom: .15rem; text-shadow: 0 1px 1px rgba(0,0,0,.22); }
.testi-more-link:hover   { color: #D4B37D !important; border-color: rgba(212,179,125,.95); }
.testi-grid             { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.testi-card             { background: rgba(250,246,240,.04); border: 1px solid rgba(250,246,240,.08); border-radius: 4px; padding: 2rem 1.8rem 1.6rem; transition: background .3s; }
.testi-card:hover       { background: rgba(250,246,240,.07); }
.testi-quote            { font-family: var(--font-display); font-size: 1rem; font-weight: 300; font-style: italic; color: rgba(250,246,240,.8); line-height: 1.8; }
.testi-quote::before    { content: '\201C'; color: var(--brass); font-size: 2rem; line-height: 0; vertical-align: -.4em; margin-right: .15rem; }
.testi-footer           { display: flex; align-items: center; gap: .8rem; margin-top: 1.3rem; }
.testi-avatar           { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; background: var(--mocha); border: 2px solid var(--brass); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: .85rem; font-weight: 500; color: var(--brass-lt); }
.testi-name             { font-size: .85rem; font-weight: 500; color: var(--linen); }
.testi-role             { font-size: .7rem; color: rgba(250,246,240,.35); }
.testi-stars            { font-size: .72rem; color: var(--brass); margin-left: auto; }
.testi-mobile-hint      { display: none; }
.testi-slider-controls  { display: none; }

/* ── 17. CTA BANNER ──────────────────────────────────────── */
.cta-banner             { background: linear-gradient(135deg, var(--brass) 0%, #9A7845 100%); position: relative; overflow: hidden; }
.cta-banner::before     { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(253,251,247,.15); }
.cta-banner::after      { content: ''; position: absolute; bottom: -80px; left: 20%; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(253,251,247,.08); }
.cta-inner              { max-width: 1280px; margin: 0 auto; padding: 5rem 3rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.cta-left               { max-width: 640px; }
.cta-title              { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.15; color: var(--espresso); }
.cta-title em           { font-style: italic; }
.cta-desc               { font-size: .92rem; line-height: 1.75; color: rgba(46,37,32,.7); font-weight: 300; margin-top: 1rem; }
.cta-actions            { display: flex; gap: 1rem; flex-wrap: wrap; align-items: stretch; margin-top: 2rem; }
.btn-dark               { display: inline-flex; align-items: center; gap: .6rem; min-height: 52px; background: var(--espresso); color: var(--linen); padding: 1rem 2.2rem; border-radius: 8px; font-size: .82rem; font-weight: 600; letter-spacing: .05em; transition: background .25s, transform .25s; }
.btn-dark:hover         { background: var(--mocha); transform: translateY(-2px); }
.btn-dark svg           { width: 18px; height: 18px; fill: currentColor; }
.btn-outline-dark       { display: inline-flex; align-items: center; gap: .6rem; min-height: 52px; border: 1.5px solid var(--espresso); color: var(--espresso); padding: .9rem 2rem; border-radius: 8px; font-size: .82rem; font-weight: 500; letter-spacing: .05em; transition: background .25s; }
.btn-outline-dark:hover { background: rgba(46,37,32,.08); }
.cta-call-btn           { display: grid; align-content: center; gap: .14rem; text-align: center; }
.cta-call-btn.is-disabled { opacity: .6; pointer-events: none; }
.cta-call-label         { display: block; font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; opacity: .72; line-height: 1.1; }
.cta-call-number        { display: block; font-size: .92rem; font-weight: 700; letter-spacing: .02em; line-height: 1.2; }
.cta-right              { display: flex; flex-direction: column; gap: 1rem; }
.cta-info-card          { background: rgba(253,251,247,.3); backdrop-filter: blur(8px); border-radius: 4px; padding: 1.3rem 1.6rem; display: flex; align-items: flex-start; gap: 1rem; transition: background .3s; }
.cta-info-card:hover    { background: rgba(253,251,247,.5); }
.cta-info-icon          { width: 42px; height: 42px; border-radius: 50%; background: var(--espresso); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-info-icon svg      { width: 18px; height: 18px; fill: var(--brass-lt); }
.cta-info-label         { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(46,37,32,.5); font-weight: 500; }
.cta-info-val           { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--espresso); margin-top: 1px; line-height: 1.52; word-break: break-word; }

/* ── 18. KARIR ───────────────────────────────────────────── */
.career-bg              { background: var(--linen); }
.career-grid            { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 3rem; }
.career-card            { background: var(--ivory); border: 1px solid rgba(46,37,32,.06); border-radius: 4px; padding: 2rem 2.2rem; transition: border-color .3s, box-shadow .3s; display: flex; flex-direction: column; gap: 1rem; }
.career-card:hover      { border-color: var(--brass); box-shadow: 0 12px 40px rgba(46,37,32,.08); }
.career-badge           { display: inline-flex; align-self: flex-start; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 2px; font-weight: 500; }
.career-badge.dibuka    { background: rgba(122,140,110,.12); color: var(--sage); }
.career-badge.ditutup   { background: rgba(90,74,60,.08); color: var(--taupe); }
.career-title           { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--espresso); }
.career-desc            { font-size: .85rem; line-height: 1.75; color: var(--taupe); font-weight: 300; }
.career-tags            { display: flex; gap: .5rem; flex-wrap: wrap; }
.career-tag             { font-size: .68rem; letter-spacing: .08em; background: var(--linen-dk); color: var(--mocha); padding: .25rem .7rem; border-radius: 2px; }
.career-cta             { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--brass); margin-top: .5rem; transition: gap .3s; }
.career-cta:hover       { gap: .8rem; }
.career-cta svg         { width: 14px; height: 14px; fill: currentColor; }

/* ── 19. LOKASI (MAP) ────────────────────────────────────── */
.map-bg                 { background: var(--linen-dk); }
.map-container          { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 3rem; border-radius: 4px; overflow: hidden; border: 1px solid rgba(46,37,32,.08); }
.map-embed              { height: 400px; background: var(--ivory); position: relative; }
.map-embed iframe       { width: 100%; height: 100%; border: none; }
/* Leaflet z-index — tidak menimpa navbar (z-index 500) */
.leaflet-pane,
.leaflet-map-pane       { z-index: 1 !important; }
.leaflet-top,
.leaflet-bottom         { z-index: 10 !important; }
.leaflet-control-attribution { font-size: .65rem !important; }
.map-info               { background: var(--espresso); padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.map-info-title         { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--linen); margin-bottom: 1.5rem; }
.map-info-title em      { font-style: italic; color: var(--brass-lt); }
.map-detail             { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.map-detail-icon        { width: 36px; height: 36px; border-radius: 50%; background: rgba(184,148,95,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-detail-icon svg    { width: 16px; height: 16px; fill: var(--brass); }
.map-detail-label       { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,246,240,.35); font-weight: 500; }
.map-detail-val         { font-size: .9rem; color: rgba(250,246,240,.75); font-weight: 300; margin-top: .2rem; line-height: 1.6; }

.homepage-articles-bg       { background: var(--ivory); }
.homepage-articles-header   { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.homepage-articles-header > div { max-width: 760px; }
.homepage-articles-more     { flex-shrink: 0; color: var(--espresso); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; border-bottom: 1px solid rgba(46,37,32,.35); padding-bottom: .18rem; transition: color .2s, border-color .2s; }
.homepage-articles-more:hover { color: var(--brass); border-color: var(--brass); }
.homepage-articles-grid     { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.6rem; margin-top: 3rem; align-items: stretch; }
.homepage-article-card      { background: #fff; border: 1px solid rgba(46,37,32,.12); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; min-height: 100%; box-shadow: 0 10px 30px rgba(46,37,32,.045); transition: transform .25s, box-shadow .25s, border-color .25s; }
.homepage-article-card:hover { transform: translateY(-4px); border-color: rgba(184,148,95,.62); box-shadow: 0 22px 48px rgba(46,37,32,.1); }
.homepage-article-thumb     { aspect-ratio: 16 / 9; background: linear-gradient(145deg, #D9B27D, #8B6A40); display: block; overflow: hidden; }
.homepage-article-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.homepage-article-card:hover .homepage-article-thumb img { transform: scale(1.04); }
.homepage-article-body      { padding: 1.05rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .62rem; flex: 1; }
.homepage-article-meta      { color: var(--taupe); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.homepage-article-body h3   { margin: 0; font-family: var(--font-display); font-size: 1.08rem; line-height: 1.42; font-weight: 500; color: var(--espresso); }
.homepage-article-body h3 a { color: inherit; }
.homepage-article-body p    { margin: 0; color: var(--taupe); font-size: .84rem; line-height: 1.65; font-weight: 300; }
.homepage-article-link      { margin-top: auto; padding-top: .35rem; color: var(--brass); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }

/* ── 20. FOOTER ──────────────────────────────────────────── */
footer                  { background: var(--charcoal); padding: 4.5rem 3rem 2rem; }
.footer-inner           { max-width: 1280px; margin: 0 auto; }
.footer-top             { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(250,246,240,.06); }
.footer-brand-name      { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; color: var(--linen); letter-spacing: -.01em; margin-bottom: .8rem; }
.footer-brand-name span { color: var(--brass); }
.footer-tagline         { font-size: .85rem; color: rgba(250,246,240,.35); line-height: 1.75; font-weight: 300; max-width: 280px; }
.footer-socials         { display: flex; gap: .7rem; margin-top: 1.5rem; }
.social-btn             { width: 34px; height: 34px; border: 1px solid rgba(250,246,240,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .3s, background .3s; }
.social-btn:hover       { border-color: var(--brass); background: rgba(184,148,95,.1); }
.social-btn svg         { width: 15px; height: 15px; fill: rgba(250,246,240,.4); }
.social-btn:hover svg   { fill: var(--brass); }
.footer-col-title       { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--brass); font-weight: 500; margin-bottom: 1.3rem; }
.footer-links           { list-style: none; }
.footer-links li        { margin-bottom: .7rem; }
.footer-links a         { font-size: .85rem; color: rgba(250,246,240,.4); font-weight: 300; transition: color .2s; }
.footer-links a:hover   { color: var(--linen); }
.footer-bottom          { display: flex; justify-content: space-between; align-items: center; padding-top: 1.8rem; flex-wrap: wrap; gap: 1rem; }
.footer-copy            { font-size: .75rem; color: rgba(250,246,240,.15); }
.footer-dev-credit      { display: inline-flex; gap: .28rem; margin-left: .65rem; color: rgba(250,246,240,.18); }
.footer-dev-credit a    { color: rgba(250,246,240,.28); border-bottom: 1px solid rgba(250,246,240,.12); transition: color .2s, border-color .2s; }
.footer-dev-credit a:hover { color: var(--brass); border-color: rgba(184,148,95,.55); }
.footer-legal           { display: flex; gap: 1.5rem; }
.footer-legal a         { font-size: .75rem; color: rgba(250,246,240,.15); transition: color .2s; }
.footer-legal a:hover   { color: rgba(250,246,240,.4); }

/* ── 21. FLOATING BUTTONS ────────────────────────────────── */
.wa-fab         { position: fixed; bottom: 2rem; right: 2rem; z-index: 400; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.35); transition: transform .3s, box-shadow .3s; cursor: pointer; }
.wa-fab:hover   { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-fab svg     { width: 26px; height: 26px; fill: white; }
.back-top       { position: fixed; bottom: 2rem; right: 5.5rem; z-index: 400; width: 42px; height: 42px; background: var(--brass); border-radius: 2px; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s; border: none; }
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top svg   { width: 16px; height: 16px; fill: var(--espresso); }
.wa-translate-widget { position: fixed; right: 2rem; bottom: 5.85rem; z-index: 9991; display: grid; justify-items: end; gap: .55rem; font-family: inherit; }
.wa-translate-toggle { min-width: 52px; height: 52px; padding: 0 .85rem; border: 0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; background: #fffaf2; color: var(--espresso); box-shadow: 0 14px 34px rgba(33,26,22,.18); cursor: pointer; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.wa-translate-toggle:hover { transform: translateY(-1px); box-shadow: 0 18px 42px rgba(33,26,22,.22); }
.wa-translate-toggle-icon { font-size: 1.15rem; line-height: 1; }
.wa-translate-toggle-text { font-size: .82rem; }
.wa-translate-panel { width: min(220px, calc(100vw - 2rem)); padding: .7rem .6rem; border: 1px solid rgba(46,37,32,.1); border-radius: 14px; background: #fffaf2; box-shadow: 0 18px 50px rgba(33,26,22,.2); }
.wa-translate-panel-title { margin: 0 0 .55rem .35rem; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--taupe); }
.wa-translate-langs { display: flex; flex-direction: column; gap: 2px; }
.wa-lang-btn { width: 100%; padding: .52rem .75rem; border: 0; border-radius: 9px; background: transparent; color: var(--espresso); font-family: inherit; font-size: .88rem; text-align: left; cursor: pointer; transition: background .15s ease; display: flex; align-items: center; gap: .55rem; }
.wa-lang-btn:hover { background: rgba(46,37,32,.07); }
.wa-lang-btn--active { background: var(--brass); color: var(--espresso); font-weight: 700; }
.wa-lang-btn--active:hover { background: var(--brass); }

/* ── 22. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero                   { grid-template-columns: 1fr; }
    .hero-right             { display: block; min-height: 320px; }
    .hero-img-grid          { position: relative; inset: auto; height: 100%; min-height: 320px; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; }
    .hero-left              { min-height: auto; }
    .services-grid          { grid-template-columns: repeat(2, 1fr); }
    .services-conversion    { padding: .95rem 1rem; }
    .featured-scroll        { grid-template-columns: repeat(2, 1fr); }
    .product-lightbox-stage { height: 58vh; }
    .product-lightbox-meta  { align-items: flex-start; flex-direction: column; }
    .product-lightbox-thumbs { max-width: 100%; width: 100%; }
    .gallery-grid           { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-row: span 1; }
    .trust-grid             { grid-template-columns: repeat(2, 1fr); }
    .process-steps          { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before  { display: none; }
    .testi-grid             { grid-template-columns: 1fr 1fr; }
    .cta-inner              { grid-template-columns: 1fr; }
    .about-grid             { grid-template-columns: 1fr; gap: 3rem; }
    .about-img              { max-width: 480px; }
    .map-container          { grid-template-columns: 1fr; }
    .homepage-articles-grid { grid-template-columns: 1fr 1fr; }
    .footer-top             { grid-template-columns: 1fr 1fr; }
    .career-grid            { grid-template-columns: 1fr; }
    .product-detail-grid    { grid-template-columns: 1fr; }
    .product-detail-copy h1 { font-size: clamp(2.2rem, 8vw, 3.6rem); }
}

@media (max-width: 768px) {
    nav                     { padding: 1rem 1.5rem; }
    nav.scrolled            { padding: .7rem 1.5rem; }
    .nav-links              { display: none; }
    .nav-hamburger          { display: flex; }
    body[data-theme-key="classic-wastra"] nav#navbar {
        top: .75rem;
        left: .75rem;
        right: .75rem;
        padding: .62rem .72rem;
        border-radius: 18px;
        border: 1px solid rgba(184,148,95,.32);
        background:
            radial-gradient(circle at 14% 12%, rgba(255,255,255,.24) 0%, transparent 44%),
            linear-gradient(138deg, rgba(31,24,20,.92) 0%, rgba(45,34,27,.86) 52%, rgba(71,54,41,.82) 100%);
        box-shadow:
            0 14px 34px rgba(18,12,9,.28),
            inset 0 0 0 1px rgba(255,255,255,.07);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    body[data-theme-key="classic-wastra"] nav#navbar.scrolled {
        top: .5rem;
        padding: .52rem .66rem;
        border-color: rgba(184,148,95,.4);
        box-shadow:
            0 10px 24px rgba(18,12,9,.24),
            inset 0 0 0 1px rgba(255,255,255,.08);
    }
    body[data-theme-key="classic-wastra"] nav#navbar .nav-logo img {
        height: 34px;
    }
    body[data-theme-key="classic-wastra"] nav#navbar.scrolled .nav-logo img {
        height: 31px;
    }
    body[data-theme-key="classic-wastra"] nav#navbar .nav-hamburger {
        width: 42px;
        height: 42px;
        padding: 0;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        border: 1px solid rgba(212,179,125,.28);
        background: rgba(248,238,221,.1);
    }
    body[data-theme-key="classic-wastra"] nav#navbar .nav-hamburger span {
        width: 18px;
        height: 1.7px;
        border-radius: 999px;
        background: #f3d39f;
    }
    body[data-theme-key="classic-wastra"] .nav-auth-menu {
        display: none !important;
    }
    body[data-theme-key="classic-wastra"] .mobile-menu {
        justify-content: flex-start;
        align-items: stretch;
        gap: .95rem;
        padding: 5.65rem 1rem 1.25rem;
        background:
            radial-gradient(circle at top right, rgba(184,148,95,.22), transparent 34%),
            linear-gradient(180deg, #f8f2e8 0%, #f5ede1 100%);
        overflow-y: auto;
    }
    body[data-theme-key="classic-wastra"] .mobile-menu a {
        display: block;
        width: 100%;
        border-radius: 12px;
        border: 1px solid rgba(46,37,32,.1);
        background: rgba(255,255,255,.72);
        padding: .8rem .95rem;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: .02em;
    }
    body[data-theme-key="classic-wastra"] .mobile-menu a:hover {
        color: var(--espresso);
        background: rgba(255,255,255,.9);
    }
    body[data-theme-key="classic-wastra"] .hero-left .hero-bg-overlay {
        background: linear-gradient(180deg, rgba(11,9,8,.48) 0%, rgba(11,9,8,.82) 52%, rgba(11,9,8,.94) 100%);
    }
    body[data-theme-key="classic-wastra"] .hero-headline {
        color: #fffaf2;
        text-shadow: 0 3px 14px rgba(0,0,0,.45);
    }
    body[data-theme-key="classic-wastra"] .hero-headline em {
        color: #f4c675;
        text-shadow: 0 2px 10px rgba(0,0,0,.35);
    }
    body[data-site-id="3"] .hero-desc,
    body[data-theme-key="gordyn-cahaya"] .hero-desc,
    body.theme-homepage-linen .hero-desc {
        color: rgba(255,250,240,.9);
        text-shadow: 0 2px 10px rgba(0,0,0,.4);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        overflow: hidden;
    }
    body[data-theme-key="classic-wastra"] .hero-highlight-chip {
        background: rgba(11,9,8,.5);
        border-color: rgba(255,255,255,.28);
        color: #fffaf2;
    }
    body[data-theme-key="classic-wastra"] .hero-highlights {
        display: none;
    }
    body[data-theme-key="classic-wastra"] .marquee-label {
        display: none;
    }
    body[data-theme-key="classic-wastra"] .marquee-strip {
        gap: 0;
    }
    body[data-theme-key="classic-wastra"] .mobile-close {
        top: 1.2rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 1px solid rgba(46,37,32,.14);
        background: rgba(255,255,255,.88);
        font-size: 1.2rem;
        line-height: 1;
    }
    body[data-theme-key="classic-wastra"] .wa-fab {
        right: 1rem;
        bottom: 1rem;
    }
    body[data-theme-key="classic-wastra"] .back-top {
        right: 4.55rem;
        bottom: 1rem;
    }
    body[data-theme-key="classic-wastra"] .wa-translate-widget {
        left: 1rem;
        right: auto;
        bottom: 1rem;
        justify-items: start;
    }
    body[data-theme-key="classic-wastra"] .wa-translate-toggle {
        min-width: 48px;
        height: 48px;
        padding: 0 .78rem;
    }
    body[data-theme-key="classic-wastra"] .wa-translate-toggle-text {
        font-size: .74rem;
    }
    body[data-theme-key="classic-wastra"] .wa-translate-panel {
        width: min(220px, calc(100vw - 1.6rem));
    }
    .section-wrap           { padding: 4rem 1.5rem; }
    .hero-left              { padding: 7rem 1.5rem 3.5rem; }
    .hero-right             { min-height: 300px; }
    .hero-img-grid          { min-height: 300px; }
    body[data-site-id="3"] .about-grid,
    body[data-theme-key="gordyn-cahaya"] .about-grid,
    body.theme-homepage-linen .about-grid {
        margin-top: 1.9rem;
        gap: 1.2rem;
    }
    body[data-site-id="3"] .about-img,
    body[data-theme-key="gordyn-cahaya"] .about-img,
    body.theme-homepage-linen .about-img {
        max-width: none;
        aspect-ratio: 16 / 10;
        border-radius: 14px;
        border: 1px solid rgba(184,148,95,.18);
        box-shadow: 0 14px 30px rgba(46,37,32,.12);
    }
    body[data-site-id="3"] .about-accent,
    body[data-theme-key="gordyn-cahaya"] .about-accent,
    body.theme-homepage-linen .about-accent {
        display: none;
    }
    body[data-site-id="3"] .about-content,
    body[data-theme-key="gordyn-cahaya"] .about-content,
    body.theme-homepage-linen .about-content {
        gap: .86rem;
        padding: 1.05rem .95rem;
        border-radius: 16px;
        border: 1px solid rgba(184,148,95,.22);
        background:
            radial-gradient(circle at 100% 0%, rgba(212,179,125,.13) 0%, transparent 46%),
            linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,240,228,.94) 100%);
        box-shadow: 0 10px 24px rgba(46,37,32,.08);
    }
    body[data-site-id="3"] .about-content .about-text,
    body[data-theme-key="gordyn-cahaya"] .about-content .about-text,
    body.theme-homepage-linen .about-content .about-text {
        font-size: .98rem;
        line-height: 1.78;
        color: rgba(56,45,36,.88);
    }
    body[data-site-id="3"] .about-content .about-text + .about-text,
    body[data-theme-key="gordyn-cahaya"] .about-content .about-text + .about-text,
    body.theme-homepage-linen .about-content .about-text + .about-text {
        margin-top: .24rem;
        padding-top: .82rem;
        border-top: 1px dashed rgba(184,148,95,.28);
    }
    body[data-site-id="3"] .about-highlight,
    body[data-theme-key="gordyn-cahaya"] .about-highlight,
    body.theme-homepage-linen .about-highlight {
        margin-top: .22rem;
        padding: 1.05rem .92rem;
        border-radius: 14px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .55rem;
    }
    body[data-site-id="3"] .about-stat-num,
    body[data-theme-key="gordyn-cahaya"] .about-stat-num,
    body.theme-homepage-linen .about-stat-num {
        font-size: clamp(1.8rem, 7.2vw, 2.2rem);
        line-height: 1.05;
    }
    body[data-site-id="3"] .about-stat-label,
    body[data-theme-key="gordyn-cahaya"] .about-stat-label,
    body.theme-homepage-linen .about-stat-label {
        margin-top: .22rem;
        font-size: .62rem;
        letter-spacing: .08em;
        color: rgba(250,246,240,.68);
    }
    .hero-social-links      { gap: .55rem; }
    .hero-social-links .social-btn { width: 44px; height: 44px; }
    .hero-social-links .social-btn svg { width: 18px; height: 18px; }
    body[data-site-id="3"] .hero-social-links .social-btn:nth-child(n+4),
    body[data-theme-key="gordyn-cahaya"] .hero-social-links .social-btn:nth-child(n+4),
    body.theme-homepage-linen .hero-social-links .social-btn:nth-child(n+4) { display: none; }
    body:not(.theme-homepage-digital) .services-mobile-slider {
        margin-top: 2.15rem;
    }
    body:not(.theme-homepage-digital) .services-grid.services-grid--mobile-swipe {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(86%, 328px);
        gap: .85rem;
        overflow-x: auto;
        overflow-y: visible;
        padding: .15rem .15rem .75rem;
        scroll-snap-type: x mandatory;
        scroll-padding-left: .15rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    body:not(.theme-homepage-digital) .services-grid.services-grid--mobile-swipe::-webkit-scrollbar {
        display: none;
    }
    body:not(.theme-homepage-digital) .services-grid.services-grid--mobile-swipe .svc-card {
        scroll-snap-align: start;
        min-height: 0;
        margin: 0;
        border-radius: 14px;
        padding: 1.2rem 1rem 1rem;
        min-height: 286px;
        border: 1px solid rgba(46,37,32,.08);
        box-shadow: 0 10px 26px rgba(46,37,32,.08);
    }
    body:not(.theme-homepage-digital) .services-grid.services-grid--mobile-swipe .svc-number {
        font-size: clamp(2.6rem, 12vw, 3.2rem);
    }
    body:not(.theme-homepage-digital) .services-grid.services-grid--mobile-swipe .svc-name {
        font-size: 1.12rem;
        line-height: 1.2;
    }
    body:not(.theme-homepage-digital) .services-grid.services-grid--mobile-swipe .svc-desc {
        font-size: .84rem;
        line-height: 1.58;
    }
    body:not(.theme-homepage-digital) .services-slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        margin-top: .15rem;
    }
    body:not(.theme-homepage-digital) .services-slider-btn {
        display: none;
    }
    body:not(.theme-homepage-digital) .services-slider-dots {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .32rem;
    }
    body:not(.theme-homepage-digital) .services-slider-dot {
        width: 8px;
        height: 8px;
        border: 0;
        border-radius: 999px;
        background: rgba(46,37,32,.2);
        transition: width .2s ease, background .2s ease, opacity .2s ease;
        opacity: .9;
    }
    body:not(.theme-homepage-digital) .services-slider-dot.is-active {
        width: 18px;
        background: rgba(184,148,95,.95);
    }
    body:not(.theme-homepage-digital) .trust-proofwall {
        grid-template-columns: 1fr;
        gap: .88rem;
        margin-top: 2.1rem;
    }
    body:not(.theme-homepage-digital) .trust-mobile-hint {
        display: inline-flex;
        align-items: center;
        margin-bottom: .38rem;
    }
    body:not(.theme-homepage-digital) .trust-mobile-hint span {
        display: inline-flex;
        align-items: center;
        min-height: 24px;
        padding: 0 .56rem;
        border-radius: 999px;
        border: 1px solid rgba(146,166,192,.42);
        background: rgba(146,166,192,.16);
        color: rgba(33,56,81,.9);
        font-size: .56rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
    }
    body:not(.theme-homepage-digital) .trust-grid.trust-grid--mobile-peek {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(86%, 332px);
        gap: .78rem;
        overflow-x: auto;
        overflow-y: visible;
        padding: .08rem .08rem .7rem;
        margin-top: 0;
        border: 0;
        scroll-snap-type: x mandatory;
        scroll-padding-left: .08rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    body:not(.theme-homepage-digital) .trust-grid.trust-grid--mobile-peek::-webkit-scrollbar {
        display: none;
    }
    body:not(.theme-homepage-digital) .trust-grid.trust-grid--mobile-peek .trust-item--loud {
        scroll-snap-align: start;
    }
    body:not(.theme-homepage-digital) .trust-slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .52rem;
        margin-top: .2rem;
    }
    body:not(.theme-homepage-digital) .trust-slider-btn {
        display: none;
    }
    body:not(.theme-homepage-digital) .trust-slider-dots {
        display: inline-flex;
        align-items: center;
        gap: .34rem;
    }
    body:not(.theme-homepage-digital) .trust-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        border: 0;
        padding: 0;
        background: rgba(52,78,108,.26);
    }
    body:not(.theme-homepage-digital) .trust-slider-dot.is-active {
        width: 18px;
        background: rgba(184,148,95,.95);
    }
    body:not(.theme-homepage-digital) .process-mobile-progress {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: .34rem;
        margin-top: .62rem;
    }
    body:not(.theme-homepage-digital) .process-mobile-progress-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 42px;
        min-height: 28px;
        padding: 0 .6rem;
        border-radius: 999px;
        border: 1px solid rgba(136,160,187,.34);
        background: rgba(136,160,187,.12);
        color: rgba(34,57,82,.86);
        font-size: .58rem;
        font-weight: 700;
        letter-spacing: .09em;
        text-transform: uppercase;
        cursor: pointer;
    }
    body:not(.theme-homepage-digital) .process-mobile-progress-chip.is-active {
        border-color: rgba(184,148,95,.62);
        background: rgba(184,148,95,.22);
        color: rgba(81,59,33,.94);
    }
    body:not(.theme-homepage-digital) .process-steps.process-steps--mobile-swipe {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(86%, 332px);
        gap: .78rem;
        overflow-x: auto;
        overflow-y: visible;
        padding: .08rem .08rem .7rem;
        margin-top: .72rem;
        scroll-snap-type: x mandatory;
        scroll-padding-left: .08rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    body:not(.theme-homepage-digital) .process-steps.process-steps--mobile-swipe::-webkit-scrollbar {
        display: none;
    }
    body:not(.theme-homepage-digital) .process-steps.process-steps--mobile-swipe::before {
        display: none;
    }
    body:not(.theme-homepage-digital) .process-steps.process-steps--mobile-swipe .process-step {
        scroll-snap-align: start;
        text-align: left;
        padding: 1rem .95rem;
        border: 1px solid rgba(46,37,32,.12);
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(247,241,233,.96));
        box-shadow: 0 14px 28px rgba(46,37,32,.1);
    }
    body:not(.theme-homepage-digital) .process-steps.process-steps--mobile-swipe .process-step.reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    body:not(.theme-homepage-digital) .process-steps.process-steps--mobile-swipe .step-head {
        margin-bottom: .55rem;
    }
    body:not(.theme-homepage-digital) .process-steps.process-steps--mobile-swipe .step-num {
        width: 48px;
        height: 48px;
        margin: 0;
        font-size: 1rem;
    }
    body:not(.theme-homepage-digital) .process-steps.process-steps--mobile-swipe .step-title {
        font-size: 1.08rem;
        margin-bottom: .34rem;
    }
    body:not(.theme-homepage-digital) .process-steps.process-steps--mobile-swipe .step-desc {
        font-size: .84rem;
        line-height: 1.62;
    }
    body:not(.theme-homepage-digital) .process-slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .58rem;
        margin-top: .22rem;
    }
    body:not(.theme-homepage-digital) .process-slider-btn {
        display: none;
    }
    body:not(.theme-homepage-digital) .process-slider-counter {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 84px;
        min-height: 32px;
        padding: 0 .7rem;
        border-radius: 999px;
        border: 1px solid rgba(136,160,187,.36);
        background: rgba(136,160,187,.14);
        color: rgba(34,57,82,.88);
        font-size: .66rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    .services-grid          { grid-template-columns: 1fr; }
    .services-conversion-title { font-size: .98rem; }
    .services-conversion-desc { font-size: .84rem; }
    .services-conversion-points span { min-height: 26px; font-size: .63rem; }
    .services-conversion-cta { width: 100%; }
    .featured-scroll        { grid-template-columns: 1fr; }
    .product-lightbox       { padding: .75rem; }
    .product-lightbox-stage { height: 54vh; }
    .product-lightbox-nav   { width: 38px; height: 50px; font-size: 2rem; }
    .product-lightbox-nav.is-prev { left: .35rem; }
    .product-lightbox-nav.is-next { right: .35rem; }
    .product-lightbox-close { top: .5rem; right: .5rem; }
    .product-lightbox-meta  { padding: .85rem; }
    .project-modal-dialog   { grid-template-columns: 1fr; margin-top: 4.9rem; max-height: calc(100vh - 5.7rem); }
    .project-modal-nav      { width: 38px; height: 50px; font-size: 1.9rem; }
    .project-modal-nav.is-prev { left: .35rem; }
    .project-modal-nav.is-next { right: .35rem; }
    .project-modal-media    { min-height: 220px; max-height: 40vh; }
    .project-modal-media-nav { width: 32px; height: 42px; font-size: 1.45rem; }
    .project-modal-media-count { bottom: .5rem; font-size: .64rem; }
    .project-modal-copy     { padding: 1rem .95rem .95rem; }
    .project-modal-copy h3  { font-size: 1.35rem; }
    .gallery-grid           { grid-template-columns: 1fr 1fr; }
    .trust-grid             { grid-template-columns: 1fr; }
    .trust-item             { border-right: none; border-bottom: 1px solid rgba(46,37,32,.08); }
    .process-steps          { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .testi-grid             { grid-template-columns: 1fr; }
    .testi-mobile-slider    { position: relative; margin-top: 1rem; }
    .testi-grid[data-testi-track] { display: flex; flex-wrap: nowrap; gap: 0; margin-top: 0; overflow: hidden; transition: transform .28s ease; will-change: transform; touch-action: pan-y; }
    .testi-grid[data-testi-track] .testi-card { flex: 0 0 100%; min-width: 100%; }
    .testi-slider-controls  { display: flex; align-items: center; justify-content: center; gap: .56rem; margin-top: .62rem; }
    .testi-slider-btn       { width: 34px; height: 34px; border-radius: 999px; border: 1px solid rgba(250,246,240,.32); background: rgba(250,246,240,.08); color: var(--linen); font-size: .92rem; line-height: 1; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
    .testi-slider-btn:hover { background: rgba(250,246,240,.16); border-color: rgba(250,246,240,.55); }
    .testi-slider-dots      { display: inline-flex; align-items: center; gap: .34rem; }
    .testi-slider-dot       { width: 7px; height: 7px; border-radius: 999px; border: 0; padding: 0; background: rgba(250,246,240,.32); cursor: pointer; }
    .testi-slider-dot.is-active { width: 18px; background: var(--brass-lt); }
    .cta-inner              { padding: 3.5rem 1.5rem; grid-template-columns: 1fr; }
    .cta-actions            { flex-direction: column; align-items: stretch; }
    .btn-dark,
    .btn-outline-dark       { width: 100%; justify-content: center; }
    .cta-right              { gap: .75rem; }
    .cta-info-card          { padding: 1rem 1rem; }
    .cta-info-val           { font-size: .94rem; }
    .map-info               { padding: 2rem 1.5rem; }
    .homepage-articles-header { align-items: flex-start; flex-direction: column; gap: 1rem; }
    .homepage-articles-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .footer-top             { grid-template-columns: 1fr; gap: 2rem; }
    .about-highlight        { grid-template-columns: 1fr 1fr; }
    .product-detail-hero    { padding-top: 4.5rem; }
    .product-detail-grid    { gap: 2rem; }
    .product-detail-copy    { border-radius: 16px; padding: 1rem; }
    .product-detail-back    { top: .7rem; right: .7rem; width: 34px; height: 34px; }
    .product-detail-media > .product-detail-back { top: .7rem; left: .7rem; margin: 0; }
    .product-detail-badge   { top: .7rem; right: .7rem; left: auto; }
    .product-detail-thumbs  { display: flex; gap: .65rem; overflow-x: auto; overflow-y: hidden; padding: .15rem .1rem .5rem; margin: 0 -.1rem; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
    .product-detail-thumbs::-webkit-scrollbar { height: 6px; }
    .product-detail-thumbs::-webkit-scrollbar-thumb { background: rgba(184,148,95,.36); border-radius: 999px; }
    .product-detail-thumb   { flex: 0 0 78px; scroll-snap-align: start; }
    .product-detail-summary { grid-template-columns: 1fr; }
    .product-detail-summary > div + div { border-left: 0; border-top: 1px solid var(--linen-dk); }
    .product-detail-actions { align-items: stretch; flex-direction: column; gap: .55rem; margin-top: .75rem; margin-bottom: .35rem; }
    .product-detail-trustline { margin-top: .25rem; margin-bottom: .65rem; gap: .35rem .4rem; }
    .product-detail-trustline span { padding: .3rem .55rem; font-size: .62rem; letter-spacing: .07em; }
    .product-detail-buy-cta,
    .product-detail-cta,
    .product-detail-secondary { width: 100%; }
    .product-detail-sticky-cta { width: calc(100% - 1rem); bottom: .5rem; border-radius: 12px; padding: .55rem; }
    .product-detail-sticky-copy strong { font-size: .92rem; }
    .product-detail-sticky-btn { min-height: 42px; font-size: .72rem; padding: 0 .74rem; }
    .cursor,
    .cursor-ring            { display: none; }
    body                    { cursor: auto; }
}

@media (max-width: 480px) {
    body[data-theme-key="classic-wastra"] nav#navbar {
        top: .55rem;
        left: .55rem;
        right: .55rem;
    }
    body[data-theme-key="classic-wastra"] .wa-translate-toggle-text {
        display: none;
    }
    body[data-theme-key="classic-wastra"] .wa-translate-toggle {
        width: 46px;
        min-width: 46px;
        padding: 0;
    }
    .hero-right             { min-height: 260px; }
    .hero-img-grid          { min-height: 260px; }
    .hero-social            { margin-top: 1.7rem; padding-top: 1.2rem; }
    .hero-actions           { flex-direction: column; }
    .hero-actions a         { text-align: center; }
    .process-steps          { grid-template-columns: 1fr; }
    .about-highlight        { grid-template-columns: 1fr; }
    body[data-site-id="3"] .about-content,
    body[data-theme-key="gordyn-cahaya"] .about-content,
    body.theme-homepage-linen .about-content {
        padding: .95rem .86rem;
        border-radius: 14px;
    }
    body[data-site-id="3"] .about-content .about-text,
    body[data-theme-key="gordyn-cahaya"] .about-content .about-text,
    body.theme-homepage-linen .about-content .about-text {
        font-size: .95rem;
        line-height: 1.74;
    }
    body[data-site-id="3"] .about-highlight,
    body[data-theme-key="gordyn-cahaya"] .about-highlight,
    body.theme-homepage-linen .about-highlight {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .4rem;
        padding: .92rem .72rem;
    }
    body[data-site-id="3"] .about-stat-num,
    body[data-theme-key="gordyn-cahaya"] .about-stat-num,
    body.theme-homepage-linen .about-stat-num {
        font-size: clamp(1.56rem, 7.4vw, 1.9rem);
    }
    body[data-site-id="3"] .about-stat-label,
    body[data-theme-key="gordyn-cahaya"] .about-stat-label,
    body.theme-homepage-linen .about-stat-label {
        font-size: .57rem;
        letter-spacing: .07em;
    }
    .product-detail-media-head { align-items: flex-start; flex-direction: column; gap: .35rem; }
    .gallery-grid           { grid-template-columns: 1fr; }
}

/* Promo banner */
.promo-banner {
    padding: 2.4rem clamp(1.5rem, 5vw, 4rem) 0;
    background: var(--ivory);
}
.promo-banner-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr);
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 260px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 18%, rgba(255,255,255,.34), transparent 28%),
        linear-gradient(135deg, #2e2520 0%, #6f563c 52%, #c69c6d 100%);
    color: #fffaf2;
    box-shadow: 0 28px 70px rgba(46, 37, 32, .18);
}
.promo-banner-card::before {
    content: '';
    position: absolute;
    inset: auto -8% -34% 34%;
    height: 210px;
    background: rgba(255,255,255,.13);
    border-radius: 999px;
    transform: rotate(-7deg);
}
.promo-banner-copy {
    position: relative;
    z-index: 2;
    padding: clamp(2rem, 5vw, 3.4rem);
}
.promo-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1rem;
    padding: .48rem .78rem;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.promo-banner-copy h2 {
    margin: 0;
    max-width: 680px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: .96;
}
.promo-banner-copy p {
    max-width: 560px;
    margin: 1rem 0 0;
    color: rgba(255,250,242,.82);
    font-size: clamp(.98rem, 1.5vw, 1.12rem);
    line-height: 1.7;
}
.promo-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-top: 1.45rem;
    padding: .82rem 1.2rem;
    border-radius: 999px;
    background: #fffaf2;
    color: #2e2520;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(46,37,32,.22);
    transition: transform .25s ease, box-shadow .25s ease;
}
.promo-banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(46,37,32,.3);
}
.promo-banner-visual {
    position: relative;
    z-index: 1;
    min-height: 230px;
}
.promo-banner-visual img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    opacity: .92;
    mask-image: linear-gradient(90deg, transparent 0%, #000 24%);
}
@media (max-width: 768px) {
    .promo-banner { padding: 1.5rem 1.25rem 0; }
    .promo-banner-card { grid-template-columns: 1fr; border-radius: 22px; }
    .promo-banner-visual { order: -1; min-height: 180px; }
    .promo-banner-visual img { min-height: 180px; mask-image: linear-gradient(180deg, #000 0%, transparent 100%); }
    .promo-banner-copy { padding: 1.6rem; }
}

/* Promo splash screen */
.promo-splash[hidden] { display: none; }
.promo-splash {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 2.5rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity .26s ease;
}
.promo-splash.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.promo-splash-lock { overflow: hidden; }
.promo-splash-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 16%, rgba(198,156,109,.26), transparent 28%),
        rgba(23, 18, 15, .72);
    backdrop-filter: blur(10px);
}
.promo-splash-dialog {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
    width: min(940px, 100%);
    max-height: min(720px, calc(100vh - 2rem));
    border-radius: 32px;
    background: #fffaf2;
    color: #2e2520;
    box-shadow: 0 34px 90px rgba(0,0,0,.35);
    transform: translateY(18px) scale(.96);
    transition: transform .32s cubic-bezier(.2,.8,.2,1);
    outline: none;
}
.promo-splash.is-visible .promo-splash-dialog {
    transform: translateY(0) scale(1);
}
.promo-splash-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(46,37,32,.12);
    color: #2e2520;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.promo-splash-close:hover {
    transform: rotate(8deg) scale(1.04);
    background: rgba(46,37,32,.2);
}
.promo-splash-media {
    min-height: 420px;
    background:
        linear-gradient(135deg, #2e2520, #8d6843),
        var(--linen);
}
.promo-splash-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.promo-splash-copy {
    position: relative;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.promo-splash-copy::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    right: -56px;
    bottom: -56px;
    border-radius: 50%;
    background: rgba(198,156,109,.16);
}
.promo-splash-badge {
    width: fit-content;
    margin-bottom: 1rem;
    padding: .46rem .72rem;
    border-radius: 999px;
    background: #2e2520;
    color: #fffaf2;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.promo-splash-copy h2 {
    position: relative;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4.7rem);
    line-height: .92;
}
.promo-splash-copy p {
    position: relative;
    margin: 1.15rem 0 0;
    max-width: 540px;
    color: rgba(46,37,32,.72);
    font-size: clamp(.98rem, 1.4vw, 1.12rem);
    line-height: 1.72;
}
.promo-splash-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .8rem;
    margin-top: 1.7rem;
}
.promo-splash-cta,
.promo-splash-skip {
    min-height: 46px;
    border-radius: 999px;
    padding: .86rem 1.15rem;
    font-weight: 800;
}
.promo-splash-cta {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: #2e2520;
    color: #fffaf2;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(46,37,32,.18);
}
.promo-splash-skip {
    border: 1px solid rgba(46,37,32,.16);
    background: transparent;
    color: rgba(46,37,32,.68);
    cursor: pointer;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
@media (max-width: 760px) {
    .promo-splash { padding: .85rem; }
    .promo-splash-dialog {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 1.7rem);
        overflow-y: auto;
        border-radius: 24px;
    }
    .promo-splash-media { min-height: 230px; max-height: 34vh; }
    .promo-splash-copy { padding: 1.6rem; }
    .promo-splash-actions { align-items: stretch; flex-direction: column; }
    .promo-splash-cta,
    .promo-splash-skip { width: 100%; justify-content: center; text-align: center; }
}

/* Homepage YouTube */
.youtube-section {
    background:
        radial-gradient(circle at 10% 8%, rgba(198,156,109,.11), transparent 28%),
        var(--ivory);
}
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.youtube-card {
    overflow: hidden;
    border: 1px solid rgba(46,37,32,.1);
    border-radius: 24px;
    background: #fffaf2;
    box-shadow: 0 20px 46px rgba(46,37,32,.08);
}
.youtube-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    padding: 0;
    border: 0;
    background: #1f1915;
    cursor: pointer;
    overflow: hidden;
}
.youtube-thumb img,
.youtube-thumb iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
}
.youtube-thumb img {
    transition: transform .45s ease, opacity .3s ease;
}
.youtube-thumb:hover img {
    transform: scale(1.05);
    opacity: .78;
}
.youtube-play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fffaf2;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 40px rgba(0,0,0,.26);
}
.youtube-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 19px solid #2e2520;
}
.youtube-copy {
    padding: 1.1rem 1.15rem 1.25rem;
}
.youtube-copy h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.08;
    color: #2e2520;
}
.youtube-copy p {
    margin: .65rem 0 0;
    color: rgba(46,37,32,.68);
    font-size: .9rem;
    line-height: 1.6;
}
@media (max-width: 960px) {
    .youtube-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .youtube-grid { grid-template-columns: 1fr; }
    .youtube-play { width: 58px; height: 58px; }
}

/* YouTube section refinement */
.youtube-section {
    background:
        radial-gradient(circle at 86% 12%, rgba(184,148,95,.14), transparent 30%),
        linear-gradient(180deg, var(--ivory) 0%, #f4eadc 100%);
}
.youtube-grid {
    margin-top: 3rem;
}
.youtube-card {
    position: relative;
    border-radius: 28px;
    background: rgba(255,250,242,.82);
    border: 1px solid rgba(46,37,32,.08);
    box-shadow: 0 22px 55px rgba(46,37,32,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.youtube-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(46,37,32,.13);
}
.youtube-thumb {
    border-radius: 28px 28px 0 0;
    isolation: isolate;
}
.youtube-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(46,37,32,.04) 0%, rgba(46,37,32,.46) 100%);
    z-index: 1;
}
.youtube-thumb img {
    filter: saturate(.92) contrast(1.02);
}
.youtube-play,
.youtube-thumb-label {
    z-index: 2;
}
.youtube-thumb-label {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: .42rem .7rem;
    border-radius: 999px;
    background: rgba(255,250,242,.9);
    color: #2e2520;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.youtube-play {
    width: 62px;
    height: 62px;
    background: var(--brass);
}
.youtube-play::before {
    border-left-color: #fffaf2;
}
.youtube-copy {
    padding: 1.25rem 1.25rem 1.45rem;
}
.youtube-kicker {
    margin-bottom: .48rem;
    color: var(--brass);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.youtube-modal {
    position: fixed;
    inset: 0;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.youtube-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.youtube-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23,18,15,.76);
    backdrop-filter: blur(10px);
}
.youtube-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    overflow: hidden;
    border-radius: 28px;
    background: #fffaf2;
    box-shadow: 0 34px 90px rgba(0,0,0,.34);
    transform: translateY(16px) scale(.97);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
    outline: none;
}
.youtube-modal.is-open .youtube-modal-dialog {
    transform: translateY(0) scale(1);
}
.youtube-modal-close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,250,242,.92);
    color: #2e2520;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(0,0,0,.14);
}
.youtube-modal-player {
    aspect-ratio: 16 / 9;
    background: #1f1915;
}
.youtube-modal-player iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.youtube-modal-copy {
    padding: 1.2rem 1.35rem 1.35rem;
}
.youtube-modal-copy h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.08;
    color: #2e2520;
}
.youtube-modal-copy p {
    margin: .65rem 0 0;
    color: rgba(46,37,32,.68);
    line-height: 1.65;
}
@media (max-width: 640px) {
    .youtube-modal { padding: .75rem; }
    .youtube-modal-dialog { border-radius: 20px; }
    .youtube-thumb-label { left: .8rem; bottom: .8rem; }
}

.wa-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 9990;
    width: min(1120px, calc(100% - 1.25rem));
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1rem 1rem 1.15rem;
    border: 1px solid rgba(255,250,242,.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(184,148,95,.28), transparent 34%),
        linear-gradient(135deg, rgba(33,26,22,.97), rgba(57,44,35,.96));
    color: #fffaf2;
    box-shadow: 0 28px 80px rgba(21,16,13,.34);
    transform: translate(-50%, calc(100% + 2rem));
    opacity: 0;
    pointer-events: none;
    transition: transform .32s ease, opacity .24s ease;
}
.wa-sticky-cta.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}
.wa-sticky-cta-copy {
    display: grid;
    gap: .25rem;
    padding-right: 1rem;
}
.wa-sticky-cta-kicker {
    color: rgba(255,250,242,.72);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.wa-sticky-cta-title {
    font-size: .98rem;
    line-height: 1.45;
    font-weight: 500;
}
.wa-sticky-cta-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.wa-sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .01em;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.wa-sticky-cta-btn:hover {
    transform: translateY(-1px);
}
.wa-sticky-cta-btn.is-primary {
    background: #c89b5c;
    color: #2b2119;
}
.wa-sticky-cta-btn.is-primary:hover {
    background: #d5a96c;
}
.wa-sticky-cta-btn.is-secondary {
    border: 1px solid rgba(255,250,242,.22);
    background: rgba(255,250,242,.08);
    color: #fffaf2;
}
.wa-sticky-cta-btn.is-secondary:hover {
    background: rgba(255,250,242,.14);
}
.wa-sticky-cta-dismiss {
    position: absolute;
    top: .55rem;
    right: .7rem;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,250,242,.1);
    color: rgba(255,250,242,.86);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}
body.has-sticky-cta {
    padding-bottom: 7rem;
}
@media (max-width: 860px) {
    .wa-sticky-cta {
        width: calc(100% - 1rem);
        grid-template-columns: 1fr;
        gap: .85rem;
        padding: .95rem .9rem 1rem;
        border-radius: 22px;
    }
    .wa-sticky-cta-copy {
        padding-right: 1.75rem;
    }
    .wa-sticky-cta-actions {
        width: 100%;
        gap: .6rem;
    }
    .wa-sticky-cta-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 0 .9rem;
        font-size: .84rem;
    }
    body.has-sticky-cta {
        padding-bottom: 8.5rem;
    }
}
@media (max-width: 560px) {
    .wa-sticky-cta-title {
        font-size: .9rem;
    }
    .wa-sticky-cta-actions {
        flex-direction: column;
    }
    .wa-sticky-cta-btn {
        width: 100%;
    }
    body.has-sticky-cta {
        padding-bottom: 11rem;
    }
}

.wa-lead-modal {
    position: fixed;
    inset: 0;
    z-index: 9996;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}
.wa-lead-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.wa-lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23,18,15,.68);
    backdrop-filter: blur(8px);
}
.wa-lead-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    padding: 1.2rem;
    border-radius: 28px;
    background: #fffaf2;
    box-shadow: 0 32px 90px rgba(21,16,13,.34);
}
.wa-lead-modal-close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(46,37,32,.08);
    color: #2e2520;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}
.wa-lead-modal-copy {
    padding-right: 2.5rem;
}
.wa-lead-modal-kicker {
    color: var(--brass);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.wa-lead-modal-copy h3 {
    margin: .35rem 0 .4rem;
    color: #2e2520;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.8vw, 1.95rem);
    line-height: 1.12;
}
.wa-lead-modal-copy p {
    margin: 0;
    color: rgba(46,37,32,.7);
    line-height: 1.65;
}
.wa-lead-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.15rem;
}
.wa-lead-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}
.wa-lead-field {
    display: grid;
    gap: .42rem;
}
.wa-lead-field span {
    color: #5a4a3c;
    font-size: .82rem;
    font-weight: 700;
}
.wa-lead-field input,
.wa-lead-field textarea {
    width: 100%;
    border: 1px solid rgba(90,74,60,.16);
    border-radius: 16px;
    background: #fff;
    color: #2e2520;
    font: inherit;
    padding: .9rem 1rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.wa-lead-field input:focus,
.wa-lead-field textarea:focus {
    border-color: rgba(184,148,95,.9);
    box-shadow: 0 0 0 4px rgba(184,148,95,.12);
}
.wa-lead-field textarea {
    resize: vertical;
    min-height: 112px;
}
.wa-lead-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: .7rem;
}
.wa-lead-form-status {
    min-height: 1.4rem;
    font-size: .84rem;
    color: rgba(46,37,32,.72);
}
.wa-lead-form-status.is-success {
    color: #21613d;
}
.wa-lead-form-status.is-error {
    color: #9f2f2f;
}
@media (max-width: 640px) {
    .wa-lead-modal-dialog {
        border-radius: 24px;
        padding: 1rem;
    }
    .wa-lead-form-grid {
        grid-template-columns: 1fr;
    }
    .wa-lead-form-actions {
        flex-direction: column-reverse;
    }
    .wa-lead-form-actions .wa-sticky-cta-btn {
        width: 100%;
    }
}
