/* ==========================================================================
   PERINTIS IMPORT ALAT BERAT — design system v2
   Cinematic heavy-industry: photography-led, layered depth, industrial red.
   Marketing = immersive dark. Store/content = premium light.
   Type: Archivo (display) · IBM Plex Sans (body) · IBM Plex Mono (data).
   ========================================================================== */

/* ----- Tokens ----------------------------------------------------------- */
:root {
	/* Dark / cinematic */
	--black:    #08090b;
	--ink-900:  #0d0f12;
	--ink-800:  #14161a;
	--ink-700:  #1c1f25;
	--ink-600:  #272b32;
	--hair:     rgba(255,255,255,.09);
	--hair-2:   rgba(255,255,255,.16);

	/* Signal red + warm machine amber (from the photography) */
	--red:        #e22418;
	--red-bright: #ff4133;
	--red-deep:   #9d1109;
	--amber:      #f6a623;

	/* Light / store */
	--paper:   #f4f3ef;
	--paper-2: #eceae3;
	--card:    #ffffff;
	--line:    #e4e1d8;
	--ink:     #16181d;
	--ink-soft:#42454c;

	/* Text on dark */
	--on-dark:      #f3f2ef;
	--on-dark-dim:  #a7abb3;
	--on-dark-mute: #71757d;

	/* Type */
	--f-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
	--f-body:    "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--f-mono:    "IBM Plex Mono", ui-monospace, Menlo, monospace;

	--fs-hero: clamp(2.9rem, 7.2vw, 7rem);
	--fs-h1:   clamp(2.3rem, 5vw, 4.2rem);
	--fs-h2:   clamp(2rem, 4.2vw, 3.4rem);
	--fs-h3:   clamp(1.3rem, 2.2vw, 1.7rem);

	/* Shape & depth */
	--r-sm: 10px;
	--r:    16px;
	--r-lg: 24px;
	--shadow-sm: 0 6px 20px -10px rgba(0,0,0,.5);
	--shadow:    0 26px 60px -28px rgba(0,0,0,.65);
	--shadow-red:0 18px 50px -16px rgba(226,36,24,.5);

	--wrap: 1280px;
	--wrap-lg: 1480px;
	--gutter: clamp(1.15rem, 4vw, 2.75rem);
	--header-h: 88px;
	--ease: cubic-bezier(.16,.84,.28,1);
	--ease-out: cubic-bezier(.22,1,.36,1);
}

/* ----- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
/* overflow-x guard lives on html, NOT body: on body it turns the body into the
   sticky containing scrollport and position:sticky on .site-header stops working. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
	font-family: var(--f-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--black);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; border-radius: 2px; }

/* Grain overlay for depth */
body::after {
	content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
	background-image: url(../img/noise.png); background-size: 160px;
	opacity: .035; mix-blend-mode: overlay;
}

/* ----- Typography ------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 800; line-height: 1.04; letter-spacing: -.015em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -.01em; }
p { max-width: 66ch; }
strong { font-weight: 700; }

.eyebrow {
	display: inline-flex; align-items: center; gap: .7rem;
	font-family: var(--f-mono); font-size: .74rem; font-weight: 600;
	letter-spacing: .26em; text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; transform-origin: left; }
.eyebrow--center { justify-content: center; }
.section--dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--red-bright); }

.lead { font-size: 1.2rem; line-height: 1.6; }
.muted { color: var(--ink-soft); }

/* ----- Layout ----------------------------------------------------------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.wrap-lg { width: min(100% - (var(--gutter) * 2), var(--wrap-lg)); margin-inline: auto; }

.section { padding-block: clamp(4rem, 8vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--dark { background: var(--ink-900); color: var(--on-dark); }
.section--darker { background: var(--black); color: var(--on-dark); }
.section--light { background: var(--paper); color: var(--ink); }
.section--light-2 { background: var(--paper-2); color: var(--ink); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--darker h1, .section--darker h2, .section--darker h3 { color: #fff; }
.section--dark p, .section--darker p { color: var(--on-dark-dim); }

/* texture on dark sections */
.section--dark::before, .section--darker::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(120% 80% at 85% -10%, rgba(226,36,24,.10), transparent 55%);
}
.section > .wrap, .section > .wrap-lg { position: relative; z-index: 1; }

.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head__title { font-size: var(--fs-h2); }
.section-head__intro { margin-top: 1.1rem; font-size: 1.12rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
	font-family: var(--f-mono); font-weight: 600; font-size: .82rem;
	letter-spacing: .1em; text-transform: uppercase; line-height: 1;
	padding: 1.05rem 1.7rem; border: 1px solid transparent; border-radius: var(--r-sm);
	cursor: pointer; transition: transform .25s var(--ease), background .25s, box-shadow .25s, border-color .25s;
	position: relative; white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: linear-gradient(180deg, var(--red-bright), var(--red)); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 24px 60px -14px rgba(226,36,24,.7); }
.btn--glass { background: rgba(255,255,255,.06); color: #fff; border-color: var(--hair-2); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-3px); }
.btn--light { background: var(--ink); color: #fff; }
.btn--light:hover { background: #000; transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--ink); border-color: rgba(0,0,0,.22); }
.btn--outline:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn--wa { background: linear-gradient(180deg,#28c062,#1faa54); color: #fff; box-shadow: 0 16px 40px -16px rgba(31,170,84,.6); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -14px rgba(31,170,84,.75); }
.btn--lg { padding: 1.2rem 2.1rem; font-size: .88rem; }
.btn--block { display: flex; width: 100%; }

/* ----- Header ----------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 100;
	background: var(--ink-900); border-bottom: 1px solid var(--hair); color: var(--on-dark);
	transition: background .35s var(--ease), backdrop-filter .35s, border-color .35s, box-shadow .35s;
}
/* Transparent over a dark hero, solidifies on scroll */
body.has-hero .site-header { position: fixed; background: transparent; border-bottom-color: transparent; }
body.has-hero .site-header.is-scrolled {
	background: rgba(8,9,11,.82); backdrop-filter: blur(14px) saturate(1.2);
	border-bottom-color: var(--hair); box-shadow: 0 12px 30px -20px rgba(0,0,0,.8);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; width: min(100% - (var(--gutter) * 2), var(--wrap-lg)); margin-inline: auto; min-height: var(--header-h); }
.custom-logo { max-height: 48px; width: auto; }
.site-logo-text { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-weight: 900; font-size: 1.34rem; text-transform: uppercase; letter-spacing: .01em; color: #fff; line-height: 1; }
.site-logo-text .mark { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; background: linear-gradient(150deg, var(--red-bright), var(--red-deep)); color: #fff; font-size: 1.1rem; box-shadow: var(--shadow-red); }
.site-logo-text .sub { display: block; font-family: var(--f-mono); font-weight: 500; font-size: .54rem; letter-spacing: .28em; color: var(--on-dark-dim); margin-top: .22rem; }

.site-nav { margin-left: auto; }
.site-nav__menu { display: flex; align-items: center; gap: .15rem; }
.site-nav__menu a { position: relative; display: inline-block; padding: .6rem .95rem; font-family: var(--f-mono); font-size: .79rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark); opacity: .82; transition: opacity .2s; }
.site-nav__menu a::after { content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .35rem; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease); }
.site-nav__menu a:hover { opacity: 1; }
.site-nav__menu a:hover::after, .site-nav__menu .current-menu-item > a::after { transform: scaleX(1); }
.site-nav__menu .current-menu-item > a { opacity: 1; }
.site-nav__menu .sub-menu { display: none; }

.site-header__actions { display: flex; align-items: center; gap: .65rem; }
.header-cart { position: relative; display: inline-grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--hair-2); border-radius: 11px; color: #fff; transition: .2s; }
.header-cart:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.header-cart svg { width: 20px; height: 20px; }
.header-cart__count { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; display: grid; place-items: center; padding: 0 5px; background: var(--red); color: #fff; border-radius: 999px; font-family: var(--f-mono); font-size: .66rem; font-weight: 600; box-shadow: var(--shadow-red); }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--hair-2); background: transparent; border-radius: 11px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: #fff; transition: .25s var(--ease); }

/* ----- Skip link / a11y ------------------------------------------------- */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 1000; background: var(--red); color: #fff; padding: .7rem 1.1rem; border-radius: 8px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ----- WhatsApp float --------------------------------------------------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 95; display: inline-flex; align-items: center; gap: .55rem; background: linear-gradient(180deg,#28c062,#1faa54); color: #fff; padding: .85rem 1.1rem; border-radius: 999px; font-family: var(--f-mono); font-size: .8rem; font-weight: 600; letter-spacing: .05em; box-shadow: 0 16px 40px -10px rgba(31,170,84,.7); transition: transform .25s var(--ease); }
.wa-float:hover { transform: translateY(-4px) scale(1.03); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float .wa-float__txt { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--on-dark); overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim { position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(95deg, var(--black) 8%, rgba(8,9,11,.78) 38%, rgba(8,9,11,.30) 70%, rgba(8,9,11,.55)),
		linear-gradient(0deg, var(--black) 2%, rgba(8,9,11,.1) 32%);
}
.hero__inner { width: min(100% - (var(--gutter) * 2), var(--wrap-lg)); margin-inline: auto; padding-top: calc(var(--header-h) + clamp(1.5rem, 5vh, 3rem)); padding-bottom: clamp(7rem, 13vh, 10rem); }
.hero__content { max-width: 760px; }
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.7rem, 5.6vw, 5.4rem); line-height: 1; letter-spacing: -.03em; text-transform: uppercase; color: #fff; max-width: 15ch; }
.hero__title .grad { background: linear-gradient(100deg, var(--red-bright), var(--amber)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__title .sub-line { display: block; margin-top: .55rem; font-weight: 500; font-size: clamp(1.15rem, 2.1vw, 1.85rem); letter-spacing: -.01em; text-transform: none; color: var(--on-dark-dim); }
.hero__lead { margin-top: 1.6rem; font-size: 1.18rem; line-height: 1.6; color: var(--on-dark-dim); max-width: 50ch; }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__chips { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.hero__chip { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--hair-2); backdrop-filter: blur(6px); font-family: var(--f-mono); font-size: .73rem; letter-spacing: .04em; color: var(--on-dark); }
.hero__chip svg { width: 15px; height: 15px; color: var(--red-bright); }

/* Glass stat bar overlapping hero bottom */
.hero-stats { position: relative; z-index: 2; margin-top: -5.5rem; }
.hero-stats__inner {
	width: min(100% - (var(--gutter) * 2), var(--wrap-lg)); margin-inline: auto;
	display: grid; grid-template-columns: repeat(4, 1fr);
	background: rgba(20,22,26,.6); backdrop-filter: blur(16px) saturate(1.3);
	border: 1px solid var(--hair-2); border-radius: var(--r-lg);
	box-shadow: var(--shadow); overflow: hidden;
}
.hero-stat { padding: 1.75rem 1.9rem; border-right: 1px solid var(--hair); }
.hero-stat:last-child { border-right: 0; }
.hero-stat__num { font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 3.4vw, 3rem); color: #fff; line-height: 1; letter-spacing: -.02em; }
.hero-stat__num .u { color: var(--red-bright); }
.hero-stat__label { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: .6rem; }

.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2; display: grid; place-items: center; gap: .5rem; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--on-dark-mute); }
.scroll-cue__line { width: 1px; height: 42px; background: linear-gradient(var(--red-bright), transparent); animation: cue 2s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity:.5;} 50% { transform: scaleY(1); opacity:1; } }

/* ----- Marquee ---------------------------------------------------------- */
.marquee { overflow: hidden; border-block: 1px solid var(--hair); background: var(--black); padding-block: 1.4rem; }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 3.5rem; font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .04em; color: var(--on-dark-mute); }
.marquee__item .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   CARDS / SECTIONS
   ========================================================================== */
/* Brand cards */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.brand-card { position: relative; padding: 2rem; border-radius: var(--r-lg); background: linear-gradient(180deg, var(--ink-800), var(--ink-900)); border: 1px solid var(--hair); overflow: hidden; transition: transform .35s var(--ease), border-color .35s; }
.brand-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(226,36,24,.6), transparent 45%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s; }
.brand-card:hover { transform: translateY(-6px); }
.brand-card:hover::after { opacity: 1; }
.brand-card__top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.35rem; position: relative; z-index: 1; }
.brand-card__mono { flex: none; width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; font-family: var(--f-display); font-weight: 900; font-size: 1.7rem; color: #fff; background: linear-gradient(150deg, var(--ink-700), var(--black)); border: 1px solid var(--hair-2); transition: .35s var(--ease); }
.brand-card:hover .brand-card__mono { background: linear-gradient(150deg, var(--red-bright), var(--red-deep)); box-shadow: var(--shadow-red); border-color: transparent; }
.brand-card__name { font-family: var(--f-display); font-weight: 800; font-size: 1.55rem; color: #fff; text-transform: uppercase; letter-spacing: -.01em; line-height: 1; }
.brand-card__origin { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red-bright); margin-top: .4rem; }
.brand-card p { color: var(--on-dark-dim); font-size: .97rem; position: relative; z-index: 1; }
.brand-card__tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.2rem; position: relative; z-index: 1; }
.brand-card__tags span { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .07em; text-transform: uppercase; color: var(--on-dark-dim); padding: .34rem .68rem; border: 1px solid var(--hair); border-radius: 999px; }
.brand-card__ghost { position: absolute; right: .2rem; bottom: -2.2rem; font-family: var(--f-display); font-weight: 900; font-size: 8rem; line-height: 1; color: rgba(255,255,255,.035); pointer-events: none; user-select: none; }
.brand-card__link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.3rem; font-family: var(--f-mono); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.brand-card__link svg { width: 1rem; transition: transform .25s var(--ease); }
.brand-card:hover .brand-card__link svg { transform: translateX(5px); }

/* Feature / why cards */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.feature { padding: 1.75rem; border-radius: var(--r); background: rgba(255,255,255,.025); border: 1px solid var(--hair); transition: transform .3s var(--ease), background .3s; }
.feature:hover { transform: translateY(-5px); background: rgba(255,255,255,.05); }
.feature__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(150deg, rgba(226,36,24,.2), rgba(226,36,24,.05)); border: 1px solid rgba(226,36,24,.3); color: var(--red-bright); margin-bottom: 1.2rem; }
.feature__icon svg { width: 24px; height: 24px; }
.feature__num { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(150deg, rgba(226,36,24,.2), rgba(226,36,24,.05)); border: 1px solid rgba(226,36,24,.3); color: var(--red-bright); font-family: var(--f-display); font-weight: 800; font-size: 1.25rem; margin-bottom: 1.2rem; }
.feature__title { font-family: var(--f-display); font-weight: 800; font-size: 1.12rem; color: #fff; text-transform: uppercase; line-height: 1.12; letter-spacing: -.01em; }
.feature p { color: var(--on-dark-dim); font-size: .92rem; margin-top: .6rem; }

/* Process / layanan */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.process__step { position: relative; padding: 2rem; border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.process__step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.process__num { font-family: var(--f-display); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--paper-2); -webkit-text-stroke: 1px var(--line); }
.process__step:hover .process__num { color: transparent; -webkit-text-stroke: 1.5px var(--red); }
.process__title { font-family: var(--f-display); font-weight: 800; font-size: 1.35rem; margin: 1rem 0 .65rem; letter-spacing: -.01em; }
.process__desc { color: var(--ink-soft); font-size: .98rem; }

/* Section heading row (with action) */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.head-row .section-head { margin-bottom: 0; }

/* Clients */
.client-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.client { display: grid; place-items: center; text-align: center; gap: .55rem; min-height: 130px; padding: 1.5rem 1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); transition: transform .3s var(--ease), box-shadow .3s; }
.client:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.client__mark { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: var(--ink); color: #fff; font-family: var(--f-display); font-weight: 900; font-size: 1.1rem; }
.client__name { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); line-height: 1.35; }
.client__loc { color: var(--red); }

/* ----- Sector tiles ----------------------------------------------------- */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.sector-tile { position: relative; aspect-ratio: 3/4; border-radius: var(--r-lg); overflow: hidden; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; isolation: isolate; }
.sector-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.sector-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.sector-tile:hover img { transform: scale(1.09); }
.sector-tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(8,9,11,.94), rgba(8,9,11,.1) 58%, rgba(8,9,11,.4)); }
.sector-tile__body { padding: 1.5rem 1.4rem; width: 100%; }
.sector-tile__icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(226,36,24,.9); color: #fff; margin-bottom: .9rem; box-shadow: var(--shadow-red); }
.sector-tile__icon svg { width: 22px; height: 22px; }
.sector-tile__name { font-family: var(--f-display); font-weight: 800; font-size: 1.32rem; text-transform: uppercase; letter-spacing: -.01em; }
.sector-tile__desc { color: rgba(255,255,255,.78); font-size: .88rem; margin-top: .45rem; }
.sector-tile__more { display: inline-flex; align-items: center; gap: .4rem; margin-top: .9rem; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; opacity: 0; transform: translateY(6px); transition: .3s var(--ease); }
.sector-tile:hover .sector-tile__more { opacity: 1; transform: none; }
.sector-tile__more svg { width: 14px; color: var(--red-bright); }

/* ----- Featured unit showcase ------------------------------------------ */
.fu-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.fu-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3.1; }
.fu-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.featured-unit:hover .fu-media img { transform: scale(1.05); }
.fu-badge { position: absolute; top: 1.1rem; left: 1.1rem; background: linear-gradient(180deg, var(--red-bright), var(--red)); color: #fff; font-family: var(--f-mono); font-weight: 600; font-size: .82rem; padding: .45rem .85rem; border-radius: 999px; box-shadow: var(--shadow-red); }
.fu-brand { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red-bright); }
.fu-info h2 { font-size: clamp(2rem, 3.6vw, 3rem); color: #fff; text-transform: uppercase; margin-top: .6rem; }
.fu-info > p { color: var(--on-dark-dim); margin-top: 1rem; }
.fu-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1.6rem 0; }
.fu-spec { padding: 1.1rem; border: 1px solid var(--hair); border-radius: var(--r); background: rgba(255,255,255,.03); }
.fu-spec__v { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; color: #fff; line-height: 1; letter-spacing: -.01em; }
.fu-spec__k { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: .5rem; }
.fu-price { font-family: var(--f-mono); font-weight: 600; font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; }
.fu-price del { color: var(--on-dark-mute); font-weight: 400; font-size: 1.05rem; margin-right: .5rem; }
.fu-price ins { text-decoration: none; color: var(--red-bright); }
.fu-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ----- CTA band with image --------------------------------------------- */
.cta-band { position: relative; overflow: hidden; color: #fff; isolation: isolate; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(157,17,9,.94), rgba(226,36,24,.78) 55%, rgba(8,9,11,.6)); }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(3rem, 6vw, 5rem); }
.cta-band h2 { color: #fff; font-size: var(--fs-h2); max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.9); margin-top: .7rem; }

/* Split feature (image + text) */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3.4; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.split:hover .split__media img { transform: scale(1.05); }
.split__media .badge { position: absolute; left: 1.1rem; bottom: 1.1rem; display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: 999px; background: rgba(8,9,11,.6); backdrop-filter: blur(8px); border: 1px solid var(--hair-2); font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; }

/* ==========================================================================
   PRODUCTS (cards used on home + shop)
   ========================================================================== */
.product-rail .products, .woocommerce ul.products, ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.woocommerce ul.products li.product, ul.products li.product { width: auto; float: none; margin: 0; clear: none; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }

.product-card { position: relative; display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: #d9d4c8; }
.product-card__media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--ink-800); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.07); }
.product-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,9,11,.45), transparent 45%); opacity: 0; transition: opacity .35s; }
.product-card:hover .product-card__media::after { opacity: 1; }
.product-card__brand-tag { position: absolute; left: 1rem; top: 1rem; z-index: 2; background: rgba(8,9,11,.6); backdrop-filter: blur(6px); border: 1px solid var(--hair-2); color: #fff; font-family: var(--f-mono); font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px; }
.product-card__flash { position: absolute; right: 1rem; top: 1rem; z-index: 2; background: var(--red); color: #fff; font-family: var(--f-mono); font-size: .64rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 999px; }
.product-card__body { padding: 1.4rem 1.45rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-card__brand { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: .5rem; }
.product-card__title { font-family: var(--f-display); font-weight: 800; font-size: 1.18rem; line-height: 1.12; letter-spacing: -.01em; }
.product-card__title a:hover { color: var(--red); }
.product-card__spec { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--f-mono); font-size: .78rem; color: var(--ink-soft); margin-top: .7rem; padding: .35rem .7rem; background: var(--paper); border-radius: 999px; align-self: flex-start; }
.product-card__spec svg { color: var(--red); flex: none; }
.product-card__foot { margin-top: auto; padding-top: 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.product-card__price { font-family: var(--f-mono); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.product-card__price del { color: #9b978c; font-weight: 400; margin-right: .35rem; }
.product-card__price ins { text-decoration: none; color: var(--red); }
.price-quote { color: var(--red); font-size: .82rem; letter-spacing: .03em; }
.product-card__cta { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff; flex: none; transition: .25s var(--ease); }
.product-card__cta:hover { background: var(--red); transform: translateX(3px); }
.product-card__cta svg { width: 18px; height: 18px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--black); color: var(--on-dark-dim); position: relative; }
.site-footer__top { padding-block: clamp(3.5rem, 6vw, 5.5rem); border-top: 1px solid var(--hair); }
.site-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer-brand .site-logo-text { color: #fff; }
.footer-brand p { margin-top: 1.2rem; max-width: 36ch; color: var(--on-dark-dim); }
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer-social a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--hair-2); border-radius: 11px; color: #fff; transition: .2s; }
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col__title { font-family: var(--f-mono); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .9rem; align-items: flex-start; line-height: 1.5; }
.footer-contact svg { width: 18px; height: 18px; flex: none; color: var(--red-bright); margin-top: 3px; }
.site-footer__bottom { padding-block: 1.6rem; border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; justify-content: space-between; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .03em; }
.site-footer__bottom a:hover { color: #fff; }

/* ==========================================================================
   INNER PAGE HERO
   ========================================================================== */
.page-hero { position: relative; color: var(--on-dark); overflow: hidden; isolation: isolate; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, var(--black) 12%, rgba(8,9,11,.7) 50%, rgba(8,9,11,.4)), linear-gradient(0deg, var(--ink-900), transparent 60%); }
.page-hero__inner { padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)); padding-bottom: clamp(2.5rem, 6vw, 4.5rem); position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 1.1rem; }
.page-hero__title { font-family: var(--f-display); font-weight: 900; font-size: var(--fs-h1); color: #fff; text-transform: uppercase; letter-spacing: -.02em; }
.page-hero__lead { margin-top: 1.1rem; color: var(--on-dark-dim); font-size: 1.15rem; max-width: 58ch; }
.breadcrumbs, .woocommerce-breadcrumb { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-dim); margin-bottom: 1.2rem; }
.breadcrumbs a:hover, .woocommerce-breadcrumb a:hover { color: var(--red-bright); }

/* ==========================================================================
   CONTENT / PROSE / ABOUT / BLOG
   ========================================================================== */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { font-size: var(--fs-h3); margin-top: 2.4rem; }
.prose h3 { margin-top: 1.7rem; }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: 1.5rem; margin-bottom: .55rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .65em; width: 9px; height: 9px; border-radius: 3px; background: var(--red); }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

.vmv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vmv { padding: 2rem; border-radius: var(--r-lg); background: linear-gradient(180deg, var(--ink-800), var(--ink-900)); border: 1px solid var(--hair); }
.vmv__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(150deg, rgba(226,36,24,.2), rgba(226,36,24,.05)); border: 1px solid rgba(226,36,24,.3); color: var(--red-bright); margin-bottom: 1.2rem; }
.vmv__icon svg { width: 24px; }
.vmv h3 { color: #fff; text-transform: uppercase; font-size: 1.4rem; }
.vmv p { color: var(--on-dark-dim); margin-top: .8rem; font-size: .98rem; }

.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0,380px)); gap: 1.5rem; justify-content: center; }
.team-card { border-radius: var(--r-lg); overflow: hidden; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.team-card:hover { transform: translateY(-5px); }
.team-card__photo { aspect-ratio: 4/4.4; background: linear-gradient(160deg, var(--paper-2), var(--line)); display: grid; place-items: center; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__photo .ph { font-family: var(--f-display); font-weight: 900; font-size: 3rem; color: rgba(0,0,0,.12); }
.team-card__body { padding: 1.4rem 1.5rem; border-top: 3px solid var(--red); }
.team-card__name { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; text-transform: uppercase; }
.team-card__role { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-top: .35rem; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.post-card { display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--ink-800); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__thumb img { transform: scale(1.06); }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--red); margin-bottom: .7rem; }
.post-card__title { font-family: var(--f-display); font-weight: 800; font-size: 1.22rem; line-height: 1.14; letter-spacing: -.01em; }
.post-card__title a:hover { color: var(--red); }
.post-card__excerpt { color: var(--ink-soft); font-size: .94rem; margin-top: .75rem; }
.post-card__more { margin-top: auto; padding-top: 1.1rem; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); display: inline-flex; gap: .4rem; }

.single-post .entry-content { max-width: 740px; }
.single-post .entry-content > * + * { margin-top: 1.25rem; }

.pagination, .woocommerce-pagination ul { display: flex; gap: .45rem; justify-content: center; margin-top: 3.5rem; list-style: none; padding: 0; }
.pagination .page-numbers, .woocommerce-pagination .page-numbers { display: grid; place-items: center; min-width: 46px; height: 46px; padding: 0 .7rem; border: 1px solid var(--line); border-radius: 11px; font-family: var(--f-mono); font-size: .85rem; background: var(--card); }
.pagination .page-numbers.current, .woocommerce-pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination a.page-numbers:hover, .woocommerce-pagination a.page-numbers:hover { border-color: var(--ink); }

/* ==========================================================================
   FORMS / CONTACT
   ========================================================================== */
.field-label, label { font-family: var(--f-mono); font-size: .73rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: .5rem; }
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=password], input[type=number], input[type=search], textarea, select {
	width: 100%; padding: .95rem 1.1rem; background: var(--card); color: var(--ink); border: 1px solid var(--line); border-radius: var(--r-sm); font-family: var(--f-body); font-size: 1rem; transition: .18s;
}
input:focus, textarea:focus, select:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 4px rgba(226,36,24,.12); }
textarea { min-height: 150px; resize: vertical; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm); }
.contact-form { display: grid; gap: 1.15rem; }
.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.contact-info__item { display: flex; gap: .9rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.contact-info__item:last-child { border-bottom: 0; }
.contact-info__item .ci-ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--paper); color: var(--red); flex: none; }
.contact-info__item h4 { font-family: var(--f-mono); font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.contact-info__item p { margin-top: .25rem; font-size: 1.02rem; }
.map-embed { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   WOOCOMMERCE (premium light store)
   ========================================================================== */
.wc-page { background: var(--paper); }
.woocommerce-result-count { font-family: var(--f-mono); font-size: .8rem; color: var(--ink-soft); margin: 0; }
.shop-toolbar { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.woocommerce-ordering { margin-left: auto; }
.woocommerce-ordering select { width: auto; }

/* Single product */
.single-product div.product { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.single-product .woocommerce-product-gallery { position: relative; }
.single-product .woocommerce-product-gallery__wrapper { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.single-product .woocommerce-product-gallery__image img { border-radius: var(--r-lg); }
.single-product .product_title { font-size: var(--fs-h1); text-transform: uppercase; margin-bottom: .4rem; letter-spacing: -.02em; }
.woocommerce-product-summary__brand { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: .8rem; display: inline-block; }
.single-product p.price, .single-product .price { font-family: var(--f-mono); font-weight: 600; font-size: 1.6rem; color: var(--ink); margin: 1rem 0 1.25rem; }
.single-product .price del { color: #9b978c; font-weight: 400; font-size: 1.1rem; }
.single-product .price ins { text-decoration: none; color: var(--red); }
.woocommerce-product-details__short-description { color: var(--ink-soft); margin-bottom: 1.5rem; }
.single-product form.cart { display: flex; flex-wrap: wrap; gap: .75rem; align-items: stretch; margin: 1.25rem 0; }
.single-product form.cart .quantity input { width: 88px; min-height: 54px; text-align: center; }
.perintis-inquire { display: flex; flex-wrap: wrap; gap: .7rem; margin: .5rem 0 1.25rem; }
.perintis-inquire .perintis-wa-single { flex: 1 1 240px; width: auto; }
.perintis-inquire .perintis-call { flex: 0 0 auto; }
.product-card__cta--wa { background: linear-gradient(180deg,#28c062,#1faa54); }
.product-card__cta--wa:hover { background: #178043; }
.product-trust { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.25rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.product-trust li { display: flex; align-items: center; gap: .7rem; font-size: .93rem; color: var(--ink-soft); }
.product-trust svg { color: var(--red); flex: none; }
.single-product .product_meta { margin-top: 1.5rem; font-family: var(--f-mono); font-size: .8rem; color: var(--ink-soft); }
.single-product .product_meta > span { display: block; padding: .3rem 0; }

.woocommerce-tabs { grid-column: 1 / -1; margin-top: clamp(2.5rem,4vw,4rem); }
.woocommerce-tabs ul.tabs { display: flex; gap: .4rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0 0 1.75rem; border-bottom: 1px solid var(--line); }
.woocommerce-tabs ul.tabs li { margin-bottom: -1px; }
.woocommerce-tabs ul.tabs li a { display: block; padding: .85rem 1.25rem; font-family: var(--f-mono); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 2px solid transparent; }
.woocommerce-tabs ul.tabs li.active a { color: var(--ink); border-bottom-color: var(--red); }
.shop_attributes { width: 100%; border-collapse: collapse; font-family: var(--f-mono); font-size: .9rem; background: var(--card); border-radius: var(--r); overflow: hidden; }
.shop_attributes th, .shop_attributes td { text-align: left; padding: .9rem 1.1rem; border-bottom: 1px solid var(--line); }
.shop_attributes th { color: var(--ink-soft); font-weight: 600; width: 36%; background: var(--paper-2); text-transform: uppercase; letter-spacing: .05em; font-size: .76rem; }

.related.products, .upsells.products { grid-column: 1 / -1; margin-top: clamp(3rem,5vw,4.5rem); }
.related.products > h2, .upsells.products > h2 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: var(--fs-h3); margin-bottom: 1.75rem; }

/* Cart & checkout (classic + block) */
.cart_totals h2, .woocommerce-checkout h3, .woocommerce-cart h1, .woocommerce-checkout h1 { font-family: var(--f-display); text-transform: uppercase; }
table.cart, table.shop_table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
table.cart th, table.shop_table th { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); text-align: left; padding: 1rem; background: var(--paper-2); }
table.cart td, table.shop_table td { padding: 1rem; border-top: 1px solid var(--line); vertical-align: middle; }
table.cart img { width: 76px; border-radius: 8px; }
.cart-collaterals { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
@media (min-width: 861px) { .cart-collaterals { grid-template-columns: 1fr 440px; justify-content: end; } }
.cart_totals { background: var(--ink-900); color: var(--on-dark); padding: 2rem; border-radius: var(--r-lg); }
.cart_totals h2 { color: #fff; margin-bottom: 1rem; }
.cart_totals table { width: 100%; }
.cart_totals th, .cart_totals td { padding: .8rem 0; border-bottom: 1px solid var(--hair); font-family: var(--f-mono); }
.cart_totals th { color: var(--on-dark-dim); font-weight: 500; text-align: left; }
.cart_totals .order-total td { color: #fff; font-size: 1.2rem; font-weight: 600; }
.wc-proceed-to-checkout { margin-top: 1.25rem; }
.wc-proceed-to-checkout .checkout-button { width: 100%; }

.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .button {
	background: var(--ink); color: #fff; border: 0; border-radius: var(--r-sm); font-family: var(--f-mono); font-weight: 600; font-size: .79rem; letter-spacing: .08em; text-transform: uppercase; padding: .95rem 1.5rem; display: inline-block; cursor: pointer; transition: .22s var(--ease);
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { background: #000; transform: translateY(-2px); }
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #place_order, .actions .button, .checkout-button {
	background: linear-gradient(180deg, var(--red-bright), var(--red)); color: #fff; padding: 1.05rem 1.7rem; letter-spacing: .1em; box-shadow: var(--shadow-red);
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #place_order:hover, .checkout-button:hover { transform: translateY(-2px); }
.woocommerce button.single_add_to_cart_button.alt, .woocommerce .single_add_to_cart_button { background: var(--ink); flex: 1; min-width: 200px; box-shadow: none; }
.woocommerce button.single_add_to_cart_button.alt:hover, .woocommerce .single_add_to_cart_button:hover { background: #000; }
.quantity input.qty { width: 72px; text-align: center; }

.woocommerce-checkout .col2-set { display: grid; gap: 2rem; }
@media (min-width: 861px) { .checkout.woocommerce-checkout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; align-items: start; } .checkout #customer_details { grid-column: 1; } .checkout #order_review_heading, .checkout #order_review { grid-column: 2; } }
#order_review { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.75rem; position: sticky; top: calc(var(--header-h) + 16px); box-shadow: var(--shadow-sm); }
.woocommerce-checkout .form-row { margin-bottom: 1rem; }

.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-notices-wrapper > * { border-left: 3px solid var(--red); background: var(--card); border-radius: var(--r-sm); padding: 1rem 1.25rem; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm); font-size: .95rem; list-style: none; }
.woocommerce-message { border-left-color: #1faa54; }

.woocommerce-order { max-width: 840px; }
.woocommerce-order-overview { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; list-style: none; padding: 0; margin: 1.75rem 0; }
.woocommerce-order-overview li { background: var(--card); padding: 1.2rem 1.3rem; font-family: var(--f-mono); font-size: .8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }
.woocommerce-order-overview li strong { display: block; margin-top: .4rem; font-size: 1rem; color: var(--ink); text-transform: none; letter-spacing: 0; }
.woocommerce-thankyou-order-received { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: var(--fs-h2); }
.star-rating { color: var(--red); }
.select2-container .select2-selection--single { height: 54px; border: 1px solid var(--line); border-radius: var(--r-sm); }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 54px; padding-left: 1.1rem; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 52px; }

/* ==========================================================================
   MOTION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
[data-stagger].is-in > * { opacity: 1; transform: none; }
[data-stagger].is-in > *:nth-child(2) { transition-delay: .08s; }
[data-stagger].is-in > *:nth-child(3) { transition-delay: .16s; }
[data-stagger].is-in > *:nth-child(4) { transition-delay: .24s; }
[data-stagger].is-in > *:nth-child(5) { transition-delay: .32s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
	.hero-stats__inner { grid-template-columns: 1fr 1fr; }
	.hero-stat:nth-child(2) { border-right: 0; }
	.hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--hair); }
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.sector-grid { grid-template-columns: repeat(2, 1fr); }
	.fu-grid { grid-template-columns: 1fr; }
	.client-grid { grid-template-columns: repeat(3, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
	.contact-grid { grid-template-columns: 1fr; }
	.split { grid-template-columns: 1fr; }
	.split__media { aspect-ratio: 16/10; }
}
@media (max-width: 860px) {
	:root { --header-h: 70px; }
	.nav-toggle { display: flex; }
	.header-cta { display: none; }
	.site-nav { position: fixed; inset: var(--header-h) 0 0 auto; width: min(86vw, 380px); background: rgba(8,9,11,.97); backdrop-filter: blur(16px); border-left: 1px solid var(--hair); transform: translateX(100%); transition: transform .35s var(--ease); padding: 1.5rem var(--gutter); overflow-y: auto; margin-left: 0; }
	body.nav-open .site-nav { transform: translateX(0); }
	body.nav-open { overflow: hidden; }
	.site-nav__menu { flex-direction: column; align-items: stretch; gap: .2rem; }
	.site-nav__menu a { display: block; padding: 1rem 1rem; font-size: .98rem; border-bottom: 1px solid var(--hair); opacity: 1; }
	.site-nav__menu a::after { display: none; }
	body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
	body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.brand-grid, .process, .post-grid, .vmv-grid { grid-template-columns: 1fr; }
	.team-grid { grid-template-columns: 1fr; }
	ul.products, .woocommerce ul.products { grid-template-columns: 1fr 1fr; }
	.single-product div.product { grid-template-columns: 1fr; }
	#order_review { position: static; }
	.wa-float .wa-float__txt { display: inline; }
}
@media (max-width: 560px) {
	.hero-stats__inner { grid-template-columns: 1fr; }
	.hero-stat { border-right: 0; border-bottom: 1px solid var(--hair); }
	.hero-stat:last-child { border-bottom: 0; }
	.feature-grid, .client-grid { grid-template-columns: 1fr 1fr; }
	.sector-grid { grid-template-columns: 1fr 1fr; }
	.fu-specs { grid-template-columns: repeat(3, 1fr); }
	.contact-form .row-2 { grid-template-columns: 1fr; }
	.cta-band__inner { flex-direction: column; align-items: flex-start; }
	ul.products, .woocommerce ul.products { grid-template-columns: 1fr; }
}

/* Screenshot mode: render full page statically */
body.shotmode .hero { min-height: 0; height: 720px; }
body.shotmode .hero__media img { animation: none; transform: scale(1); }
body.shotmode .reveal, body.shotmode [data-stagger] > * { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	.reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
	.hero__media img { animation: none; transform: scale(1); }
}

/* ==========================================================================
   REFERENCE-STYLE HOME (dark, cinematic, structured) — v8
   ========================================================================== */
.site-header__phone { display: flex; align-items: center; gap: .7rem; }
.site-header__phone .ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(226,36,24,.5); color: var(--red-bright); }
.site-header__phone .ic svg { width: 18px; height: 18px; }
.site-header__phone small { display: block; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-dim); }
.site-header__phone b { font-family: var(--f-display); font-weight: 800; font-size: 1.15rem; color: #fff; letter-spacing: .01em; }

/* HERO */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background:
	linear-gradient(90deg, rgba(7,7,9,.97) 0%, rgba(7,7,9,.85) 30%, rgba(7,7,9,.35) 58%, rgba(7,7,9,.6) 100%),
	linear-gradient(0deg, #07070a 0%, transparent 38%); }
.hero__inner { width: min(100% - (var(--gutter)*2), var(--wrap-lg)); margin-inline: auto; padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: 8.5rem; }
.hero__content { max-width: 620px; }
.hero__badge { display: inline-block; border: 1px solid rgba(255,255,255,.35); padding: .5rem 1.1rem; font-family: var(--f-mono); font-weight: 600; letter-spacing: .22em; text-transform: uppercase; font-size: .7rem; margin-bottom: 1.6rem; }
.hero__title { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.9rem, 6.4vw, 5.6rem); line-height: .96; letter-spacing: -.02em; text-transform: uppercase; color: #fff; }
.hero__title .red { display: block; color: var(--red); }
.hero__lead { margin-top: 1.4rem; font-size: 1.15rem; line-height: 1.6; color: var(--on-dark-dim); max-width: 46ch; }
.hero__actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__dots { display: flex; gap: .5rem; margin-top: 2.2rem; }
.hero__dots span { width: 26px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.3); }
.hero__dots span.is-active { width: 42px; background: var(--red); }

/* Hero feature bar (overlapping) */
.hero-features { position: relative; z-index: 6; margin-top: -5.5rem; }
.hero-features__inner { width: min(100% - (var(--gutter)*2), var(--wrap-lg)); margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(16,17,19,.94); backdrop-filter: blur(8px); border: 1px solid var(--hair); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.hfeat { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.7rem 1.8rem; border-right: 1px solid var(--hair); }
.hfeat:last-child { border-right: 0; }
.hfeat__ic { flex: none; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: rgba(226,36,24,.12); border: 1px solid rgba(226,36,24,.3); color: var(--red-bright); }
.hfeat__ic svg { width: 24px; height: 24px; }
.hfeat h4 { font-family: var(--f-display); font-weight: 800; font-size: 1.02rem; text-transform: uppercase; color: #fff; letter-spacing: -.01em; }
.hfeat p { color: var(--on-dark-dim); font-size: .86rem; margin-top: .35rem; }

/* Brand strip */
.brandstrip { padding-block: clamp(2.5rem, 4vw, 3.5rem); border-bottom: 1px solid var(--hair); }
.brandstrip__logos { display: flex; align-items: center; justify-content: space-around; gap: 2.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.brandstrip__logos span { font-family: var(--f-display); font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: .02em; color: #71757d; transition: color .25s; }
.brandstrip__logos span:hover { color: #fff; }

/* Catalog */
.catalog__grid { display: grid; grid-template-columns: 340px 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.catalog__intro p { color: var(--on-dark-dim); margin: 1.1rem 0 1.8rem; }
.catalog__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* Product card (reference style) */
.product-card { background: linear-gradient(180deg, var(--ink-800), var(--ink-900)); border: 1px solid var(--hair); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.product-card:hover { transform: translateY(-6px); border-color: var(--hair-2); box-shadow: var(--shadow); }
.product-card__media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__tag { position: absolute; top: .85rem; right: .85rem; background: var(--red); color: #fff; font-family: var(--f-mono); font-weight: 600; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; padding: .32rem .65rem; border-radius: 4px; }
.product-card__body { padding: 1.25rem 1.3rem 0; display: flex; flex-direction: column; flex: 1; }
.product-card__title { font-family: var(--f-display); font-weight: 800; font-size: 1.18rem; text-transform: uppercase; color: #fff; letter-spacing: -.01em; }
.product-card__title a { color: #fff; }
.product-card__title a:hover { color: var(--red-bright); }
.product-card__meta { display: flex; gap: 1.3rem; margin: .8rem 0; }
.product-card__meta span { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--f-mono); font-size: .76rem; color: var(--on-dark-dim); }
.product-card__meta svg { width: 15px; height: 15px; color: var(--on-dark-mute); }
.product-card__price { font-family: var(--f-display); font-weight: 800; font-size: 1.35rem; color: var(--red-bright); margin-bottom: 1rem; }
.product-card__price del { color: var(--on-dark-mute); font-weight: 400; font-size: .95rem; margin-right: .4rem; }
.product-card__price ins { text-decoration: none; }
.product-card__detail { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding: .95rem 1.3rem; margin-inline: -1.3rem; border-top: 1px solid var(--hair); font-family: var(--f-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; transition: background .25s; }
.product-card__detail:hover { background: rgba(226,36,24,.12); color: var(--red-bright); }
.product-card__detail svg { width: 16px; }

/* Stats band */
.statband { position: relative; background: linear-gradient(90deg, #1c0b0a 0%, #0c0c0e 55%); border-block: 1px solid var(--hair); overflow: hidden; }
.statband::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 8% 50%, rgba(226,36,24,.18), transparent 60%); }
.statband__inner { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: clamp(2.5rem, 4vw, 3.5rem); }
.statband__item { display: flex; align-items: center; gap: 1rem; justify-content: center; }
.statband__ic { color: var(--red-bright); flex: none; }
.statband__ic svg { width: 42px; height: 42px; }
.statband__num { font-family: var(--f-display); font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; line-height: 1; }
.statband__lbl { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: .4rem; }

/* Why us */
.why__grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: center; }
.why__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.why-card { padding: 1.6rem; border: 1px solid var(--hair); border-radius: var(--r); background: rgba(255,255,255,.025); transition: transform .3s var(--ease), background .3s; }
.why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.05); }
.why-card__ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(226,36,24,.12); border: 1px solid rgba(226,36,24,.3); color: var(--red-bright); margin-bottom: 1rem; }
.why-card__ic svg { width: 22px; height: 22px; }
.why-card h4 { font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; text-transform: uppercase; color: #fff; }
.why-card p { color: var(--on-dark-dim); font-size: .88rem; margin-top: .5rem; }

@media (max-width: 980px) {
	.hero-features__inner { grid-template-columns: 1fr; }
	.hfeat { border-right: 0; border-bottom: 1px solid var(--hair); }
	.catalog__grid, .why__grid { grid-template-columns: 1fr; }
	.catalog__cards { grid-template-columns: repeat(2, 1fr); }
	.statband__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 600px) {
	.catalog__cards { grid-template-columns: 1fr; }
	.why__cards { grid-template-columns: 1fr; }
	.brandstrip__logos { justify-content: center; gap: 1.5rem; }
}

@media (max-width: 860px){ .site-header__phone { display:none; } }

/* ==========================================================================
   DARK UNIFY (v9) — apply the dark reference style to ALL pages
   ========================================================================== */
.section--light { background: var(--ink-900); color: var(--on-dark); }
.section--light-2 { background: var(--black); color: var(--on-dark); }
.wc-page { background: var(--ink-900); }
.section--light h1, .section--light h2, .section--light h3, .section--light h4,
.section--light-2 h1, .section--light-2 h2, .section--light-2 h3,
.wc-page h1, .wc-page h2, .wc-page h3 { color: #fff; }
.section--light p, .section--light-2 p { color: var(--on-dark-dim); }
.section--light .eyebrow, .section--light-2 .eyebrow, .wc-page .eyebrow { color: var(--red-bright); }
.muted { color: var(--on-dark-mute); }

/* Prose (about, single post, plain pages) */
.prose { color: var(--on-dark-dim); }
.prose h2, .prose h3, .prose h4, .prose strong { color: #fff; }
.prose a { color: var(--red-bright); }

/* Post cards */
.post-card { background: linear-gradient(180deg, var(--ink-800), var(--ink-900)); border-color: var(--hair); }
.post-card:hover { box-shadow: var(--shadow); }
.post-card__thumb { background: var(--ink-700); }
.post-card__title a { color: #fff; }
.post-card__excerpt { color: var(--on-dark-dim); }
.post-card__more { color: #fff; }

/* Team cards (about) */
.team-card { background: linear-gradient(180deg, var(--ink-800), var(--ink-900)); border-color: var(--hair); }
.team-card__photo { background: linear-gradient(160deg, var(--ink-700), var(--ink-900)); }
.team-card__photo .ph { color: rgba(255,255,255,.08); }
.team-card__name { color: #fff; }

/* Client cards */
.client { background: linear-gradient(180deg, var(--ink-800), var(--ink-900)); border-color: var(--hair); }
.client__mark { background: var(--red); }
.client__name { color: var(--on-dark-dim); }

/* Process steps */
.process__step { background: linear-gradient(180deg, var(--ink-800), var(--ink-900)); border-color: var(--hair); box-shadow: none; }
.process__num { color: transparent; -webkit-text-stroke: 1px var(--hair-2); }
.process__step:hover .process__num { -webkit-text-stroke: 1.5px var(--red); }
.process__title { color: #fff; }
.process__desc { color: var(--on-dark-dim); }

/* Forms → dark */
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=password],
input[type=number], input[type=search], textarea, select {
	background: var(--ink-800); color: var(--on-dark); border-color: var(--hair-2);
}
input::placeholder, textarea::placeholder { color: var(--on-dark-mute); }
input:focus, textarea:focus, select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(226,36,24,.18); }
label, .field-label { color: var(--on-dark-dim); }

/* Contact */
.contact-card { background: linear-gradient(180deg, var(--ink-800), var(--ink-900)); border-color: var(--hair); }
.contact-info__item { border-color: var(--hair); }
.contact-info__item .ci-ic { background: var(--ink-700); }
.contact-info__item h4 { color: var(--on-dark-dim); }
.contact-info__item p, .contact-info__item a { color: var(--on-dark); }
.map-embed { border-color: var(--hair); }

/* Pagination */
.pagination .page-numbers, .woocommerce-pagination .page-numbers { background: var(--ink-800); border-color: var(--hair); color: var(--on-dark); }
.pagination .page-numbers.current, .woocommerce-pagination .page-numbers.current { background: var(--red); border-color: var(--red); color: #fff; }

/* WooCommerce single product (dark) */
.single-product .product_title { color: #fff; }
.single-product p.price, .single-product .price { color: #fff; }
.single-product .price ins { color: var(--red-bright); }
.single-product .price del { color: var(--on-dark-mute); }
.woocommerce-product-details__short-description { color: var(--on-dark-dim); }
.woocommerce-product-summary__brand { color: var(--red-bright); }
.single-product .woocommerce-product-gallery__wrapper { border: 1px solid var(--hair); }
.product-trust { border-color: var(--hair); }
.product-trust li { color: var(--on-dark-dim); }
.single-product .product_meta { color: var(--on-dark-dim); border-top: 1px solid var(--hair); padding-top: 1rem; }
.woocommerce-tabs ul.tabs { border-color: var(--hair); }
.woocommerce-tabs ul.tabs li a { color: var(--on-dark-dim); }
.woocommerce-tabs ul.tabs li.active a { color: #fff; }
.shop_attributes { background: var(--ink-800); color: var(--on-dark); border: 1px solid var(--hair); }
.shop_attributes th { background: var(--ink-700); color: var(--on-dark-dim); }
.shop_attributes th, .shop_attributes td { border-color: var(--hair); }
.related.products > h2, .upsells.products > h2 { color: #fff; }

/* Shop toolbar / ordering */
.woocommerce-result-count { color: var(--on-dark-dim); }
.woocommerce-ordering select { background: var(--ink-800); color: var(--on-dark); border-color: var(--hair-2); }
.select2-container .select2-selection--single { background: var(--ink-800); border-color: var(--hair-2); }
.select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--on-dark); }

/* Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-notices-wrapper > * {
	background: var(--ink-800); color: var(--on-dark); box-shadow: var(--shadow-sm);
}

/* Quantity */
.quantity input.qty { background: var(--ink-800); color: var(--on-dark); border-color: var(--hair-2); }

/* Breadcrumb on light-turned-dark pages already light; keep */

/* ==========================================================================
   PRODUCT DETAIL (PDP) polish — v10
   ========================================================================== */
.pdp-crumbs { background: var(--black); border-bottom: 1px solid var(--hair); padding-block: 1.1rem; }
.pdp-crumbs .woocommerce-breadcrumb { margin: 0; color: var(--on-dark-dim); }
.pdp-crumbs .woocommerce-breadcrumb a:hover { color: var(--red-bright); }

.single-product div.product { gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.single-product .woocommerce-product-gallery { position: sticky; top: calc(var(--header-h) + 16px); }
.single-product .woocommerce-product-gallery__wrapper { border-radius: var(--r); overflow: hidden; border: 1px solid var(--hair); }
.single-product .product_title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: .35rem; letter-spacing: -.02em; }
.woocommerce-product-summary__brand { font-size: .8rem; letter-spacing: .18em; }

.pdp-status { display: flex; flex-wrap: wrap; gap: .5rem; margin: .2rem 0 1.2rem; }
.pdp-chip { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--f-mono); font-size: .7rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-dim); border: 1px solid var(--hair); border-radius: 999px; padding: .42rem .85rem; }
.pdp-chip--ok { color: #3ddc84; border-color: rgba(61,220,132,.35); }
.pdp-chip--ok .dot { width: 7px; height: 7px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 8px rgba(61,220,132,.7); }

.single-product p.price, .single-product .price { font-size: 1.75rem; margin: 1.1rem 0 .4rem; }
.single-product .price::before { content: "Mulai dari"; display: block; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-mute); margin-bottom: .35rem; font-weight: 400; }

.pdp-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin: 1.5rem 0; }
.pdp-spec { padding: 1.05rem 1.15rem; border: 1px solid var(--hair); border-radius: var(--r); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); }
.pdp-spec__v { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; color: #fff; line-height: 1; letter-spacing: -.01em; }
.pdp-spec__k { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: .55rem; }

@media (max-width: 600px) { .pdp-specs { grid-template-columns: 1fr 1fr; } .single-product .woocommerce-product-gallery { position: static; } }

/* ==========================================================================
   PDP FIXES (v11) — round sale badge, clean tabs, responsiveness
   ========================================================================== */
.single-product div.product { position: relative; }
.woocommerce span.onsale, .single-product .onsale {
	position: absolute; top: 1rem; left: 1rem; z-index: 6;
	width: 64px; height: 64px; min-height: 0; line-height: 1; margin: 0; padding: 0;
	display: grid; place-items: center; border-radius: 50%;
	background: linear-gradient(180deg, var(--red-bright), var(--red)); color: #fff;
	font-family: var(--f-display); font-weight: 800; font-size: 1.02rem; letter-spacing: 0;
	box-shadow: var(--shadow-red); border: 2px solid rgba(255,255,255,.18);
}

/* Tabs — flat dark */
.woocommerce-tabs ul.tabs { background: transparent; border-bottom: 1px solid var(--hair); padding: 0; margin: 0 0 1.75rem; display: flex; flex-wrap: wrap; gap: .2rem; }
.woocommerce-tabs ul.tabs::before { display: none !important; }
.woocommerce-tabs ul.tabs li { background: transparent !important; border: 0 !important; border-radius: 0 !important; margin: 0 !important; padding: 0 !important; }
.woocommerce-tabs ul.tabs li::before, .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce-tabs ul.tabs li a { display: block; color: var(--on-dark-dim); padding: .85rem 1.25rem; border-bottom: 2px solid transparent; font-family: var(--f-mono); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.woocommerce-tabs ul.tabs li.active a, .woocommerce-tabs ul.tabs li a:hover { color: #fff; border-bottom-color: var(--red); }
.woocommerce-tabs .panel, .woocommerce-Tabs-panel { max-width: 880px; color: var(--on-dark-dim); }
.woocommerce-Tabs-panel > h2:first-child { display: none; } /* redundant with the tab label */
.woocommerce-Tabs-panel p { color: var(--on-dark-dim); }
.woocommerce-Tabs-panel > * + * { margin-top: 1rem; }

/* Responsive safety for PDP */
@media (max-width: 860px) {
	.single-product div.product { display: block; }
	.single-product .woocommerce-product-gallery { position: static; margin-bottom: 1.75rem; }
	.single-product .summary { margin-top: 0; }
	.woocommerce span.onsale, .single-product .onsale { width: 54px; height: 54px; font-size: .9rem; }
	.perintis-inquire { flex-direction: column; }
	.perintis-inquire .perintis-wa-single, .perintis-inquire .perintis-call { flex: 1 1 100%; width: 100%; }
}

/* ==========================================================================
   PDP CUSTOM LAYOUT (v12) — full rebuild
   ========================================================================== */
.single-product div.product.pdp { display: block; }
.pdp__main { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }

/* Gallery */
.pdp__gallery { position: sticky; top: calc(var(--header-h) + 16px); }
.pdp__gallery .woocommerce-product-gallery { margin: 0; position: relative; }
.pdp__gallery .woocommerce-product-gallery__wrapper { margin: 0; border: 1px solid var(--hair); border-radius: var(--r-lg); overflow: hidden; }
.pdp__gallery .woocommerce-product-gallery__image img { display: block; }
.pdp__gallery .flex-control-thumbs { display: flex; flex-wrap: wrap; gap: .6rem; margin: .8rem 0 0; padding: 0; list-style: none; }
.pdp__gallery .flex-control-thumbs li { width: 80px; }
.pdp__gallery .flex-control-thumbs img { border: 1px solid var(--hair); border-radius: 10px; cursor: pointer; opacity: .55; transition: .2s; }
.pdp__gallery .flex-control-thumbs img.flex-active, .pdp__gallery .flex-control-thumbs img:hover { opacity: 1; border-color: var(--red); }

/* Info column */
.pdp__brand { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red-bright); }
.pdp__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.9rem); text-transform: uppercase; letter-spacing: -.02em; color: #fff; margin: .5rem 0 1rem; line-height: 1.02; }
.pdp__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.3rem; }
.pdp__short, .pdp__short p { color: var(--on-dark-dim); }
.pdp__short { margin-bottom: 1.5rem; }

.pdp__price-card { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); border: 1px solid var(--hair); border-radius: var(--r); padding: 1.2rem 1.4rem; }
.pdp__price-label { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-mute); }
.pdp__price { font-family: var(--f-display); font-weight: 800; font-size: 1.95rem; color: #fff; margin-top: .35rem; line-height: 1; }
.pdp__price del { color: var(--on-dark-mute); font-weight: 400; font-size: 1.05rem; margin-right: .5rem; }
.pdp__price ins { text-decoration: none; color: var(--red-bright); }
.pdp__price-off { flex: none; background: var(--red); color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; padding: .55rem .85rem; border-radius: var(--r-sm); box-shadow: var(--shadow-red); }
.pdp__price-note { display: flex; gap: .5rem; align-items: flex-start; color: var(--on-dark-dim); font-size: .85rem; margin: .9rem 0 0; }
.pdp__price-note svg { color: #3ddc84; flex: none; margin-top: 2px; }

.pdp__spectiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin: 1.6rem 0; }
.pdp__spectile { padding: 1.05rem 1.15rem; border: 1px solid var(--hair); border-radius: var(--r); background: var(--ink-800); }
.pdp__spectile .v { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; color: #fff; line-height: 1; letter-spacing: -.01em; }
.pdp__spectile .k { font-family: var(--f-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: .5rem; }

.pdp__cta { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.6rem 0; }
.pdp__cta .btn--wa { flex: 1 1 260px; }
.pdp__cta .btn--glass { flex: 0 0 auto; }

.pdp__trust { display: grid; gap: .75rem; padding: 1.4rem 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); margin-bottom: 1.25rem; }
.pdp__trust li { display: flex; align-items: center; gap: .7rem; color: var(--on-dark-dim); font-size: .92rem; }
.pdp__trust svg { color: var(--red-bright); flex: none; }

.pdp__meta { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; font-family: var(--f-mono); font-size: .8rem; color: var(--on-dark-dim); }
.pdp__meta b { color: #fff; }

/* Details */
.pdp__details { margin-top: clamp(3rem, 6vw, 5rem); display: grid; gap: clamp(2.5rem, 5vw, 4rem); max-width: 980px; }
.pdp__block-title { display: flex; flex-direction: column; gap: .7rem; font-family: var(--f-display); font-weight: 800; font-size: var(--fs-h3); text-transform: uppercase; color: #fff; margin-bottom: 1.5rem; }
.pdp__spectable { width: 100%; border-collapse: collapse; border: 1px solid var(--hair); border-radius: var(--r); overflow: hidden; }
.pdp__spectable tr:nth-child(odd) { background: rgba(255,255,255,.025); }
.pdp__spectable th, .pdp__spectable td { text-align: left; padding: .95rem 1.25rem; border-bottom: 1px solid var(--hair); font-size: .95rem; }
.pdp__spectable th { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; color: var(--on-dark-dim); width: 42%; font-weight: 600; }
.pdp__spectable td { color: #fff; font-weight: 600; }
.pdp__spectable tr:last-child th, .pdp__spectable tr:last-child td { border-bottom: 0; }
.pdp__desc { max-width: 760px; }

.single-product .related.products { margin-top: clamp(3rem, 6vw, 5rem); }
.single-product .related.products > h2 { font-size: var(--fs-h3); }

@media (max-width: 920px) {
	.single-product div.product.pdp .pdp__main { grid-template-columns: 1fr; }
	.pdp__gallery { position: static; }
}
@media (max-width: 560px) {
	.pdp__spectiles { grid-template-columns: 1fr 1fr; }
	.pdp__cta { flex-direction: column; }
	.pdp__cta .btn--glass { width: 100%; }
	.pdp__price-card { flex-wrap: wrap; }
}

/* ==========================================================================
   PDP v13 — match EXCAVA reference
   ========================================================================== */
/* Condition pill on gallery */
.pdp__gallery { position: relative; }
.pdp__cond { position: absolute; top: 1rem; right: 1rem; z-index: 6; font-family: var(--f-mono); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(8,9,11,.6); backdrop-filter: blur(6px); border: 1px solid var(--red); border-radius: 999px; padding: .4rem .9rem; }

/* Gallery arrows (flexslider) */
.pdp__gallery .flex-direction-nav { list-style: none; margin: 0; padding: 0; }
.pdp__gallery .flex-direction-nav a { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(8,9,11,.55); border: 1px solid var(--hair-2); color: #fff; backdrop-filter: blur(6px); font-size: 0; z-index: 5; transition: .2s; opacity: 0; }
.pdp__gallery:hover .flex-direction-nav a { opacity: 1; }
.pdp__gallery .flex-direction-nav a::before { font-family: WooCommerce; content: "\e00f"; font-size: 18px; }
.pdp__gallery .flex-direction-nav a.flex-next::before { content: "\e008"; }
.pdp__gallery .flex-prev { left: 12px; }
.pdp__gallery .flex-next { right: 12px; }

/* Info */
.pdp__eyebrow { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red-bright); }
.pdp__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 3rem); text-transform: uppercase; letter-spacing: -.02em; color: #fff; margin: .5rem 0 1.4rem; line-height: 1.02; }

.pdp__metarow { display: flex; flex-wrap: wrap; gap: 1.8rem; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--hair); }
.pdp__meta-item { display: flex; align-items: center; gap: .7rem; }
.pdp__meta-item svg { color: var(--red-bright); flex: none; }
.pdp__meta-item small { display: block; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-mute); }
.pdp__meta-item b { display: block; font-size: 1rem; color: #fff; margin-top: .15rem; }

.pdp__priceblock { margin-bottom: 1.6rem; }
.pdp__price-lbl { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-mute); }
.pdp__price { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--red-bright); margin: .35rem 0 .4rem; line-height: 1; }
.pdp__price del { color: var(--on-dark-mute); font-weight: 400; font-size: 1.1rem; margin-right: .5rem; }
.pdp__price ins { text-decoration: none; }
.pdp__price-note { font-size: .85rem; color: var(--on-dark-dim); }

.pdp__buttons { display: grid; gap: .7rem; margin-bottom: 1rem; }
.btn--outline-light { background: transparent; color: #fff; border-color: var(--hair-2); }
.btn--outline-light:hover { background: rgba(255,255,255,.06); border-color: #fff; transform: translateY(-2px); }

.pdp__links { display: flex; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--hair); }
.pdp__links a { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--f-mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-dim); }
.pdp__links a:hover { color: #fff; }
.pdp__links svg { color: var(--red-bright); }

/* Tabs */
.pdp__tabs { margin-top: clamp(2.5rem, 5vw, 4rem); }
.pdp-tabs__nav { display: flex; flex-wrap: wrap; gap: .3rem; border-bottom: 1px solid var(--hair); margin-bottom: 2rem; }
.pdp-tabs__nav button { background: none; border: 0; cursor: pointer; padding: .9rem 1.3rem; font-family: var(--f-mono); font-size: .78rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--on-dark-dim); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: .2s; }
.pdp-tabs__nav button:hover { color: #fff; }
.pdp-tabs__nav button.is-active { color: #fff; border-bottom-color: var(--red); }

.pdp-tabs__body { display: grid; grid-template-columns: 1fr 360px; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
.pdp-panel { display: none; }
.pdp-panel.is-active { display: block; }

.pdp-spectable { width: 100%; border-collapse: collapse; }
.pdp-spectable tr { border-bottom: 1px solid var(--hair); }
.pdp-spectable tr:nth-child(odd) { background: rgba(255,255,255,.02); }
.pdp-spectable th, .pdp-spectable td { text-align: left; padding: .85rem 1.1rem; font-size: .94rem; }
.pdp-spectable th { font-weight: 500; color: var(--on-dark-dim); width: 44%; }
.pdp-spectable td { color: #fff; font-weight: 600; }

/* Help card */
.pdp-help { background: linear-gradient(180deg, var(--ink-800), var(--ink-900)); border: 1px solid var(--hair); border-radius: var(--r-lg); padding: 1.6rem; position: sticky; top: calc(var(--header-h) + 16px); }
.pdp-help h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.25rem; color: #fff; }
.pdp-help > p { color: var(--on-dark-dim); font-size: .92rem; margin: .6rem 0 1.2rem; }
.pdp-help__contact { display: grid; gap: .7rem; padding-bottom: 1.2rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--hair); }
.pdp-help__contact li { display: flex; align-items: center; gap: .6rem; color: var(--on-dark); font-size: .92rem; }
.pdp-help__contact svg { color: var(--red-bright); flex: none; }
.pdp-help__contact a:hover { color: var(--red-bright); }
.pdp-help__checks { display: grid; gap: .55rem; margin-bottom: 1.4rem; }
.pdp-help__checks li { display: flex; align-items: center; gap: .55rem; color: var(--on-dark-dim); font-size: .88rem; }
.pdp-help__checks svg { color: #3ddc84; flex: none; }

/* Related = Produk Serupa */
.single-product .related.products > h2 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: var(--fs-h3); margin-bottom: 1.5rem; color: #fff; }
.single-product .related.products ul.products { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 920px) {
	.pdp-tabs__body { grid-template-columns: 1fr; }
	.pdp-help { position: static; }
	.single-product .related.products ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.pdp__metarow { gap: 1.1rem; }
	.single-product .related.products ul.products { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PDP custom gallery (.pgal) — v14
   ========================================================================== */
.pdp__main > .pgal { position: sticky; top: calc(var(--header-h) + 16px); align-self: start; }
.pgal__main { position: relative; border: 1px solid var(--hair); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--ink-800); }
.pgal__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pgal__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: rgba(8,9,11,.55); border: 1px solid var(--hair-2); color: #fff; cursor: pointer; backdrop-filter: blur(6px); transition: .2s; opacity: 0; z-index: 4; }
.pgal:hover .pgal__nav { opacity: 1; }
.pgal__nav:hover { background: var(--red); border-color: var(--red); }
.pgal__prev { left: 12px; }
.pgal__prev svg { transform: rotate(180deg); }
.pgal__next { right: 12px; }
.pgal__thumbs { display: flex; gap: .6rem; margin-top: .7rem; flex-wrap: wrap; }
.pgal__thumb { width: 86px; height: 64px; border: 1px solid var(--hair); border-radius: 10px; overflow: hidden; cursor: pointer; padding: 0; background: none; opacity: .55; transition: .2s; }
.pgal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pgal__thumb.is-active, .pgal__thumb:hover { opacity: 1; border-color: var(--red); }

@media (max-width: 920px) { .pdp__main > .pgal { position: static; } }

/* ==========================================================================
   ABOUT PAGE (reference EXCAVA) — v15
   ========================================================================== */
.page-crumbs { background: var(--black); border-bottom: 1px solid var(--hair); padding-top: calc(var(--header-h) + 1.4rem); padding-bottom: 1.3rem; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-dim); }
.page-crumbs a:hover { color: var(--red-bright); }
.page-crumbs span { color: var(--on-dark-mute); margin: 0 .35rem; }
.page-crumbs strong { color: var(--red-bright); font-weight: 600; }

/* Intro */
.about-intro__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-intro__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.05; letter-spacing: -.02em; color: #fff; margin: 1rem 0 1.2rem; }
.about-intro__title .red { color: var(--red); display: block; }
.about-intro__lead { color: var(--on-dark-dim); font-size: 1.08rem; }
.about-intro__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3.3; }
.about-intro__media img { width: 100%; height: 100%; object-fit: cover; }
.about-stats { display: flex; flex-wrap: wrap; margin-top: 2.2rem; }
.about-stat { display: flex; align-items: center; gap: .85rem; padding-right: 1.8rem; margin-right: 1.8rem; border-right: 1px solid var(--hair); }
.about-stat:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.about-stat svg { color: var(--red-bright); flex: none; }
.about-stat .n { display: block; font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; color: #fff; line-height: 1; }
.about-stat .l { display: block; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: .35rem; }

/* Siapa kami split */
.about-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3.2; }
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Nilai kami */
.about-values { display: grid; grid-template-columns: 300px 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
.about-values__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value-card { text-align: center; padding: 1.8rem 1.2rem; border: 1px solid var(--hair); border-radius: var(--r); background: rgba(255,255,255,.025); transition: transform .3s var(--ease), background .3s; }
.value-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.05); }
.value-card__ic { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 14px; background: rgba(226,36,24,.12); border: 1px solid rgba(226,36,24,.3); color: var(--red-bright); margin-bottom: 1.1rem; }
.value-card h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.08rem; text-transform: uppercase; color: #fff; }
.value-card p { color: var(--on-dark-dim); font-size: .88rem; margin-top: .6rem; }

@media (max-width: 980px) {
	.about-intro__grid, .about-split, .about-values { grid-template-columns: 1fr; }
	.about-split__media { order: -1; }
	.about-values__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
	.about-values__cards { grid-template-columns: 1fr; }
	.about-stat { padding-right: 1.1rem; margin-right: 1.1rem; }
}

/* Direksi avatar placeholder */
.team-card__ph { display: grid; place-items: center; width: 104px; height: 104px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid var(--hair-2); color: var(--on-dark-mute); }
.team-card__ph svg { width: 56px; height: 56px; }

/* Direksi: 3 columns + team departments */
.team-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1020px; margin-inline: auto; }
.team-dept-head { text-align: center; margin: clamp(2.5rem, 5vw, 4rem) 0 1.75rem; }
.team-dept-head h3 { font-family: var(--f-display); font-weight: 800; font-size: var(--fs-h3); text-transform: uppercase; color: #fff; margin-top: .8rem; }
.team-dept { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.dept-card { display: flex; gap: .9rem; align-items: flex-start; padding: 1.4rem; border: 1px solid var(--hair); border-radius: var(--r); background: rgba(255,255,255,.025); transition: transform .3s var(--ease), background .3s; }
.dept-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.05); }
.dept-card__ic { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: rgba(226,36,24,.12); border: 1px solid rgba(226,36,24,.3); color: var(--red-bright); }
.dept-card h4 { font-family: var(--f-display); font-weight: 800; font-size: 1rem; text-transform: uppercase; color: #fff; line-height: 1.1; }
.dept-card p { color: var(--on-dark-dim); font-size: .85rem; margin-top: .4rem; }

@media (max-width: 900px) { .team-grid--3 { grid-template-columns: repeat(3, 1fr); } .team-dept { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .team-grid--3 { grid-template-columns: 1fr; max-width: 360px; } .team-dept { grid-template-columns: 1fr; } }

/* Direksi: 4 columns */
.team-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 1080px; margin-inline: auto; }
@media (max-width: 900px) { .team-grid--4 { grid-template-columns: repeat(2, 1fr); max-width: 620px; } }
@media (max-width: 480px) { .team-grid--4 { grid-template-columns: 1fr; max-width: 340px; } }

/* ==========================================================================
   PRODUCT CAROUSEL (home) — autoplay
   ========================================================================== */
.pcarousel { position: relative; }
.pcarousel__track { position: relative; display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0 0 .5rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.pcarousel__track::-webkit-scrollbar { display: none; }
.pcarousel__track > li { flex: 0 0 clamp(260px, 33%, 340px); scroll-snap-align: start; }
.pcarousel__dots { display: flex; gap: .45rem; justify-content: center; margin-top: 1.4rem; }
.pcarousel__dots button { width: 8px; height: 8px; border-radius: 999px; border: 0; background: var(--hair-2); cursor: pointer; padding: 0; transition: .25s var(--ease); }
.pcarousel__dots button.is-active { width: 26px; border-radius: 4px; background: var(--red); }
@media (max-width: 560px) { .pcarousel__track > li { flex-basis: 84%; } }

/* ==========================================================================
   FIX: mobile horizontal overflow (off-canvas menu pushed off-screen)
   ========================================================================== */
html { overflow-x: hidden; }
@media (max-width: 860px) {
	/* Keep the closed drawer INSIDE the viewport (no translateX off-screen) */
	.site-nav { transform: translateY(-6px); opacity: 0; visibility: hidden;
		transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s; }
	body.nav-open .site-nav { transform: none; opacity: 1; visibility: visible; }
}

/* ==========================================================================
   FIX: grid blowout (carousel) + footer wrapping on mobile — v21
   ========================================================================== */
/* Allow grid/flex children with scrolling content to shrink (prevents blowout) */
.catalog__grid > *, .pcarousel { min-width: 0; }
.pcarousel__track { min-width: 0; max-width: 100%; }
.why__grid > *, .about-intro__grid > *, .about-split > *, .pdp__main > *, .pdp-tabs__body > * { min-width: 0; }

/* Footer: single column on phones + wrap long email/address */
.footer-contact li, .footer-contact a, .footer-col a, .site-footer__bottom p { overflow-wrap: anywhere; }
@media (max-width: 700px) {
	.site-footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* Push hamburger toggle to the far right on mobile */
@media (max-width: 860px) {
	.site-header__actions { margin-left: auto; }
}

/* ==========================================================================
   BRAND MARQUEE (autoplay) — v23
   ========================================================================== */
.brand-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.brand-marquee__track { display: flex; align-items: center; gap: 2.6rem; width: max-content; animation: brandscroll 34s linear infinite; }
.brand-marquee:hover .brand-marquee__track { animation-play-state: paused; }
.brand-marquee__item { font-family: var(--f-display); font-weight: 900; font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: .02em; text-transform: uppercase; color: #6c7077; white-space: nowrap; transition: color .25s; }
.brand-marquee__item:hover { color: #fff; }
.brand-marquee__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex: none; }
@keyframes brandscroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .brand-marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* Brand marquee: slower + smaller */
.brand-marquee__track { animation-duration: 60s; gap: 2.1rem; }
.brand-marquee__item { font-size: clamp(1rem, 1.5vw, 1.35rem); letter-spacing: .06em; color: #7b7f86; }
.brand-marquee__dot { width: 5px; height: 5px; }

/* ==========================================================================
   VIDEO SECTION — v25
   ========================================================================== */
.video-section { position: relative; }
.video-frame { position: relative; max-width: 1000px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--hair-2); box-shadow: var(--shadow); background: #000; }
.video-frame::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; box-shadow: 0 0 80px -20px rgba(226,36,24,.4); pointer-events: none; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* Clean video (crop YouTube chrome + block interaction) */
.video-frame__media { position: absolute; inset: 0; }
.video-frame__media iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 130%; height: 130%; border: 0; pointer-events: none; }
.video-frame__cover { position: absolute; inset: 0; z-index: 3; background: transparent; }

/* Why-us: wider text column so heading isn't cramped */
.why__grid { grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.why__grid > :first-child { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 980px) { .why__grid > :first-child { position: static; } }

/* Fix: why-us must stack on mobile (the desktop widen override leaked to mobile) */
@media (max-width: 980px) {
	.why__grid { grid-template-columns: 1fr; }
	.why__grid > :first-child { position: static; }
}
@media (max-width: 600px) {
	.why__cards { grid-template-columns: 1fr; }
}

/* Offset fixed/sticky header below the WP admin bar (logged-in only).
   Safe for sticky again now that the overflow-x guard sits on html (viewport
   scroller): at rest the html margin bump already equals the threshold. */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
	.admin-bar .site-nav { top: calc(var(--header-h) + 46px); }
}

/* ==========================================================================
   ELEGANCE FINISHING PASS — v28
   Restrained micro-details: type, motion, surfaces, states.
   ========================================================================== */

/* Balanced headlines (no orphan words) */
h1, h2, h3, .section-head__title, .hero__title, .pdp__title { text-wrap: balance; }
p { text-wrap: pretty; }

/* Refined text selection & scrollbar */
::selection { background: var(--red); color: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--ink-600) var(--black); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--ink-600); border-radius: 8px; border: 2px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: #3a3e46; }

/* Softer, springier reveals */
.reveal, [data-stagger] > * { transition-duration: .85s; }

/* Buttons: subtle sheen sweep on hover */
.btn { overflow: hidden; }
.btn::after { content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.18), transparent); transform: skewX(-18deg); transition: left .5s var(--ease); pointer-events: none; }
.btn:hover::after { left: 130%; }

/* Consistent card hover language (lift + hairline glow) */
.product-card:hover, .why-card:hover, .value-card:hover, .feature:hover, .brand-card:hover, .post-card:hover, .dept-card:hover, .team-card:hover {
	border-color: rgba(226,36,24,.35);
}

/* Header: hairline + smoother logo */
.site-header__inner { gap: 2rem; }
.site-logo-text .mark { transition: transform .3s var(--ease), box-shadow .3s; }
.site-logo-text:hover .mark { transform: rotate(-6deg) scale(1.05); box-shadow: 0 10px 26px -8px rgba(226,36,24,.7); }
.site-nav__menu a { letter-spacing: .09em; }

/* Hero: gentle bottom blend into the feature cards */
.hero::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 140px; background: linear-gradient(0deg, var(--black), transparent); z-index: 1; pointer-events: none; }
.hero__badge { backdrop-filter: blur(6px); background: rgba(8,9,11,.35); }
.hero__title { text-shadow: 0 2px 30px rgba(0,0,0,.45); }

/* Hero feature bar: refined surface */
.hero-features__inner { background: linear-gradient(180deg, rgba(22,23,26,.96), rgba(13,15,18,.96)); box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05); }
.hfeat { transition: background .3s; }
.hfeat:hover { background: rgba(255,255,255,.025); }
.hfeat__ic { transition: transform .3s var(--ease); }
.hfeat:hover .hfeat__ic { transform: translateY(-3px); }

/* Sections: consistent eyebrow rhythm */
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head__intro { color: var(--on-dark-dim); }

/* Stat band: hairline separators, refined numbers */
.statband__inner { gap: 0; }
.statband__item { padding-inline: 1rem; border-right: 1px solid var(--hair); }
.statband__item:last-child { border-right: 0; }
.statband__num { letter-spacing: -.02em; }
@media (max-width: 980px) { .statband__item:nth-child(2n) { border-right: 0; } .statband__item { padding-block: .5rem; } }
@media (max-width: 560px) { .statband__item { border-right: 0; justify-content: flex-start; } }

/* Product cards: price emphasis + smooth image */
.product-card__media img { transition: transform .8s var(--ease); }
.product-card__price { letter-spacing: -.01em; }
.product-card__detail { letter-spacing: .12em; }

/* CTA band: richer gradient + depth */
.cta-band__scrim { background: linear-gradient(100deg, rgba(140,12,6,.96), rgba(226,36,24,.82) 52%, rgba(8,9,11,.68)); }
.cta-band h2 { text-shadow: 0 2px 24px rgba(0,0,0,.35); }

/* Video frame: slimmer glow */
.video-frame { border-color: var(--hair); }
.video-frame::after { box-shadow: 0 0 60px -24px rgba(226,36,24,.35); }

/* Footer: refined links + spacing */
.footer-col a { position: relative; }
.footer-col a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease); }
.footer-col a:hover::after { transform: scaleX(1); }
.site-footer__bottom { color: var(--on-dark-mute); }

/* WhatsApp float: gentle breathing pulse */
@keyframes waPulse { 0%,100% { box-shadow: 0 16px 40px -10px rgba(31,170,84,.7), 0 0 0 0 rgba(31,170,84,.35); } 50% { box-shadow: 0 16px 40px -10px rgba(31,170,84,.7), 0 0 0 12px rgba(31,170,84,0); } }
.wa-float { animation: waPulse 2.8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } .btn::after { display: none; } }

/* Forms: calmer focus */
input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 3px rgba(226,36,24,.14); }

/* Images: consistent tone */
.product-card__media img, .sector-tile img, .post-card__thumb img, .about-intro__media img, .about-split__media img { filter: saturate(1.04) contrast(1.02); }

/* ==========================================================================
   HERO SLIDER (real, autoplay) — v29
   ========================================================================== */
.hero-slider { position: relative; min-height: 90vh; display: block; }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 1s; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide .hero__inner { width: min(100% - (var(--gutter)*2), var(--wrap-lg)); margin-inline: auto; padding-top: calc(var(--header-h) + 2rem); padding-bottom: 8rem; }
.hero-slide .hero__media img { transform: scale(1.08); }
.hero-slide.is-active .hero__media img { animation: kenburns 7s var(--ease-out) forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }

/* Caption entrance per slide (transition-based: end-state is guaranteed) */
.hero-slide .hero__badge, .hero-slide .hero__title, .hero-slide .hero__lead, .hero-slide .hero__actions {
	opacity: 0; transform: translateY(22px);
	transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.hero-slide.is-active .hero__badge { opacity: 1; transform: none; transition-delay: .15s; }
.hero-slide.is-active .hero__title { opacity: 1; transform: none; transition-delay: .28s; }
.hero-slide.is-active .hero__lead { opacity: 1; transform: none; transition-delay: .42s; }
.hero-slide.is-active .hero__actions { opacity: 1; transform: none; transition-delay: .56s; }
.hero-slide .hero__title .red { display: block; color: var(--red); }

/* Dots with autoplay progress */
.hero-slider__dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 7rem; z-index: 5; display: flex; gap: .55rem; }
.hero-slider__dots button { position: relative; width: 30px; height: 5px; border-radius: 3px; border: 0; padding: 0; background: rgba(255,255,255,.28); cursor: pointer; overflow: hidden; transition: width .3s var(--ease); }
.hero-slider__dots button.is-active { width: 52px; }
.hero-slider__dots button span { position: absolute; inset: 0; transform: scaleX(0); transform-origin: left; background: var(--red); border-radius: inherit; }
.hero-slider__dots button.is-active span { animation: dotfill var(--slide-dur, 6s) linear forwards; }
@keyframes dotfill { to { transform: scaleX(1); } }
.hero-slider:hover .hero-slider__dots button.is-active span { animation-play-state: paused; }

/* Shot-mode / reduced motion */
body.shotmode .hero-slider { min-height: 0; height: 720px; }
body.shotmode .hero-slide .hero__badge, body.shotmode .hero-slide .hero__title,
body.shotmode .hero-slide .hero__lead, body.shotmode .hero-slide .hero__actions { opacity: 1 !important; transform: none !important; animation: none !important; }
body.shotmode .hero-slide.is-active .hero__media img { animation: none; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
	.hero-slide { transition: none; }
	.hero-slide .hero__badge, .hero-slide .hero__title, .hero-slide .hero__lead, .hero-slide .hero__actions { opacity: 1; transform: none; animation: none !important; }
	.hero-slide.is-active .hero__media img { animation: none; transform: scale(1); }
	.hero-slider__dots button.is-active span { animation: none; transform: scaleX(1); }
}
@media (max-width: 860px) {
	.hero-slider { min-height: 640px; }
	.hero-slider__dots { bottom: 5.5rem; }
}

/* ==========================================================================
   HERO SLIDER refinements — taller area, minimalist text — v30
   ========================================================================== */
.hero-slider { min-height: 100svh; }
.hero-slide .hero__inner { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 11rem; }

/* Badge → thin minimalist label (no box) */
.hero-slide .hero__badge { border: 0; padding: 0; background: none; backdrop-filter: none; display: inline-flex; align-items: center; gap: .7rem; font-size: .72rem; letter-spacing: .3em; color: var(--on-dark-dim); margin-bottom: 1.4rem; }
.hero-slide .hero__badge::before { content: ""; width: 34px; height: 1px; background: var(--red); }

/* Title: keep scale, lighter surroundings */
.hero-slide .hero__title { letter-spacing: -.025em; }
.hero-slide .hero__title .red { margin-top: .1em; }

/* Lead: one quiet line */
.hero-slide .hero__lead { font-size: 1.05rem; color: var(--on-dark-dim); max-width: 44ch; margin-top: 1.2rem; }

/* Actions: a touch smaller & calmer */
.hero-slide .hero__actions { margin-top: 2rem; gap: .8rem; }
.hero-slide .hero__actions .btn--lg { padding: 1.05rem 1.8rem; font-size: .82rem; }

/* Dots lower-left aligned with content for a cleaner look */
.hero-slider__dots { left: var(--gutter); transform: none; bottom: 8.5rem; }
@media (min-width: 1520px) { .hero-slider__dots { left: calc((100% - var(--wrap-lg)) / 2); } }

body.shotmode .hero-slider { height: 780px; }
@media (max-width: 860px) {
	.hero-slider { min-height: 92svh; }
	.hero-slide .hero__inner { padding-bottom: 9rem; }
	.hero-slider__dots { bottom: 6.5rem; }
}

/* Hero slider: prev/next arrows (bottom-right, matching dots row) */
.hero-slider__nav { position: absolute; right: var(--gutter); bottom: 7.9rem; z-index: 5; display: flex; gap: .6rem; }
@media (min-width: 1520px) { .hero-slider__nav { right: calc((100% - var(--wrap-lg)) / 2); } }
.hero-slider__arrow { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--hair-2); background: rgba(8,9,11,.45); backdrop-filter: blur(8px); color: #fff; cursor: pointer; transition: background .25s, border-color .25s, transform .25s var(--ease); }
.hero-slider__arrow:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.hero-slider__arrow[data-dir="-1"] svg { transform: rotate(180deg); }
@media (max-width: 860px) {
	.hero-slider__nav { bottom: 5.9rem; right: var(--gutter); }
	.hero-slider__arrow { width: 42px; height: 42px; }
}

/* ==========================================================================
   BRAND MARQUEE — logo dari Woo Brands (Thumbnail) menggantikan teks
   ========================================================================== */
.brand-marquee__item { display: inline-flex; align-items: center; }
.brand-marquee__item img {
	height: clamp(26px, 2.6vw, 28px); width: auto; max-width: none; display: block;
	/* siluet terang seragam di strip gelap, senada dengan teks */
	filter: brightness(0) invert(1); opacity: .55; transition: opacity .25s;
}
.brand-marquee__item:hover img { opacity: 1; }
@media (max-width: 860px) {
	.brand-marquee__item img { height: 20px; }
}

/* ==========================================================================
   404
   ========================================================================== */
.err404__inner { min-height: 72vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding-top: calc(var(--header-h) + 2rem); }
.err404__code { font-family: var(--f-display); font-weight: 900; font-size: clamp(6rem, 16vw, 12rem); line-height: 1; color: #fff; letter-spacing: .02em; }
.err404__code .red { color: var(--red-bright); }
.err404__title { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: #fff; margin-top: .8rem; }
.err404__lead { color: var(--on-dark-dim); max-width: 52ch; margin-top: 1rem; }
.err404__search { display: flex; gap: .6rem; margin: 1.8rem 0 1.6rem; width: min(100%, 460px); }
.err404__search input { flex: 1; background: var(--ink-800); border: 1px solid var(--hair); border-radius: 10px; padding: .85rem 1.1rem; color: #fff; }
.err404__search input:focus { outline: none; border-color: rgba(226,36,24,.6); }

/* ==========================================================================
   PETA FULL-WIDTH (halaman Kontak) — strip edge-to-edge di atas footer
   ========================================================================== */
.map-full { height: clamp(340px, 46vh, 500px); background: var(--ink-900); border-top: 1px solid var(--hair); }
.map-full iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.04); transition: filter .4s var(--ease); }
.map-full:hover iframe { filter: none; }

/* ==========================================================================
   VIDEO GALLERY (playlist YouTube) + LIGHTBOX
   ========================================================================== */
/* Slider horizontal video (playlist auto-grow) */
.video-slider { position: relative; max-width: 1000px; margin: 1.6rem auto 0; }
.video-slider__track { display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: .4rem; justify-content: center; }
.video-slider__track::-webkit-scrollbar { display: none; }
/* Saat video banyak (overflow) baru rata-kiri & bisa digeser; saat sedikit tetap di tengah biar seimbang. */
.video-slider.has-overflow .video-slider__track { justify-content: flex-start; }
.video-slider .video-thumb { flex: 0 0 clamp(260px, 31%, 300px); scroll-snap-align: start; }
/* Fade + peek di kanan (petunjuk masih ada video ke samping) — muncul saat overflow & belum mentok kanan */
.video-slider::after { content: ""; position: absolute; top: 0; right: 0; bottom: .8rem; width: 72px; background: linear-gradient(90deg, transparent, var(--black)); pointer-events: none; opacity: 0; transition: opacity .3s; }
.video-slider.has-overflow:not(.at-end)::after { opacity: 1; }
/* Panah geser — tampil hanya saat overflow */
.video-slider__arrow { position: absolute; top: calc(50% - 1rem); transform: translateY(-50%); z-index: 3; display: none; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--hair-2); background: rgba(8,9,11,.72); backdrop-filter: blur(8px); color: #fff; cursor: pointer; transition: background .25s, opacity .25s, transform .25s var(--ease); }
.video-slider.has-overflow .video-slider__arrow { display: grid; }
.video-slider__arrow:hover { background: var(--red-bright); }
.video-slider__arrow--prev { left: -14px; }
.video-slider__arrow--prev svg { transform: rotate(180deg); }
.video-slider__arrow--next { right: -14px; }
.video-slider__arrow[disabled] { opacity: 0; pointer-events: none; }
/* Hint "Geser →" berdenyut selama masih ada video ke kanan */
.video-slider__hint { position: absolute; right: 4px; bottom: -1.9rem; display: none; align-items: center; gap: .3rem; font-family: var(--f-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red-bright); }
.video-slider.has-overflow:not(.at-end) .video-slider__hint { display: inline-flex; animation: vhint 1.6s var(--ease) infinite; }
@keyframes vhint { 0%, 100% { transform: translateX(0); opacity: .6; } 50% { transform: translateX(5px); opacity: 1; } }
/* Nudge sekali saat tampil (isyarat bisa digeser) */
@keyframes vnudge { 0% { transform: translateX(0); } 30% { transform: translateX(-26px); } 60% { transform: translateX(0); } }
.video-slider.do-nudge .video-slider__track { animation: vnudge 1s var(--ease) 1; }
@media (prefers-reduced-motion: reduce) { .video-slider__hint, .video-slider.do-nudge .video-slider__track { animation: none; } }

.video-thumb { display: flex; flex-direction: column; gap: .55rem; background: none; border: 2px solid transparent; border-radius: 16px; padding: 7px; text-align: left; cursor: pointer; color: inherit; transition: border-color .25s, background .25s; }
.video-thumb__img { position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; border: 1px solid var(--hair-2); background: #000; }
.video-thumb__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s; }
.video-thumb:hover .video-thumb__img img { transform: scale(1.06); opacity: .85; }
.video-thumb__play { position: absolute; inset: 0; margin: auto; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: rgba(226,36,24,.92); color: #fff; box-shadow: 0 8px 24px -6px rgba(226,36,24,.7); transition: transform .3s var(--ease); }
.video-thumb:hover .video-thumb__play { transform: scale(1.12); }
.video-thumb__title { font-size: .82rem; line-height: 1.4; color: var(--on-dark-dim); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-thumb:hover .video-thumb__title { color: #fff; }
.video-thumb__badge { position: absolute; left: .5rem; top: .5rem; font-family: var(--f-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; background: var(--red-bright); color: #fff; padding: .2rem .5rem; border-radius: 4px; }
.video-thumb.is-current { border-color: var(--red-bright); background: rgba(226,36,24,.07); }
@media (max-width: 560px) { .video-slider .video-thumb { flex-basis: 78vw; } .video-slider__arrow { display: none !important; } }

.video-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: var(--gutter); }
.video-modal.is-open { display: flex; }
.video-modal__backdrop { position: absolute; inset: 0; background: rgba(4,5,6,.86); backdrop-filter: blur(6px); }
.video-modal__box { position: relative; width: min(100%, 960px); z-index: 1; }
.video-modal__frame { position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; border: 1px solid var(--hair-2); background: #000; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close { position: absolute; top: -14px; right: -14px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--hair-2); background: var(--ink-900); color: #fff; cursor: pointer; transition: background .25s, transform .25s var(--ease); }
.video-modal__close:hover { background: var(--red-bright); transform: rotate(90deg); }
@media (max-width: 560px) { .video-modal__close { top: -6px; right: -6px; width: 40px; height: 40px; } }
