/* ============================================================
   M&C MOVERS & PACK · styles.css  (v3 dark industrial)
   Graphite + gold · Bebas Neue (display) + Outfit (UI/body)
   Mobile-first. Base 375px · 768 / 1024 / 1440.
   Motion tokens & rules: emil-design-eng + impeccable.
   ============================================================ */

:root {
  /* LIGHT THEME (default). Dark feature sections opt in via .theme-dark */
  --bg:        #FFFFFF;   /* light base */
  --bg-2:      #F4F6F9;   /* section alternation (light grey) */
  --bg-3:      #EDF0F4;   /* raised panel / input bg */
  --bg-card:   #FFFFFF;
  --line:      rgba(18,24,33,0.12);
  --line-2:    rgba(18,24,33,0.20);

  --text:      #14181F;
  --muted:     #56606E;
  --muted-2:   #828C99;

  --gold:      #E9A93C;   /* gold FILLS (buttons, bands) — paired with dark text */
  --gold-2:    #F6CD78;   /* highlight for gradients */
  --gold-deep: #C8881A;
  --gold-soft: rgba(233,169,60,0.14);
  --gold-ink:  #A1740F;   /* gold for TEXT / thin lines — legible on white */

  --wa:        #25D366;

  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font:    'Outfit', 'Segoe UI', system-ui, sans-serif;

  --radius:   12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow:    0 18px 50px rgba(18,24,33,0.13);
  --shadow-sm: 0 10px 28px rgba(18,24,33,0.08);
  --glow-gold: 0 14px 40px rgba(233,169,60,0.34);

  --maxw: 1300px;
  --gutter: clamp(20px, 3.5vw, 40px);   /* fluid side padding */
  --section-y: clamp(60px, 7.5vw, 116px); /* fluid vertical rhythm */
  --nav-h: 64px;

  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --t-fast: 0.16s var(--ease-out);
  --t-base: 0.26s var(--ease-out);
}

/* Dark feature sections (nav, hero, metrics, "too heavy" band, contact, footer)
   re-declare the dark palette so everything inside them flips back to dark. */
.theme-dark {
  --bg:        #0E1217;
  --bg-2:      #131922;
  --bg-3:      #19212B;
  --bg-card:   #161E27;
  --line:      rgba(255,255,255,0.10);
  --line-2:    rgba(255,255,255,0.18);
  --text:      #ECEFF3;
  --muted:     #9AA4B0;
  --muted-2:   #6C7682;
  --gold-ink:  var(--gold);   /* bright gold reads fine on dark */
  --shadow:    0 24px 60px rgba(0,0,0,0.5);
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.4);
  color: var(--text);
}

/* Light island inside a dark section (e.g. the form cards):
   re-declares the light palette so the card is white with dark text. */
.theme-light {
  --bg:        #FFFFFF;
  --bg-2:      #F4F6F9;
  --bg-3:      #EDF0F4;
  --bg-card:   #FFFFFF;
  --line:      rgba(18,24,33,0.12);
  --line-2:    rgba(18,24,33,0.20);
  --text:      #14181F;
  --muted:     #56606E;
  --muted-2:   #828C99;
  --gold-ink:  #A1740F;       /* deep gold for text/labels on white */
  --shadow:    0 18px 50px rgba(18,24,33,0.16);
  --shadow-sm: 0 10px 28px rgba(18,24,33,0.10);
  color: var(--text);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* fine grain for depth; keeps the dark from feeling flat */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }
.gold { color: var(--gold-ink); }

.skip-link { position: absolute; left: 14px; top: -60px; background: var(--gold); color: #14181F; padding: 10px 16px; border-radius: var(--radius-sm); z-index: 300; font-weight: 600; transition: top var(--t-base); }
.skip-link:focus { top: 12px; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--font); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-ink); margin-bottom: 20px;
}
.kicker__bar { width: 30px; height: 2px; background: var(--gold-ink); display: inline-block; }
.kicker--center { justify-content: center; }

.h-section { font-family: var(--font); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05;
  font-size: clamp(2rem, 6.2vw, 3.4rem); color: var(--text); }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: 0.96rem; letter-spacing: 0.01em;
  padding: 13px 22px; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; min-height: 48px; line-height: 1;
  transition: transform var(--t-fast), background var(--t-base), box-shadow var(--t-base), color var(--t-base), border-color var(--t-base);
}
.btn .ico { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t-base); }
.btn .ico--fill { fill: currentColor; stroke: none; }
.btn:active { transform: scale(0.97); }
.btn--lg { padding: 16px 30px; min-height: 56px; font-size: 1rem; }
.btn--sm { padding: 9px 15px; min-height: 40px; font-size: 0.85rem; }
.btn--block { width: 100%; }

.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #14181F; box-shadow: 0 8px 22px rgba(233,169,60,0.26); }
.btn--line { background: rgba(255,255,255,0.02); color: var(--text); border-color: var(--line-2); }
.btn--whatsapp { background: var(--wa); color: #06371b; }
@media (hover: hover) and (pointer: fine) {
  .btn--gold:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); }
  .btn--gold:hover .ico { transform: translateX(3px); }
  .btn--line:hover { border-color: var(--gold-ink); color: var(--gold-ink); background: var(--gold-soft); }
  .btn--whatsapp:hover { transform: translateY(-2px); background: #1ebe5a; box-shadow: 0 12px 28px rgba(37,211,102,0.34); }
}

.link-arrow { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--gold-ink); border-bottom: 1px solid var(--gold-ink); padding-bottom: 4px; transition: gap var(--t-base), border-color var(--t-base); }
@media (hover: hover) and (pointer: fine) { .link-arrow:hover { gap: 15px; border-color: var(--gold-ink); } }

/* ---------- TOP STRIP ---------- */
.topbar { background: #0A0D11; border-bottom: 1px solid var(--line); font-size: 0.78rem; color: var(--muted); display: none; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar__item { display: inline-flex; align-items: center; gap: 9px; }
.dotlive { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(37,211,102,0.5); animation: live 2.6s var(--ease-in-out) infinite; }
@keyframes live { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 0 0 6px rgba(37,211,102,0); } }
.topbar__links a { color: var(--text); font-weight: 500; transition: color var(--t-base); }
.topbar__links a:hover { color: var(--gold-ink); }
.topbar .sep { margin: 0 10px; color: var(--muted-2); }
@media (min-width: 1024px) { .topbar { display: block; } }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center;
  background: #0A0D11;   /* match the footer */
  border-bottom: 1px solid transparent; transition: background var(--t-base), border-color var(--t-base); }
.nav.scrolled { background: #0A0D11; border-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: baseline; gap: 9px; }
.brand__mark { font-family: var(--display); font-size: 1.9rem; line-height: 1; color: var(--text); letter-spacing: 0.02em; }
.brand__mark--lg { font-size: 3rem; }
.brand__amp { color: var(--gold-ink); }
.brand__name { font-family: var(--font); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }
.nav__links { display: none; }
.nav__right { display: flex; align-items: center; gap: 10px; }
.langswitch { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 3px; background: rgba(255,255,255,0.02); }
.langswitch button { font-family: var(--font); font-size: 0.78rem; font-weight: 600; color: var(--muted); background: none; border: none; cursor: pointer; padding: 7px 11px; border-radius: var(--radius-pill); min-height: 38px; line-height: 1; transition: color var(--t-base), background var(--t-base); }
.langswitch button.is-active { color: #14181F; background: var(--gold); }
.langswitch button:active { transform: scale(0.95); }
@media (hover: hover) and (pointer: fine) { .langswitch button:not(.is-active):hover { color: var(--text); } }
.nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 10px; }
.nav__toggle span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s var(--ease-out); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__links.active { display: flex; flex-direction: column; gap: 2px; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #0A0D11; padding: 12px var(--gutter) 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.nav__links.active a { padding: 15px 6px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--line); min-height: 46px; display: flex; align-items: center; }
.nav__links.active a:last-child { border-bottom: none; }
.nav__links.active .nav__quote { color: var(--gold-ink); font-weight: 700; }
/* small phones: drop the "Movers & Pack" descriptor so the brand + language
   switch + hamburger never crowd the nav (logo mark stays) */
@media (max-width: 375px) {
  .brand__name { display: none; }
  .langswitch button { padding: 7px 8px; }
  .nav__inner { gap: 10px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; isolation: isolate; min-height: calc(100svh - var(--nav-h)); display: flex; flex-direction: column; justify-content: center; padding: 56px 0 96px; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) contrast(1.04) saturate(0.92); transform: scale(1.06); }
/* strong, even #0E1217 tint across the whole hero so the headline stays readable (no bottom fade) */
.hero__veil { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(14,18,23,0.9) 0%, rgba(14,18,23,0.78) 50%, rgba(14,18,23,0.68) 100%); }
/* Bottom dark band removed per client request — hero photo now shows fully to the marquee. */

.hero__inner { position: relative; z-index: 2; flex: 1; display: grid; grid-template-columns: 1fr; gap: 30px; align-content: center; padding-top: 30px; }
.hero__copy { min-width: 0; }
.hero__title { font-family: var(--display); font-weight: 400; color: var(--text); line-height: 0.92; letter-spacing: 0.005em; text-transform: uppercase; margin: 6px 0 20px; font-size: clamp(2.3rem, 9.5vw, 5.4rem); }
.hero__title .ln { display: block; }
.hero__title .rw, .hero__title .rw > span { display: block; max-width: 100%; }
.hero__lead { font-size: 1.06rem; color: var(--muted); max-width: 540px; margin-bottom: 26px; }

/* hero quote-form card */
.hero__form { background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); }
.hero__form-title { font-family: var(--font); font-weight: 700; font-size: 1.15rem; color: var(--text); margin-bottom: 20px; letter-spacing: -0.01em; }
/* hero form: single column on phones, two columns from 560px up (wider, not long) */
.hero__form .form { grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 560px) { .hero__form .form { grid-template-columns: 1fr 1fr; gap: 22px 22px; } }
/* submit, status note and hints always span the full form width */
.form > button, .form > .form__note, .form > .apply__hint { grid-column: 1 / -1; }

/* contact details card (form moved to hero) */
.contact__details { display: flex; align-items: center; }
.contact__details .contact__list { width: 100%; margin: 0; gap: 24px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__actions .btn { flex: 1 1 100%; }
@media (min-width: 480px) { .hero__actions .btn { flex: 0 1 auto; } }

.hero__spec { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 44px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero__spec-item { background: var(--bg); padding: 18px 16px; display: flex; flex-direction: column; gap: 4px; }
.hero__spec-num { font-family: var(--display); font-size: 2.4rem; line-height: 0.9; color: var(--gold-ink); }
.hero__spec-lbl { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: linear-gradient(90deg, var(--gold), var(--gold-2)); color: #14181F; overflow: hidden; padding: 14px 0; position: relative; z-index: 2; }
.marquee__track { display: flex; width: max-content; will-change: transform; animation: marquee 36s linear infinite; }
/* each group is at least one viewport wide and fills it, so translateX(-50%)
   always lands exactly one group over — seamless at any screen width */
.marquee__group { display: flex; align-items: center; justify-content: space-evenly; gap: 22px; flex-shrink: 0; min-width: 100vw; padding: 0 11px; white-space: nowrap; }
.marquee__group span { font-family: var(--display); font-size: 1.15rem; letter-spacing: 0.04em; text-transform: uppercase; }
.marquee__group .star { font-size: 0.7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement { background: var(--bg); }
.statement__inner { max-width: 940px; }
.statement__head { font-family: var(--font); font-weight: 700; letter-spacing: -0.02em; line-height: 1.18; font-size: clamp(1.5rem, 4.4vw, 2.5rem); margin-bottom: 22px; }
.statement__sub { color: var(--muted); font-size: 1.06rem; max-width: 720px; }

/* ============================================================
   CAPABILITIES
   ============================================================ */
.caps { background: var(--bg-2); border-top: 1px solid var(--line); padding-bottom: var(--section-y); }
.caps__head { padding-top: var(--section-y); margin-bottom: clamp(34px, 4vw, 56px); }
.cap { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; max-width: var(--maxw); margin-inline: auto; padding: 40px var(--gutter); border-top: 1px solid var(--line); }
.caps__head + .cap { border-top: none; }
.cap__media { position: relative; border-radius: var(--radius); overflow: hidden; }
.cap__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(0.92) contrast(1.02); transition: transform .7s var(--ease-out); }
.cap__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--line-2); border-radius: inherit; pointer-events: none; }
.cap__media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(14,18,23,0.4)); z-index: 1; }
@media (hover: hover) and (pointer: fine) { .cap:hover .cap__media img { transform: scale(1.05); } }
.cap__ghost { position: absolute; right: 12px; bottom: 2px; z-index: 2; font-family: var(--display); font-size: 6rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.28); }
.cap__no { font-family: var(--font); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); display: block; margin-bottom: 14px; }
.cap__body h3 { font-family: var(--font); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; font-size: clamp(1.5rem, 5.4vw, 2.1rem); margin-bottom: 14px; }
.cap__body > p { color: var(--muted); margin-bottom: 20px; }
.caps__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.caps__list li { position: relative; padding-left: 26px; font-size: 0.95rem; color: var(--text); }
.caps__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 1px; background: var(--gold-ink); }

/* ============================================================
   METRICS
   ============================================================ */
.metrics { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metrics__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.metric { padding: 34px 18px; text-align: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric:nth-child(2n) { border-right: none; }
.metric:nth-child(n+3) { border-bottom: none; }
.metric__num { font-family: var(--display); font-size: clamp(3rem, 12vw, 4.4rem); line-height: 0.85; color: var(--gold-ink); display: block; }
.metric__lbl { font-size: 0.82rem; color: var(--muted); margin-top: 12px; display: block; }

/* ============================================================
   DIFFICULT MOVES
   ============================================================ */
.hard { background: var(--bg-2); overflow: hidden; isolation: isolate; }
.hard::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("images/bg-hard.jpg") center/cover no-repeat; }
.hard__bg { position: absolute; inset: 0; z-index: -1; opacity: 1;
  background:
    radial-gradient(60% 60% at 78% 8%, rgba(233,169,60,0.16), transparent 70%),
    linear-gradient(180deg, rgba(14,18,23,0.9) 0%, rgba(14,18,23,0.78) 46%, rgba(14,18,23,0.93) 100%); }
.hard__inner { text-align: center; max-width: 920px; margin: 0 auto; }
.hard__big { font-family: var(--display); font-weight: 400; text-transform: uppercase; line-height: 0.92; letter-spacing: 0.01em; font-size: clamp(2.6rem, 13vw, 6rem); margin: 6px 0 26px; }
.hard__word { display: block; }
.hard__lead { color: var(--muted); font-size: 1.08rem; max-width: 640px; margin: 0 auto 34px; }
.hard__lead em { color: var(--text); font-style: italic; }

/* ============================================================
   FLEET · connected roadmap
   ============================================================ */
.fleet { background: var(--bg); border-top: 1px solid var(--line); }
.fleet__head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 44px; }
.fleet__note { color: var(--muted); max-width: 560px; font-size: 0.98rem; }

.roadmap { position: relative; list-style: none; }
.roadmap__line { position: absolute; z-index: 0; left: 27px; top: 28px; bottom: 28px; width: 2px; background: var(--line); border-radius: 2px; }
.roadmap__fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: linear-gradient(180deg, var(--gold-2), var(--gold)); border-radius: 2px; }
.rstep { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; padding-bottom: 20px; }
.rstep:last-child { padding-bottom: 0; }
.rstep__head { position: relative; width: 56px; height: 56px; }
.rstep__node { position: relative; z-index: 2; width: 56px; height: 56px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); display: grid; place-items: center; transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base); }
.rstep__node svg { width: 26px; height: 26px; fill: none; stroke: var(--muted); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--t-base); }
.rstep__badge { position: absolute; z-index: 3; top: -5px; right: -5px; width: 22px; height: 22px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line-2); color: var(--muted); font-family: var(--display); font-size: 0.92rem; line-height: 22px; text-align: center; transition: background var(--t-base), color var(--t-base), border-color var(--t-base); }
.rstep.lit .rstep__node { border-color: var(--gold-ink); background: var(--bg-card); box-shadow: 0 0 0 4px var(--gold-soft); }
.rstep.lit .rstep__node svg { stroke: var(--gold); }
.rstep.lit .rstep__badge { background: var(--gold); color: #14181F; border-color: var(--gold-ink); }
.rcard { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base); }
.rcard__step { display: block; font-family: var(--font); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 9px; }
.rcard h3 { font-family: var(--font); font-weight: 700; font-size: 1.18rem; margin-bottom: 8px; }
.rcard p { color: var(--muted); font-size: 0.93rem; margin-bottom: 14px; }
.rcard__spec { display: inline-block; align-self: flex-start; margin-top: auto; font-family: var(--font); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-ink); border: 1px solid var(--line-2); border-radius: var(--radius-pill); padding: 5px 12px; }
@media (hover: hover) and (pointer: fine) { .rcard:hover { border-color: var(--line-2); transform: translateY(-3px); } }

/* ============================================================
   PROCESS · timeline
   ============================================================ */
.proc { position: relative; isolation: isolate; overflow: hidden; background: var(--bg-2); border-top: 1px solid var(--line); }
/* SME workshop photo behind the timeline; graphite veil to match hero / hard / contact */
.proc::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("images/bg-process.jpg") center/cover no-repeat; display: block; }
.proc::after  { content: ""; position: absolute; inset: 0; z-index: -1; display: block;
  background: linear-gradient(180deg, rgba(14,18,23,0.9) 0%, rgba(14,18,23,0.82) 50%, rgba(14,18,23,0.93) 100%); }
.proc__head { margin-bottom: 44px; }
.timeline { position: relative; padding-left: 38px; }
.timeline__rail { position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline__fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: linear-gradient(180deg, var(--gold-2), var(--gold)); }
.tstep { position: relative; padding: 0 0 40px; }
.tstep:last-child { padding-bottom: 0; }
.tstep::before { content: ""; position: absolute; left: -33px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg-2); border: 2px solid var(--line-2); transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base); }
.tstep.lit::before { border-color: var(--gold-ink); background: var(--gold); box-shadow: 0 0 0 5px var(--gold-soft); }
.tstep__no { font-family: var(--display); font-size: 1.3rem; color: var(--gold-ink); letter-spacing: 0.04em; }
.tstep h3 { font-family: var(--font); font-weight: 700; font-size: 1.3rem; margin: 2px 0 8px; }
.tstep p { color: var(--muted); font-size: 0.96rem; max-width: 540px; }

/* ============================================================
   WORK / GALLERY
   ============================================================ */
.work { background: var(--bg); border-top: 1px solid var(--line); }
.work__head { margin-bottom: 40px; }
/* Gallery tiles to a perfect rectangle at every breakpoint; no empty cells.
   Fixed row height + object-fit cover; item 1 (forklift) spans 2 cols. */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; grid-auto-rows: 168px; }
.gallery > .gitem:nth-child(1) { grid-column: span 2; }   /* wide on mobile */
.gitem { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.gitem img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(0.92); transition: transform .55s var(--ease-out), filter var(--t-base); }
.gitem figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 13px; color: #fff; font-size: 0.82rem; font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(8,10,13,0.85)); opacity: 0; transform: translateY(8px); transition: opacity var(--t-base), transform var(--t-base); }
@media (hover: hover) and (pointer: fine) {
  .gitem:hover img { transform: scale(1.07); filter: saturate(1) brightness(1); }
  .gitem:hover figcaption { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   WHY
   ============================================================ */
.why { background: var(--bg-2); border-top: 1px solid var(--line); }
.why__head { margin-bottom: 44px; }
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.why__item { background: var(--bg-card); padding: 22px 16px; transition: background var(--t-base); }
.why__no { font-family: var(--display); font-size: 1.4rem; color: var(--gold-ink); letter-spacing: 0.04em; display: block; margin-bottom: 12px; }
.why__item h3 { font-family: var(--font); font-weight: 700; font-size: 1.18rem; margin-bottom: 8px; }
.why__item p { color: var(--muted); font-size: 0.95rem; }
@media (hover: hover) and (pointer: fine) { .why__item:hover { background: var(--bg-3); } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; isolation: isolate; overflow: hidden; background: var(--bg); border-top: 1px solid var(--line); }
.contact::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("images/bg-contact.jpg") center/cover no-repeat; }
.contact::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14,18,23,0.88), rgba(14,18,23,0.93)); }
.contact__grid { display: flex; flex-direction: column; gap: 40px; }
.contact__lead { color: var(--muted); margin: 18px 0 28px; }
.contact__list { display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; align-items: flex-start; gap: 14px; }
.contact__ico { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-3); border: 1px solid var(--line); display: grid; place-items: center; }
.contact__ico svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact__k { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); font-weight: 600; margin-bottom: 3px; }
.contact__list a { font-weight: 600; color: var(--text); transition: color var(--t-base); }
@media (hover: hover) and (pointer: fine) { .contact__list a:hover { color: var(--gold-ink); } }

.contact__formwrap { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; }
.form { display: grid; grid-template-columns: 1fr; gap: 28px; }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--text);
  background: transparent; border: none; border-bottom: 1px solid var(--line-2);
  padding: 10px 2px; transition: border-color var(--t-base); border-radius: 0;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 24px; cursor: pointer; color: var(--text);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239AA4B0' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 2px center; background-size: 18px; }
.field select option { background: var(--bg-3); color: var(--text); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--gold-ink); }
.field label { position: absolute; left: 2px; top: 10px; color: var(--muted); font-size: 1rem; pointer-events: none; transition: transform var(--t-base), color var(--t-base), font-size var(--t-base); transform-origin: left; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field .label--static { transform: translateY(-22px) scale(0.8); color: var(--gold-ink); font-weight: 600; }
.field select:focus ~ label { color: var(--gold-ink); }
.field--full { grid-column: 1 / -1; }
.form__note { font-size: 0.9rem; font-weight: 600; min-height: 1.2em; }
.form__note.ok { color: #4ade80; }
.form__note.err { color: #f87171; }

.map { margin-top: 44px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); line-height: 0; filter: grayscale(0.3) contrast(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0A0D11; border-top: 1px solid var(--line); padding: 56px 0 22px; }
.footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 24px; }
.footer__brand { grid-column: 1 / -1; }
.footer__brand .brand__mark { color: var(--text); }
.footer__tag { margin: 14px 0 20px; font-size: 0.95rem; color: var(--muted); max-width: 320px; }
.footer__col h3 { font-family: var(--font); color: var(--text); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__addr { display: block; color: var(--muted); font-size: 0.92rem; margin-bottom: 11px; overflow-wrap: anywhere; transition: color var(--t-base); }
@media (hover: hover) and (pointer: fine) { .footer__col a:hover { color: var(--gold-ink); } }
.footer__btn { margin-top: 8px; }
/* ---------- FAQ (AIEO) ---------- */
.faq__head { margin-bottom: 26px; }
.faq__list { max-width: 840px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; position: relative; padding: 20px 44px 20px 0; font-family: var(--font); font-weight: 600; font-size: 1.05rem; color: var(--text); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 1.6rem; line-height: 1; color: var(--gold-ink); transition: transform var(--t-base); }
.faq__item[open] summary::after { content: "\2212"; }
.faq__item summary:hover { color: var(--gold-ink); }
.faq__a { padding: 0 44px 22px 0; }
.faq__a p { margin: 0; color: var(--muted); font-size: 0.97rem; line-height: 1.62; }

.footer__bar { display: flex; flex-direction: column; gap: 6px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--muted-2); }
.footer__credit { font-size: 0.8rem; color: var(--muted-2); }
.footer__credit a { color: var(--muted); text-decoration: none; font-weight: 600; }
.footer__credit a:hover { color: var(--gold); }

/* ---------- FAB ---------- */
.fab { position: fixed; right: 16px; bottom: 16px; z-index: 90; width: 56px; height: 56px; background: var(--wa); border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,0.42); transition: transform var(--t-fast); }
.fab__pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--wa); z-index: -1; animation: fabPulse 2.6s var(--ease-out) infinite; }
@keyframes fabPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }
@media (hover: hover) and (pointer: fine) { .fab:hover { transform: scale(1.08); } }
.fab:active { transform: scale(0.94); }
.fab svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transform: scaleX(0); transform-origin: 0 50%; will-change: transform; }

/* ---------- ANIMATION HOOKS ---------- */
/* Scroll reveal — self-contained, works with or without GSAP, desktop + mobile.
   Only elements the JS opts in (.js-reveal) are hidden, then revealed on scroll. */
[data-anim].js-reveal { opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16,0.84,0.44,1), transform 0.85s cubic-bezier(0.16,0.84,0.44,1);
  will-change: opacity, transform; }
[data-anim].js-reveal.rv-up    { transform: translateY(44px); }
[data-anim].js-reveal.rv-left  { transform: translateX(-52px); }
[data-anim].js-reveal.rv-right { transform: translateX(52px); }
[data-anim].js-reveal.rv-zoom  { transform: scale(0.88); }
[data-anim].js-reveal.is-in    { opacity: 1; transform: none; }
.btn { will-change: transform; }
/* honeypot anti-spam field — hidden from real users, bots fill it */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* ============================================================
   BREAKPOINT 768
   ============================================================ */
@media (min-width: 768px) {
  .hero__spec { grid-template-columns: repeat(4, 1fr); }
  .hero__spec-num { font-size: 2.8rem; }
  .metrics__grid { grid-template-columns: repeat(4, 1fr); }
  .metric { border-bottom: none !important; }
  .metric:last-child { border-right: none; }
  .cap { grid-template-columns: 1fr 1fr; gap: 48px; padding: 56px var(--gutter); }
  .cap--rev .cap__media { order: 2; }
  .cap__ghost { font-size: 8rem; }
  .fleet__head { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .why__item { padding: 30px 26px; }
  .contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .contact__formwrap { padding: 34px; }
  .form { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1.7fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bar { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   BREAKPOINT 1024
   ============================================================ */
@media (min-width: 1024px) {
  .nav__links { display: flex; align-items: center; gap: 30px; margin-left: auto; margin-right: 24px; }
  .nav__links a { font-weight: 500; font-size: 0.92rem; color: var(--muted); position: relative; padding: 4px 0; transition: color var(--t-base); }
  .nav__links a::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--gold); transition: width var(--t-base); }
  .nav__links a:hover { color: var(--text); }
  .nav__links a:hover::after { width: 100%; }
  .nav__links .nav__quote { color: #14181F; background: var(--gold); padding: 9px 18px; border-radius: var(--radius-sm); font-weight: 600; }
  .nav__links .nav__quote::after { display: none; }
  .nav__links .nav__quote:hover { color: #14181F; box-shadow: var(--glow-gold); }
  .nav__toggle { display: none; }

  .hero__inner { grid-template-columns: 1fr minmax(460px, 540px); gap: 52px; align-items: center; }
  .why__grid { grid-template-columns: repeat(3, 1fr); }

  /* roadmap → horizontal connected rail */
  .roadmap { display: flex; gap: 16px; }
  .roadmap__line { left: 10%; right: 10%; top: 28px; bottom: auto; width: auto; height: 2px; }
  .roadmap__fill { left: 0; top: 0; height: 2px; width: 0; }
  .rstep { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; padding-bottom: 0; grid-template-columns: none; }
  .rstep__head { margin: 0 auto; }
  .rcard { width: 100%; flex: 1; align-items: center; }
  .rcard__spec { align-self: center; }

  /* gallery: perfect 4×2 tile, no empty cells */
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 214px; }
  .gallery > .gitem:nth-child(1) { grid-column: 2 / 4; grid-row: 1; }   /* forklift (wide) */
  .gallery > .gitem:nth-child(2) { grid-column: 1; grid-row: 1 / 3; }   /* custom crates (tall) */
  .gallery > .gitem:nth-child(3) { grid-column: 2; grid-row: 2; }       /* shrinkwrap */
  .gallery > .gitem:nth-child(4) { grid-column: 3; grid-row: 2; }       /* plywood */
  .gallery > .gitem:nth-child(5) { grid-column: 4; grid-row: 1 / 3; }   /* machine loaded (tall) */

  /* timeline → centered alternating */
  .timeline { padding-left: 0; max-width: 940px; margin: 0 auto; }
  .timeline__rail { left: 50%; transform: translateX(-50%); }
  .tstep { width: 50%; padding: 0 44px 56px; }
  .tstep:nth-child(odd) { text-align: right; margin-left: 0; }
  .tstep:nth-child(even) { margin-left: 50%; text-align: left; }
  .tstep p { margin-left: auto; }
  .tstep:nth-child(even) p { margin-left: 0; }
  .tstep::before { left: auto; right: -8px; }
  .tstep:nth-child(even)::before { left: -8px; right: auto; }

  .fab { width: 62px; height: 62px; right: 24px; bottom: 24px; }
}

/* ============================================================
   BREAKPOINT 1440
   ============================================================ */
@media (min-width: 1440px) {
  .hero__title { font-size: 5.6rem; }
}

/* Large displays (24"+): let the layout breathe, don't strand content */
@media (min-width: 1700px) {
  :root { --maxw: 1460px; }
  body { font-size: 17px; }
}
@media (min-width: 2100px) {
  :root { --maxw: 1600px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-anim] { opacity: 1 !important; transform: none !important; }
  .marquee__track, .dotlive, .fab__pulse { animation: none !important; }
  .scroll-progress { display: none; }
  .hero__media img { transform: none; }
  .timeline__fill { height: 100% !important; }
}

/* ---------- word-reveal ---------- */
.rw { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .03em .1em; margin-bottom: -.1em; max-width: 100%; }
.rw > span { display: inline-block; will-change: transform; max-width: 100%; }
.rw.gold > span { color: var(--gold-ink); }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.nav__links a.is-current { color: var(--text); }

.careers-hero { position: relative; isolation: isolate; overflow: hidden;
  padding-top: calc(var(--section-y) + 8px); padding-bottom: var(--section-y); border-bottom: 1px solid var(--line); }
.careers-hero__bg { position: absolute; inset: 0; z-index: -1; }
.careers-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.42) contrast(1.05) saturate(0.85); }
.careers-hero__veil { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(14,18,23,0.95) 0%, rgba(14,18,23,0.72) 45%, rgba(14,18,23,0.5) 100%),
  linear-gradient(0deg, var(--bg) 2%, transparent 42%); }
.careers-hero__inner { max-width: 760px; }
.careers-hero__title { font-family: var(--display); font-weight: 400; text-transform: uppercase; line-height: 0.92;
  letter-spacing: 0.01em; color: var(--text); font-size: clamp(2.6rem, 9vw, 5.6rem); margin: 8px 0 18px; }
.careers-hero__lead { color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.2rem); max-width: 620px; margin-bottom: 28px; }

.internship { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.internship__grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.internship__media { position: relative; border-radius: var(--radius); overflow: hidden; }
.internship__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--line-2); border-radius: inherit; pointer-events: none; }
.internship__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(0.92) contrast(1.02); }
.internship__body h2 { margin-bottom: 14px; }
.internship__body > p { color: var(--muted); margin-bottom: 20px; }

.recruit { background: var(--bg); padding: var(--section-y) 0; }
.recruit__quote { position: relative; max-width: 900px; margin: 0 auto; text-align: center;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem); line-height: 1.5; color: var(--text); font-weight: 300; }
.recruit__quote a { color: var(--gold-ink); border-bottom: 1px solid var(--gold-ink); white-space: nowrap; }
.recruit__mark { display: block; font-family: var(--display); color: var(--gold-ink); font-size: 4rem; line-height: 0.4; margin-bottom: 16px; }

/* same treated-photo background as the "Get in touch" section */
.apply { position: relative; isolation: isolate; overflow: hidden; background: var(--bg); border-top: 1px solid var(--line); }
.apply::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("images/bg-contact.jpg") center/cover no-repeat; }
.apply::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14,18,23,0.88), rgba(14,18,23,0.93)); }

/* CV upload control */
.filefield { display: flex; align-items: center; gap: 14px; cursor: pointer;
  background: var(--bg-3); border: 1px dashed var(--line-2); border-radius: var(--radius-sm);
  padding: 14px 16px; transition: border-color var(--t-base), background var(--t-base); }
/* visually hidden, still triggered by the wrapping <label for="cCv"> */
.filefield__input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.filefield__ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; background: var(--gold-soft); display: grid; place-items: center; transition: background var(--t-base); }
.filefield__ico svg { width: 20px; height: 20px; fill: none; stroke: var(--gold-ink); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--t-base); }
.filefield__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.filefield__text { font-weight: 600; color: var(--text); font-size: 0.95rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.filefield__hint { font-size: 0.76rem; color: var(--muted-2); }
.filefield__btn { margin-left: auto; flex: 0 0 auto; font-size: 0.82rem; font-weight: 600; color: var(--text);
  border: 1px solid var(--line-2); border-radius: var(--radius-pill); padding: 7px 16px; transition: border-color var(--t-base), color var(--t-base); }
.filefield.has-file { border-style: solid; border-color: var(--gold); }
.filefield.has-file .filefield__ico { background: var(--gold); }
.filefield.has-file .filefield__ico svg { stroke: #14181F; }
@media (hover: hover) and (pointer: fine) {
  .filefield:hover { border-color: var(--gold); }
  .filefield:hover .filefield__btn { border-color: var(--gold); color: var(--gold-ink); }
}
/* tight phones: drop the Browse pill (whole control stays tappable) */
@media (max-width: 430px) { .filefield__btn { display: none; } }
.apply__grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
.apply__intro h2 { margin-bottom: 14px; }
.apply__lead { color: var(--muted); margin-bottom: 26px; }
.apply__hint { font-size: 0.85rem; color: var(--muted); margin: 2px 0 4px; }

@media (min-width: 768px) {
  .internship__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .apply__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
@media (min-width: 1024px) {
  .internship__grid { gap: 64px; }
  .nav__links a.is-current::after { width: 100%; }
}

/* ============================================================
   PROCESS — distinct MOBILE treatment
   On phones/tablets the fleet roadmap and the process timeline
   both read as "left-rail vertical timelines". Here the process
   becomes an editorial big-ghost-number step list (no rail, no
   dots, no cards) so the two sections feel clearly different.
   Desktop (>=1024) keeps the alternating timeline untouched.
   ============================================================ */
@media (max-width: 1023px) {
  .timeline { padding-left: 0; }
  .timeline__rail { display: none; }
  .tstep {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    align-items: start;
    padding: 26px 0;
    border-top: 1px solid var(--line);
  }
  .tstep:first-child { border-top: none; padding-top: 2px; }
  .tstep:last-child { padding-bottom: 0; }
  .tstep::before { display: none; }            /* drop the timeline dot */
  .tstep__no {
    grid-column: 1; grid-row: 1 / 3; align-self: start;
    font-size: 3.6rem; line-height: 0.74; letter-spacing: 0; margin-top: 2px;
    color: transparent; -webkit-text-stroke: 1.8px var(--gold-ink); text-stroke: 1.8px var(--gold-ink);
  }
  .tstep h3 { grid-column: 2; grid-row: 1; margin: 0 0 7px; }
  .tstep p { grid-column: 2; grid-row: 2; max-width: none; }
}

/* ============================================================
   CHINESE (CJK) display headings
   Bebas Neue is Latin-only, so 中文 falls back to a system CJK
   font whose glyphs fill the full em box. The tight 0.92
   line-height (great for Latin) plus the reveal mask clips the
   tops/bottoms of CJK characters — loosen line-height and give
   the mask vertical room when the page language is Chinese.
   ============================================================ */
html[lang="zh"] .hero__title { line-height: 1.2; letter-spacing: 0; }
html[lang="zh"] .hero__title .rw { padding-top: .12em; padding-bottom: .16em; margin-bottom: -.12em; }
html[lang="zh"] .hard__big { line-height: 1.18; letter-spacing: 0; }
/* CJK headings: drop Latin negative tracking + give comfortable line-height */
html[lang="zh"] .h-section, html[lang="zh"] .statement__head,
html[lang="zh"] .cap__body h3, html[lang="zh"] .rcard h3 { letter-spacing: 0; }
html[lang="zh"] .h-section { line-height: 1.22; }

/* ============================================================
   "Get a Quote" → hero form: scroll offset + one-shot pulse
   ============================================================ */
.hero__form { scroll-margin-top: 84px; }
.hero__form.pulse { animation: formPulse 1.15s var(--ease-out); }
@keyframes formPulse {
  0%   { box-shadow: var(--shadow); border-color: var(--line-2); }
  30%  { box-shadow: 0 0 0 3px var(--gold-soft), 0 0 46px rgba(233,169,60,0.55), var(--shadow); border-color: var(--gold-ink); }
  100% { box-shadow: var(--shadow); border-color: var(--line-2); }
}
@media (prefers-reduced-motion: reduce) { .hero__form.pulse { animation: none; } }

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
.gallery .gitem { cursor: pointer; }
.gallery .gitem::after { content: ""; position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; z-index: 2;
  border-radius: 8px; background: rgba(8,10,13,0.55) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/></svg>") center/16px no-repeat;
  opacity: 0; transform: scale(0.85); transition: opacity var(--t-base), transform var(--t-base); pointer-events: none; }
@media (hover: hover) and (pointer: fine) { .gallery .gitem:hover::after { opacity: 1; transform: scale(1); } }
@media (hover: none) { .gallery .gitem::after { opacity: 0.85; transform: none; } }

.lightbox { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center;
  background: rgba(8,10,13,0.93); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); padding: 20px; }
.lightbox.open { display: flex; animation: lbFade 0.25s var(--ease-out); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage { position: relative; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 92vw; }
.lightbox__img { max-width: 92vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox.open .lightbox__img { animation: lbZoom 0.28s var(--ease-out); }
@keyframes lbZoom { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.lightbox__cap { color: #ECEFF3; font-family: var(--font); font-size: 0.92rem; font-weight: 500; text-align: center; }
.lightbox__btn { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.07);
  color: #fff; line-height: 1; cursor: pointer; display: grid; place-items: center; z-index: 2; transition: background var(--t-base), border-color var(--t-base), color var(--t-base); }
@media (hover: hover) and (pointer: fine) { .lightbox__btn:hover { background: var(--gold); color: #14181F; border-color: var(--gold); } }
.lightbox__btn:active { transform: scale(0.94); }
.lightbox__close { top: 18px; right: 18px; width: 48px; height: 48px; font-size: 1.7rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
/* keep the vertical centering when pressed, so the button doesn't jump out from under the cursor */
.lightbox__nav:active { transform: translateY(-50%) scale(0.94); }
@media (max-width: 640px) {
  .lightbox__nav { top: auto; bottom: 20px; transform: none; width: 46px; height: 46px; font-size: 1.7rem; }
  .lightbox__nav--prev { left: 50%; margin-left: -58px; }
  .lightbox__nav--next { right: 50%; margin-right: -58px; }
  .lightbox__nav:active { transform: scale(0.94); }
  .lightbox__img { max-height: 74vh; }
}
@media (prefers-reduced-motion: reduce) { .lightbox.open, .lightbox.open .lightbox__img { animation: none; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-rows { padding-top: var(--section-y); }
.about-rows .cap:first-child { border-top: none; }
.cta { text-align: center; background: var(--bg); }
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta p { color: var(--muted); margin: 14px 0 30px; font-size: 1.06rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   SPLIT CTA (About / Careers) — full-bleed, two halves side by side
   ============================================================ */
.split { padding: 0; }
.split__grid { display: grid; grid-template-columns: 1fr 1fr; }   /* side by side at every width */
.split__panel { position: relative; isolation: isolate; display: flex; align-items: flex-end; min-height: 340px; overflow: hidden; }
.split__panel + .split__panel { border-left: 1px solid rgba(255,255,255,0.12); }
.split__panel img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.split__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,13,17,0.25) 0%, rgba(10,13,17,0.58) 46%, rgba(10,13,17,0.9) 100%); }
.split__content { padding: 22px 18px; color: #fff; }
.split__kicker { font-family: var(--font); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.split__title { font-family: var(--font); font-weight: 800; letter-spacing: -0.01em; line-height: 1.12; font-size: clamp(1.15rem, 3.4vw, 2.4rem); color: #fff; margin-bottom: 8px; }
.split__text { color: rgba(236,239,243,0.82); font-size: 0.98rem; max-width: 460px; margin-bottom: 16px; }
.split__cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.92rem; color: var(--gold); }
.split__cta .ico { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t-base); }
@media (hover: hover) and (pointer: fine) {
  .split__panel:hover img { transform: scale(1.05); }
  .split__panel:hover .split__cta .ico { transform: translateX(4px); }
}
/* narrow phones: keep them side by side but trim the description so the halves stay readable */
@media (max-width: 560px) {
  .split__panel { min-height: 360px; }
  .split__content { padding: 16px 14px; }
  .split__text { display: none; }
}
@media (min-width: 768px)  { .split__panel { min-height: 420px; } .split__content { padding: 34px 30px; } }
@media (min-width: 1280px) { .split__panel { min-height: 480px; } .split__content { padding: 44px; } }

/* ============================================================
   ASSURANCE (Insurance + ESG) — editorial split rows, no cards
   ============================================================ */
.assure { background: var(--bg-2); border-top: 1px solid var(--line); }
.assure__head { margin-bottom: clamp(18px, 2.5vw, 30px); }
.assure__row { display: grid; grid-template-columns: 1fr; gap: 26px; padding: clamp(34px, 5vw, 60px) 0; border-top: 1px solid var(--line); align-items: center; }
.assure__eyebrow { font-family: var(--font); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-ink); display: block; margin-bottom: 14px; }
/* insurance: typographic anchor instead of an icon */
.assure__display { font-family: var(--display); line-height: 0.88; letter-spacing: 0.01em; font-size: clamp(3rem, 9vw, 5rem); color: var(--text); }
.assure__display span { display: block; color: var(--gold-ink); }
.assure__body h3 { font-family: var(--font); font-weight: 800; letter-spacing: -0.01em; line-height: 1.12; font-size: clamp(1.5rem, 3.6vw, 2.1rem); margin-bottom: 14px; }
.assure__body > p { color: var(--muted); font-size: 1.04rem; max-width: 62ch; }
.assure__note { margin-top: 20px; font-size: 0.82rem; font-weight: 600; color: var(--muted-2); letter-spacing: 0.05em; text-transform: uppercase; }
/* ESG certificate (A4 portrait) left, wording right */
.assure__cert { margin: 0; }
.assure__certimg,
.assure__cert-ph { width: 100%; max-width: 380px; aspect-ratio: 1 / 1.414; border-radius: var(--radius-sm); display: block; }
.assure__certimg { object-fit: cover; border: 1px solid var(--line); box-shadow: var(--shadow); }
.assure__cert-ph { border: 1.5px dashed var(--line-2); background: var(--bg-card); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px; padding: 30px; }
.assure__cert-ico { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 8px; }
.assure__cert-ico svg { width: 32px; height: 32px; fill: none; stroke: var(--gold-ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.assure__cert-ph strong { font-weight: 700; font-size: 1rem; }
.assure__cert-ph span { color: var(--muted); font-size: 0.85rem; max-width: 230px; }
@media (min-width: 860px) {
  .assure__row { grid-template-columns: minmax(0, 340px) 1fr; gap: 64px; }
  .assure__row--cert { align-items: center; }
  .assure__row--cert .assure__body > p { max-width: 70ch; }
}

/* ============================================================
   GIVE US A TRY (switch nudge) — editorial split, copy + real photo
   ============================================================ */
.tryus { background: var(--bg-2); border-top: 1px solid var(--line); }
.tryus__grid { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 4vw, 56px); align-items: center; }
.tryus__head { font-family: var(--font); font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; font-size: clamp(1.7rem, 5vw, 2.9rem); margin-bottom: 18px; }
.tryus__p { color: var(--muted); font-size: 1.04rem; margin-bottom: 16px; max-width: 56ch; }
.tryus__p:last-of-type { margin-bottom: 28px; }
.tryus__media { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.tryus__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(0.95) contrast(1.02); }
.tryus__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--line-2); border-radius: inherit; pointer-events: none; }
@media (min-width: 860px) {
  .tryus__grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; }
  .tryus__media img { aspect-ratio: 5/4; }
}
