/* ==========================================================================
   ROCKERS GLOBAL TRADING - Parent Company Design System
   Navy + Gold heritage. Editorial serif display, clean sans UI.
   Dependency-free. Mobile-first. Built for slow networks.
   ========================================================================== */

/* ------------------------------------------------------------------ Tokens */
:root {
  /* Brand */
  --ink:        #0A1730;   /* deepest navy - near black */
  --navy:       #0E2244;   /* primary navy */
  --navy-600:   #163763;
  --navy-500:   #1E4A82;
  --navy-soft:  #2B5DA0;

  --gold:       #C8A24A;     /* core gold */
  --gold-bright:#E7C766;     /* highlight gold */
  --gold-deep:  #9C7A2E;     /* shadow gold */

  /* Neutrals (warm ivory paper) */
  --paper:      #FAF8F3;
  --paper-2:    #F2EEE5;
  --surface:    #FFFFFF;
  --line:       #E7E1D4;
  --line-strong:#D8D0BE;

  --text:       #1C2433;   /* body on light */
  --text-soft:  #5A6478;
  --text-faint: #8A92A3;
  --on-dark:    #EAF0FA;
  --on-dark-soft:#9DB0CC;

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale (8pt) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* Radius */
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;

  /* Elevation */
  --shadow-1: 0 1px 2px rgba(10,23,48,.06), 0 2px 8px rgba(10,23,48,.05);
  --shadow-2: 0 10px 30px -12px rgba(10,23,48,.18);
  --shadow-3: 0 30px 70px -28px rgba(10,23,48,.35);
  --shadow-gold: 0 14px 34px -14px rgba(156,122,46,.55);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: .18s; --t: .35s; --t-slow: .6s;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --header-h: 76px;

  --gold-grad: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 35%, var(--gold-bright) 55%, var(--gold) 78%, var(--gold-deep) 100%);
}

/* --------------------------------------------------------------- Reset/base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01","cv01";
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold-bright); color: var(--ink); }

/* --------------------------------------------------------------- Typography */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08;
  letter-spacing: -.01em; color: var(--ink); }
.display { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -.025em; font-weight: 600; }
h2.h-sec { font-size: clamp(2rem, 3.8vw, 3.1rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--text-soft); line-height: 1.6; font-weight: 400; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow::before { content:""; width: 26px; height: 1px; background: var(--gold); }
.on-dark .eyebrow, .section--dark .eyebrow { color: var(--gold-bright); }
.on-dark .eyebrow::before, .section--dark .eyebrow::before { background: var(--gold-bright); }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--dark { background: var(--navy); color: var(--on-dark); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #fff; }
.section--ink { background: var(--ink); color: var(--on-dark); }
.section--paper2 { background: var(--paper-2); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .lead { margin-top: 18px; }
.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: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: 15px 26px; border-radius: var(--r-pill); transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
  white-space: nowrap; will-change: transform; }
.btn svg { width: 18px; height: 18px; transition: transform var(--t) var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:hover svg.arrow { transform: translateX(4px); }

.btn--gold { background: var(--gold-grad); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn--gold:hover { box-shadow: 0 18px 40px -12px rgba(156,122,46,.7); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-2); }
.btn--navy:hover { background: var(--navy-600); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--ink); background: var(--surface); }
.btn--ghost:hover { border-color: var(--gold); }
.btn--outline-light { border: 1px solid rgba(255,255,255,.28); color: #fff; }
.btn--outline-light:hover { border-color: var(--gold-bright); background: rgba(255,255,255,.05); }
.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

.textlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy-500);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px; transition: color var(--t), border-color var(--t); }
.textlink svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.textlink:hover { color: var(--gold-deep); border-color: var(--gold); }
.textlink:hover svg { transform: translateX(4px); }
.section--dark .textlink { color: var(--gold-bright); }

/* --------------------------------------------------------------- Header */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center; transition: background var(--t), box-shadow var(--t), height var(--t); }
.site-header__inner { width: 100%; max-width: var(--container-wide); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px); display: flex; align-items: center; gap: 28px; }
.site-header.scrolled { background: rgba(250,248,243,.85); backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 var(--line); height: 64px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); }
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.brand__name { font-weight: 600; font-size: 1.12rem; letter-spacing: -.01em; line-height: 1; color: var(--ink); white-space: nowrap; }
.brand__tag { display:block; font-family: var(--font-sans); font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; font-weight: 600; }

/* header starts transparent over dark hero */
.site-header:not(.scrolled) .brand__name { color: #fff; }
.site-header:not(.scrolled) .brand__tag { color: var(--gold-bright); }
.site-header:not(.scrolled) .nav__link { color: var(--on-dark); }
.site-header:not(.scrolled) .nav__link:hover { color: #fff; }

.nav { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: var(--r-sm);
  font-size: .92rem; font-weight: 500; color: var(--text); transition: color var(--t), background var(--t); }
.nav__link:hover { color: var(--ink); }
.nav__link svg { width: 14px; height: 14px; opacity: .6; transition: transform var(--t); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

/* mega dropdown */
.nav__panel { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(680px, 86vw); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-3); padding: 14px; opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t) var(--ease-out);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.nav__item:hover .nav__panel, .nav__item:focus-within .nav__panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__panel::before { content:""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.mega-link { display: flex; gap: 12px; padding: 12px; border-radius: var(--r-md); transition: background var(--t); }
.mega-link:hover { background: var(--paper-2); }
.mega-link__ic { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-600)); color: var(--gold-bright); }
.mega-link__ic svg { width: 19px; height: 19px; }
.mega-link__t { font-weight: 600; font-family: var(--font-sans); font-size: .94rem; color: var(--ink); }
.mega-link__d { font-size: .8rem; color: var(--text-soft); line-height: 1.4; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 20px; font-size: .9rem; }
.site-header:not(.scrolled) .header-cta .btn--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color:#fff; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 22px; height: 2px; background: currentColor; color: var(--ink); transition: background var(--t); }
.site-header:not(.scrolled) .nav-toggle span { color: #fff; background: #fff; }
.nav-toggle span::before, .nav-toggle span::after { content:""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor; transition: transform var(--t) var(--ease); }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }

/* --------------------------------------------------------------- Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(120% 90% at 80% -10%, var(--navy-600) 0%, var(--navy) 38%, var(--ink) 100%);
  color: var(--on-dark); padding-top: var(--header-h); }
.hero__map { position: absolute; inset: 0; background: url(../img/world-dotted-map.png) center/cover no-repeat;
  opacity: .10; mix-blend-mode: screen; filter: brightness(2); }
.hero__glow { position: absolute; width: 60vmax; height: 60vmax; right: -20vmax; top: -20vmax; pointer-events: none;
  background: radial-gradient(circle, rgba(231,199,102,.22), transparent 62%); }
.hero__orbit { position: absolute; right: -8%; top: 50%; transform: translateY(-50%); width: 52vmax; height: 52vmax;
  border-radius: 50%; border: 1px solid rgba(231,199,102,.16); pointer-events: none; }
.hero__orbit::after { content:""; position: absolute; inset: 14%; border-radius: 50%; border: 1px solid rgba(231,199,102,.10); }
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 760px; padding-block: clamp(40px, 8vw, 90px); }
.hero h1 { color: #fff; margin-top: 22px; }
.hero h1 em { font-style: italic; font-weight: 400; }
.hero__sub { margin-top: 24px; max-width: 600px; color: var(--on-dark-soft); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--on-dark-soft);
  display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll span { width: 1px; height: 36px; background: linear-gradient(var(--gold-bright), transparent); animation: scrollpulse 2.2s var(--ease) infinite; }
@keyframes scrollpulse { 0%{transform:scaleY(.3);transform-origin:top;opacity:.4} 50%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(.3);transform-origin:bottom;opacity:.4} }

/* trust strip under hero */
.trustbar { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-stat { padding: clamp(22px, 3vw, 34px) clamp(16px, 2.5vw, 30px); border-right: 1px solid rgba(255,255,255,.08); }
.trust-stat:last-child { border-right: 0; }
.trust-stat__n { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: #fff; line-height: 1; }
.trust-stat__n .gold-text { display: inline; }
.trust-stat__l { margin-top: 8px; font-size: .82rem; color: var(--on-dark-soft); letter-spacing: .02em; }

/* --------------------------------------------------------------- Pillars (divisions) */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.pillar { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px); overflow: hidden; transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t); }
.pillar::before { content:""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform var(--t-slow) var(--ease); }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.pillar:hover::before { transform: scaleX(1); }
.pillar__ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--navy), var(--navy-600)); color: var(--gold-bright); box-shadow: var(--shadow-2); }
.pillar__ic svg { width: 26px; height: 26px; }
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--text-soft); font-size: .97rem; }
.pillar__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { font-size: .76rem; font-weight: 600; color: var(--navy-500); background: var(--paper-2);
  border: 1px solid var(--line); padding: 5px 12px; border-radius: var(--r-pill); }

/* --------------------------------------------------------------- Subsidiary ecosystem */
.eco-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.eco-card { grid-column: span 6; position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t); min-height: 260px; }
.eco-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); border-color: var(--line-strong); }
.eco-card--lg { grid-column: span 6; }
.eco-card__media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy); }
.eco-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.eco-card:hover .eco-card__media img { transform: scale(1.06); }
.eco-card__media::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,23,48,.55)); }
.eco-card__badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; color: #fff; background: rgba(10,23,48,.55);
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.18); padding: 6px 12px; border-radius: var(--r-pill); }
.eco-card__badge svg { width: 13px; height: 13px; color: var(--gold-bright); }
.eco-card__logo { position: absolute; bottom: 14px; left: 16px; z-index: 2; height: 38px; width: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); }
.eco-card__body { padding: clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; flex: 1; }
.eco-card__brand { display: flex; align-items: center; margin-bottom: 16px; min-height: 52px; }
.eco-card__brand img { height: 48px; width: auto; max-width: 210px; object-fit: contain; }
.eco-card__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.eco-card__meta { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-size: .8rem; color: var(--text-faint); font-weight: 500; }
.eco-card__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }
.eco-card p { color: var(--text-soft); font-size: .95rem; margin-top: 14px; }
.eco-card__foot { margin-top: auto; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }

/* --------------------------------------------------------------- Global presence */
.presence { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.presence__map { position: relative; }
.presence__map img { width: 100%; opacity: .9; filter: brightness(1.8) contrast(1.1); }
.offices { display: grid; gap: 14px; }
.office { display: flex; gap: 16px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-md);
  background: rgba(255,255,255,.03); transition: border-color var(--t), background var(--t), transform var(--t) var(--ease); }
.office:hover { border-color: rgba(231,199,102,.5); background: rgba(255,255,255,.05); transform: translateX(4px); }
.office__pin { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(231,199,102,.12); color: var(--gold-bright); }
.office__pin svg { width: 20px; height: 20px; }
.office h4 { color: #fff; font-family: var(--font-sans); font-size: 1.02rem; font-weight: 600; }
.office p { color: var(--on-dark-soft); font-size: .86rem; margin-top: 2px; }
.office__flag { margin-left: auto; align-self: center; font-size: .78rem; color: var(--gold-bright); font-weight: 600; letter-spacing: .04em; }

/* --------------------------------------------------------------- Capabilities / why */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.cap { padding: clamp(22px, 2.6vw, 30px); border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line);
  transition: transform var(--t) var(--ease), box-shadow var(--t); }
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.cap__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--gold-deep);
  background: var(--paper-2); margin-bottom: 18px; }
.cap__ic svg { width: 23px; height: 23px; }
.cap h4 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.cap p { font-size: .9rem; color: var(--text-soft); }

/* --------------------------------------------------------------- Inquiry routing */
.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 20px); }
.route { display: flex; flex-direction: column; padding: clamp(22px, 2.6vw, 30px); border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line); transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t); }
.route:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: var(--gold); }
.route__ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-600)); color: var(--gold-bright); }
.route__ic svg { width: 24px; height: 24px; }
.route h4 { font-family: var(--font-sans); font-weight: 700; font-size: 1.08rem; color: var(--ink); margin-bottom: 8px; }
.route p { font-size: .9rem; color: var(--text-soft); flex: 1; }
.route .textlink { margin-top: 18px; }

/* --------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-600) 0%, var(--ink) 100%); color: #fff;
  border-radius: var(--r-xl); padding: clamp(40px, 6vw, 80px); }
.cta-band__glow { position: absolute; right: -10%; bottom: -40%; width: 50vmax; height: 50vmax;
  background: radial-gradient(circle, rgba(231,199,102,.22), transparent 60%); pointer-events: none; }
.cta-band__inner { position: relative; z-index: 2; max-width: 640px; }
.cta-band h2, .cta-band .h-sec { color: #fff !important; }
.cta-band p { color: var(--on-dark-soft); margin-top: 16px; font-size: 1.08rem; }
.cta-band__row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* --------------------------------------------------------------- Footer */
.footer { background: var(--ink); color: var(--on-dark-soft); padding-top: clamp(56px, 7vw, 88px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 56px; }
.footer__brand .brand__name { color: #fff; }
.footer__about { margin-top: 18px; max-width: 320px; font-size: .92rem; line-height: 1.7; }
.footer h5 { color: #fff; font-family: var(--font-sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer__links a { display: block; padding: 7px 0; font-size: .92rem; transition: color var(--t), padding var(--t); }
.footer__links a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer__contact p { font-size: .9rem; line-height: 1.7; }
.footer__contact strong { color: var(--on-dark); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14);
  color: var(--on-dark-soft); transition: all var(--t); }
.socials a:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.10); padding-block: 26px; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 14px; font-size: .82rem; }
.footer__bottom a:hover { color: var(--gold-bright); }

/* --------------------------------------------------------------- Floating WhatsApp */
.wa-fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform var(--t) var(--ease); }
.wa-fab:hover { transform: scale(1.08) translateY(-2px); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::after { content:""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: waPulse 2.4s ease-out infinite; }
@keyframes waPulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.8);opacity:0} }

/* --------------------------------------------------------------- Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"]{ transition-delay: .08s } [data-reveal][data-delay="2"]{ transition-delay: .16s }
[data-reveal][data-delay="3"]{ transition-delay: .24s } [data-reveal][data-delay="4"]{ transition-delay: .32s }

/* --------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .pillars, .cap-grid, .routes { grid-template-columns: 1fr 1fr; }
  .presence { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .eco-card, .eco-card--lg { grid-column: span 6; }
}
@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header__inner { gap: 12px; }
  .brand { margin-right: auto; }
  .trustbar__grid { grid-template-columns: 1fr 1fr; }
  .trust-stat:nth-child(2) { border-right: 0; }
  .trust-stat:nth-child(1), .trust-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 680px) {
  .pillars, .cap-grid, .routes { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
  .eco-card, .eco-card--lg { grid-column: 1; }
  .footer__top { grid-template-columns: 1fr; }
  .cta-band__row .btn { width: 100%; }
}

/* --------------------------------------------------------------- Mobile menu */
.m-menu { position: fixed; inset: 0; z-index: 200; background: var(--ink); color: var(--on-dark);
  transform: translateX(100%); transition: transform var(--t) var(--ease); display: flex; flex-direction: column;
  padding: 24px clamp(20px,6vw,32px); overflow-y: auto; }
.m-menu.open { transform: none; }
.m-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.m-menu__close { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; }
.m-menu__close svg { width: 26px; height: 26px; }
.m-menu nav a { display: block; font-family: var(--font-display); font-size: 1.5rem; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08); color: #fff; }
.m-menu__sub { font-size: .8rem !important; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-bright) !important;
  font-family: var(--font-sans) !important; padding-bottom: 6px !important; border: 0 !important; margin-top: 18px; }
.m-menu__brands a { font-size: 1.05rem !important; padding: 11px 0 !important; color: var(--on-dark) !important; }
.m-menu__cta { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }
body.no-scroll { overflow: hidden; }

/* ==========================================================================
   EXTENDED - Bento Grid · Scrollytelling · Process · Marquee
   ========================================================================== */

/* --------------------------------------------------------------- Clip-path word reveal (Emil Kowalski) */
.clip-line { display: block; overflow: hidden; }
.clip-line span { display: block; transform: translateY(105%); transition: transform .9s cubic-bezier(.16,1,.3,1); }
.clip-line.in span { transform: translateY(0); }
.clip-line:nth-child(2) span { transition-delay: .12s; }
.clip-line:nth-child(3) span { transition-delay: .22s; }

/* Underline draw */
.u-draw { position: relative; display: inline; }
.u-draw::after { content:""; position: absolute; bottom: 2px; left: 0; width: 100%; height: 2px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform 1s cubic-bezier(.16,1,.3,1) .5s; }
.clip-line.in .u-draw::after { transform: scaleX(1); }

/* --------------------------------------------------------------- Eco-intro (heading + globe side by side) */
.eco-intro { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(40px,5vw,80px); align-items: center; margin-bottom: clamp(48px,6vw,72px); }
.eco-intro__h { margin-top: 16px; font-size: clamp(2.2rem,4.2vw,3.6rem); line-height: 1.06; }
.eco-intro__sub { margin-top: 18px; max-width: 520px; }
.eco-intro__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Globe SVG container */
.eco-globe-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.eco-globe { width: 100%; max-width: 440px; height: auto; animation: globeFloat 9s ease-in-out infinite; filter: drop-shadow(0 20px 50px rgba(200,162,74,.18)); }
@keyframes globeFloat { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-14px) rotate(.8deg)} }
.eco-globe .loc-dot { animation: dotPulse 2.8s ease-out infinite; }
.eco-globe .loc-dot:nth-child(2){animation-delay:.6s}
.eco-globe .loc-dot:nth-child(3){animation-delay:1.2s}
.eco-globe .loc-dot:nth-child(4){animation-delay:1.8s}
@keyframes dotPulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.eco-globe .conn-line { stroke-dashoffset: 300; stroke-dasharray: 300; animation: lineDraw 2s ease-out forwards; }
.eco-globe .conn-line:nth-child(2){animation-delay:.4s}
.eco-globe .conn-line:nth-child(3){animation-delay:.8s}
@keyframes lineDraw { to { stroke-dashoffset: 0; } }

/* --------------------------------------------------------------- Bento grid */
.bento { display: grid; grid-template-columns: repeat(12,1fr); gap: clamp(14px,1.4vw,20px); }

/* column spans */
.b-w4  { grid-column: span 4; }
.b-w5  { grid-column: span 5; }
.b-w6  { grid-column: span 6; }
.b-w7  { grid-column: span 7; }
.b-w8  { grid-column: span 8; }
.b-w12 { grid-column: span 12; }

/* Base card */
.b-card { border-radius: var(--r-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line); position: relative; display: flex; flex-direction: column; min-height: 320px;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .4s; will-change: transform; }
.b-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-3); border-color: var(--line-strong); }

/* Dark/ink variants */
.b-card--ink { background: var(--ink); border-color: transparent; }
.b-card--navy { background: var(--navy); border-color: transparent; }

/* Gold top accent on hover */
.b-card::before { content:""; position: absolute; inset: 0 0 auto 0; height: 2.5px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease-out); z-index: 2; }
.b-card:hover::before { transform: scaleX(1); }

/* Flagship shimmer */
.b-card--flagship::after { content:""; position: absolute; inset: 0; background: linear-gradient(105deg,transparent 40%,rgba(231,199,102,.07) 50%,transparent 60%); transform: translateX(-100%); pointer-events: none; z-index: 3; }
.b-card--flagship.b-in::after { animation: shimmer 1.8s .4s ease-out forwards; }
@keyframes shimmer { to { transform: translateX(250%); } }

/* Horizontal layout (image left | content right) */
.b-card--h { flex-direction: row; min-height: 340px; }
.b-card--h .b-img { width: 42%; flex: none; min-height: 100%; }
.b-card--h .b-body { flex: 1; }

/* Image panel */
.b-img { position: relative; overflow: hidden; background: var(--navy); }
.b-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.b-card:hover .b-img img { transform: scale(1.06); }
.b-img::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 45%,rgba(10,23,48,.55)); }
.b-card--h .b-img::after { background: linear-gradient(90deg,transparent 60%,rgba(10,23,48,.35)); }

/* Badge on image */
.b-badge { position: absolute; top: 14px; left: 14px; z-index: 4; display: inline-flex; align-items: center; gap: 7px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff;
  background: rgba(10,23,48,.65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18); padding: 6px 12px; border-radius: var(--r-pill); }
.b-badge svg { width: 11px; height: 11px; color: var(--gold-bright); }

/* Card body */
.b-body { padding: clamp(20px,2.4vw,30px); display: flex; flex-direction: column; flex: 1; position: relative; z-index: 1; }

/* Ghost big number bg */
.b-num { position: absolute; top: 12px; right: 18px; font-family: var(--font-display); font-size: 6rem; font-weight: 700; line-height: 1; color: rgba(200,162,74,.07); pointer-events: none; z-index: 0; user-select: none; }
.b-card--ink .b-num, .b-card--navy .b-num { color: rgba(231,199,102,.08); }

/* Logo container in card body */
.b-logo { display: inline-flex; align-items: center; margin-bottom: 16px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 9px 16px; width: fit-content; }
.b-logo img { height: 36px; width: auto; max-width: 180px; object-fit: contain; }
.b-card--ink .b-logo, .b-card--navy .b-logo { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }

/* Card name */
.b-name { font-family: var(--font-display); font-size: clamp(1.15rem,1.8vw,1.45rem); font-weight: 600; color: var(--ink); margin-bottom: 6px; position: relative; z-index: 1; }
.b-card--ink .b-name, .b-card--navy .b-name { color: #fff; }

/* Card meta */
.b-meta { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--text-faint); font-weight: 500; margin-bottom: 12px; }
.b-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }
.b-card--ink .b-meta, .b-card--navy .b-meta { color: var(--on-dark-soft); }

/* Card desc */
.b-desc { font-size: .9rem; color: var(--text-soft); line-height: 1.65; flex: 1; position: relative; z-index: 1; }
.b-card--ink .b-desc, .b-card--navy .b-desc { color: var(--on-dark-soft); }

/* Chips in bento */
.b-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.b-chip { font-size: .72rem; font-weight: 600; color: var(--navy-500); background: var(--paper-2); border: 1px solid var(--line); padding: 4px 10px; border-radius: var(--r-pill); }
.b-card--ink .b-chip, .b-card--navy .b-chip { color: var(--gold-bright); background: rgba(231,199,102,.08); border-color: rgba(231,199,102,.2); }

/* Stats in data tile */
.b-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin-top: 28px; position: relative; z-index: 1; }
.b-stat__n { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.b-stat__l { font-size: .74rem; color: var(--on-dark-soft); margin-top: 5px; letter-spacing: .01em; }

/* Card foot */
.b-foot { margin-top: auto; padding-top: 18px; position: relative; z-index: 1; }

/* Brands list (luxury vehicles) */
.b-brands { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.b-brand-tag { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); background: transparent; border: 1px solid rgba(200,162,74,.35); padding: 4px 10px; border-radius: 6px; }
.b-card--ink .b-brand-tag { color: var(--gold-bright); border-color: rgba(231,199,102,.3); }

/* Stagger reveal */
[data-bento] { opacity: 0; transform: translateY(36px) scale(.97); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
[data-bento].b-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------- Process (How it works) */
.process-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: clamp(48px,6vw,72px); }
.process-track::before { content:""; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold-bright) 50%, var(--gold) 80%, transparent); z-index: 0; }
.process-step { text-align: center; padding: 0 clamp(12px,2vw,24px); position: relative; z-index: 1; }
.process-step__num { font-family: var(--font-sans); font-size: .7rem; font-weight: 700; letter-spacing: .24em; color: var(--gold-deep); margin-bottom: 12px; text-transform: uppercase; }
.process-step__ic { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg,var(--navy),var(--navy-600)); color: var(--gold-bright); display: grid; place-items: center; margin: 0 auto 22px; box-shadow: 0 0 0 8px var(--paper), var(--shadow-gold); }
.process-step__ic svg { width: 28px; height: 28px; }
.process-step h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.process-step p { font-size: .87rem; color: var(--text-soft); line-height: 1.7; }

/* --------------------------------------------------------------- Marquee ticker */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); padding-block: 18px; }
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 34s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 20px; padding: 0 32px; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); white-space: nowrap; }
.marquee-sep { color: var(--gold); font-size: 1rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- Impact numbers band */
.impact-band { background: var(--ink); padding-block: clamp(48px,6vw,72px); }
.impact-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; }
.impact-item { padding: clamp(20px,2vw,32px) clamp(12px,2vw,24px); border-right: 1px solid rgba(255,255,255,.08); text-align: center; }
.impact-item:last-child { border-right: 0; }
.impact-n { font-family: var(--font-display); font-size: clamp(2.8rem,5vw,4rem); font-weight: 600; line-height: 1; }
.impact-n .gold-text { display: inline; }
.impact-l { margin-top: 10px; font-size: .82rem; color: var(--on-dark-soft); letter-spacing: .04em; }

/* --------------------------------------------------------------- Scroll Spotlight */
.eco-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

/* LEFT sticky image stage */
.eco-spotlight__stage {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  height: calc(100svh - var(--header-h) - 40px);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--navy);
}
.eco-stage-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s var(--ease-out);
}
.eco-stage-img--active { opacity: 1; }
.eco-stage-img img { width: 100%; height: 100%; object-fit: cover; }
/* Autohaus image is rotated in the original file - correct it */
.eco-stage-img[data-stage="4"] img { transform: rotate(90deg) scale(1.6); }
.eco-stage-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, rgba(10,23,48,.18) 0%, transparent 28%, transparent 52%, rgba(10,23,48,.72) 100%);
}

/* Bottom meta bar */
.eco-stage-meta {
  position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
}
.eco-stage-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: rgba(10,23,48,.55); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 18px; border-radius: var(--r-pill);
  transition: background .5s var(--ease-out);
}
.eco-stage-count {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,.65); letter-spacing: .06em;
  transition: color .4s;
}

/* Vertical dot nav */
.eco-stage-dots {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  z-index: 4; display: flex; flex-direction: column; gap: 9px;
}
.eco-dot {
  width: 6px; height: 6px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.32); border: 0; padding: 0; cursor: pointer;
  transition: background .4s var(--ease-out), height .4s var(--ease-out), border-radius .4s;
}
.eco-dot--active {
  background: var(--gold-bright);
  height: 24px;
  border-radius: 3px;
}
.eco-dot:hover:not(.eco-dot--active) { background: rgba(255,255,255,.6); }

/* RIGHT scrolling list */
.eco-spotlight__scroll { padding-left: clamp(0px, 1.5vw, 16px); }

/* Division separator */
.eco-div-sep {
  display: flex; align-items: center; gap: 14px;
  padding: 52px 0 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-deep);
}
.eco-div-sep::before { content:""; flex:none; width:22px; height:1px; background:var(--gold); }
.eco-div-sep:first-child { padding-top: 0; }

/* Company row */
.eco-row {
  padding: 28px 0 28px 24px;
  border-top: 1px solid var(--line);
  border-left: 3px solid transparent;
  opacity: .32;
  transform: translateX(10px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out),
              border-color .4s, background .4s;
}
.eco-div-sep + .eco-row { border-top-color: transparent; }
.eco-row.active {
  opacity: 1;
  transform: none;
  border-left-color: var(--gold);
}
.eco-row:not(.active):hover { opacity: .62; transform: translateX(4px); }

.eco-row__head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 14px;
}
.eco-row__num {
  font-family: var(--font-sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; color: var(--text-faint); min-width: 24px;
  transition: color .4s;
}
.eco-row.active .eco-row__num { color: var(--gold-deep); }
.eco-row__logo {
  display: inline-flex; align-items: center;
}
.eco-row__logo img { height: 44px; width: auto; max-width: 160px; object-fit: contain; }

.eco-row__name {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600; color: var(--ink); line-height: 1.1; margin-bottom: 7px;
}
.eco-row__meta {
  display: flex; align-items: center; gap: 8px;
  font-size: .79rem; color: var(--text-faint); font-weight: 500; margin-bottom: 14px;
}
.eco-row__meta .sep {
  width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong);
}
.eco-row__desc {
  font-size: .94rem; color: var(--text-soft); line-height: 1.72;
  max-width: 500px;
}
.eco-row__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.eco-row__foot { margin-top: 18px; }

/* Responsive */
@media (max-width: 900px) {
  .eco-spotlight { grid-template-columns: 1fr; }
  .eco-spotlight__stage {
    position: relative; top: 0;
    height: 56vw; max-height: 380px;
    border-radius: var(--r-lg);
  }
  .eco-stage-dots { display: none; }
  .eco-row { transform: none; }
}

/* --------------------------------------------------------------- Responsive extensions */
@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(6,1fr); }
  .b-w4,.b-w5,.b-w6,.b-w7,.b-w8 { grid-column: span 3; }
  .b-w12 { grid-column: span 6; }
  .b-card--h { flex-direction: column; }
  .b-card--h .b-img { width: 100%; min-height: 220px; }
  .eco-intro { grid-template-columns: 1fr; }
  .eco-intro__globe-wrap { display: none; }
  .process-track::before { display: none; }
}
@media (max-width: 860px) {
  .process-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .impact-grid { grid-template-columns: repeat(3,1fr); }
  .impact-item:nth-child(3) { border-right: 0; }
  .impact-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 680px) {
  .bento { grid-template-columns: 1fr; }
  .b-w4,.b-w5,.b-w6,.b-w7,.b-w8,.b-w12 { grid-column: 1; }
  .process-track { grid-template-columns: 1fr; gap: 40px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); }
  .impact-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); border-right: 0; }
  .impact-item:nth-child(5) { grid-column: span 2; border-right: 0; border-top: 1px solid rgba(255,255,255,.08); }
}
