/* ============================================================
   MULFORD PLASTICS MALAYSIA — Redesign prototype
   Clean industrial-architectural · white-dominant · orange accent
   Type: Archivo / Archivo Expanded (super-family)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --white: #ffffff;
  --paper: #f4f6f8;     /* cool light section alt */
  --paper-2: #e9ecef;
  --charcoal: #10141a;  /* footer / dark band */
  --charcoal-2: #181d25;

  /* Ink */
  --ink: #12161c;       /* headings */
  --body: #3a414a;      /* body text on white (~9:1) */
  --muted: #687078;     /* secondary (~4.7:1) */
  --on-dark: #eef1f4;
  --on-dark-muted: #a4adb8;

  /* Accent (brand orange) */
  --accent: #f26722;
  --accent-600: #df5712;     /* button bg, hover */
  --accent-700: #bd4a12;     /* orange text on white (AA) */
  --accent-tint: #fff3ec;    /* faint wash */
  --accent-tint-2: #ffe6d6;

  /* Structure */
  --steel: #44525f;          /* structural slate (replaces old green) */
  --line: #e4e7eb;
  --line-2: #d3d8de;
  --line-dark: #2a313b;

  /* Type */
  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Archivo Expanded", "Archivo", system-ui, sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Shadow */
  --sh-1: 0 1px 2px rgba(16,20,26,.06), 0 2px 8px rgba(16,20,26,.05);
  --sh-2: 0 4px 14px rgba(16,20,26,.08), 0 18px 40px rgba(16,20,26,.10);
  --sh-3: 0 10px 30px rgba(16,20,26,.12), 0 30px 70px rgba(16,20,26,.16);
  --ring: 0 0 0 3px rgba(242,103,34,.30);

  /* Motion */
  --e-out: cubic-bezier(.16,.84,.34,1);     /* ease-out-quint-ish */
  --e-out-soft: cubic-bezier(.22,.61,.36,1);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 74px;

  /* Z-scale */
  --z-base: 1;
  --z-mega: 40;
  --z-header: 50;
  --z-drawer: 60;
  --z-overlay: 55;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, picture, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--r-sm); }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
  font-weight: 700;
}
p { text-wrap: pretty; }

/* ---------- Helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 120px); }
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-700);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
}
.lede { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--muted); max-width: 60ch; }
.spec {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 22px;
  display: inline-flex; align-items: center; gap: .55em;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .01em;
  border-radius: var(--r-sm);
  transition: transform .25s var(--e-out), background-color .25s var(--e-out), box-shadow .25s var(--e-out), color .2s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .35s var(--e-out); }
.btn-primary { background: var(--accent-600); color: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 8px 20px -8px rgba(223,87,18,.55); }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(223,87,18,.6); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--charcoal-2); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn-lg { --pad-y: 16px; --pad-x: 30px; font-size: 1rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--accent-700);
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform .3s var(--e-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--charcoal);
  color: var(--on-dark-muted);
  font-size: .8rem;
  border-bottom: 1px solid var(--line-dark);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-left .ti { display: inline-flex; align-items: center; gap: 7px; }
.topbar-left svg { width: 14px; height: 14px; color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-right .sep { width: 1px; height: 14px; background: var(--line-dark); }
.topbar-shop { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--on-dark); }
.topbar-shop img { width: 15px; height: 15px; object-fit: contain; }
@media (max-width: 860px) { .topbar .topbar-left .ti-loc { display: none; } }
@media (max-width: 600px) { .topbar { display: none; } }

/* ============================================================
   HEADER + NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--e-out), border-color .3s;
}
.header.scrolled { box-shadow: 0 6px 22px -14px rgba(16,20,26,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 24px; }
.brand img { height: 56px; width: auto; }
.nav-main { display: flex; align-items: center; gap: 2px; }
.nav-main > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-weight: 500; font-size: .95rem; color: var(--ink);
  border-radius: var(--r-sm);
  transition: color .2s, background-color .2s;
}
.nav-link .chev { width: 13px; height: 13px; color: var(--muted); transition: transform .3s var(--e-out), color .2s; }
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--accent-700); background: var(--accent-tint); }
.nav-link:hover .chev, .nav-link[aria-expanded="true"] .chev { color: var(--accent); }
.nav-link[aria-expanded="true"] .chev { transform: rotate(180deg); }
.nav-link.is-active { color: var(--accent-700); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; }

/* ============================================================
   MEGA MENU (shared)
   ============================================================ */
.mega {
  position: fixed; left: 0; right: 0; top: var(--header-h);
  z-index: var(--z-mega);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-3);
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .26s var(--e-out), transform .3s var(--e-out), visibility .26s;
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow: auto;
}
.has-topbar .mega { top: var(--header-h); }
.mega.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { display: grid; padding-block: 30px 26px; }

/* Products mega: two-pane */
.mega-products .mega-inner { grid-template-columns: 248px 1fr; gap: 0; }
.mat-rail { border-right: 1px solid var(--line); padding-right: 18px; }
.mat-rail .rail-head { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; padding: 0 14px 12px; }
.mat-tab {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 11px 14px; border-radius: var(--r);
  text-align: left; color: var(--ink); font-weight: 600; font-size: .95rem;
  transition: background-color .2s, color .2s;
}
.mat-tab .mat-count { margin-left: auto; font-size: .78rem; font-weight: 600; color: var(--muted); }
.mat-tab .mat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: background-color .2s, transform .2s; }
.mat-tab:hover, .mat-tab.active { background: var(--accent-tint); color: var(--accent-700); }
.mat-tab.active .mat-dot, .mat-tab:hover .mat-dot { background: var(--accent); transform: scale(1.25); }
.mat-tab.active .mat-count { color: var(--accent-700); }

.mat-panels { padding-left: 34px; min-height: 320px; position: relative; }
.mat-panel { display: none; }
.mat-panel.active { display: block; animation: panelIn .35s var(--e-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.mat-panel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.mat-panel-head h3 { font-size: 1.15rem; }
.mat-panel-head p { font-size: .9rem; color: var(--muted); max-width: 46ch; margin-top: 4px; }

.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(184px, 1fr)); gap: 14px; }
.tile {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--white); overflow: hidden;
  transition: transform .3s var(--e-out), box-shadow .3s var(--e-out), border-color .3s;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--accent-tint-2); }
.tile-media {
  aspect-ratio: 5 / 3; background: var(--paper);
  display: grid; place-items: center; padding: 14px;
  overflow: hidden;
}
.tile-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s var(--e-out); }
.tile:hover .tile-media img { transform: scale(1.06); }
.tile-body { padding: 12px 14px 14px; border-top: 1px solid var(--line); }
.tile-name { font-family: var(--sans); font-weight: 700; font-size: .92rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.tile-name .arr { color: var(--accent); opacity: 0; transform: translateX(-4px); transition: .3s var(--e-out); }
.tile:hover .tile-name .arr { opacity: 1; transform: none; }
.tile-form { margin-top: 4px; font-size: .73rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

.mega-foot {
  grid-column: 1 / -1; margin-top: 26px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.mega-foot .mf-note { font-size: .85rem; color: var(--muted); }
.mega-foot .mf-note strong { color: var(--ink); }

/* Solutions mega: column groups */
.mega-solutions .mega-inner { grid-template-columns: 1fr; }
.sol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 34px; }
.sol-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-700); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.sol-col li { margin-bottom: 2px; }
.sol-col a {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 8px; margin-left: -8px; border-radius: var(--r-sm);
  color: var(--body); font-size: .92rem; font-weight: 500;
  transition: background-color .18s, color .18s, padding-left .2s;
}
.sol-col a .sarr { width: 14px; height: 14px; color: var(--accent); opacity: 0; transform: translateX(-4px); transition: .25s var(--e-out); margin-left: auto; }
.sol-col a:hover { background: var(--accent-tint); color: var(--accent-700); }
.sol-col a:hover .sarr { opacity: 1; transform: none; }
.sol-feature {
  grid-column: span 1;
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  min-height: 220px; background: var(--charcoal);
  display: flex; align-items: flex-end;
}
.sol-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.sol-feature .sf-body { position: relative; padding: 18px; color: #fff; background: linear-gradient(to top, rgba(10,12,16,.85), transparent); width: 100%; }
.sol-feature .sf-body h5 { font-family: var(--display); font-size: 1.05rem; }
.sol-feature .sf-body p { font-size: .82rem; color: var(--on-dark-muted); margin-top: 2px; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero { position: relative; height: clamp(540px, 82vh, 820px); overflow: hidden; background: var(--charcoal); }
.hero-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .9s var(--e-out-soft), visibility .9s;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide .bg { position: absolute; inset: 0; }
.hero-slide .bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s linear;
}
.hero-slide.active .bg img { transform: scale(1.0); }
.hero-slide .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,12,16,.56) 0%, rgba(10,12,16,.32) 42%, rgba(10,12,16,.10) 70%, rgba(10,12,16,0) 100%),
    linear-gradient(0deg, rgba(10,12,16,.28), transparent 48%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-inner { max-width: 660px; }
.hero-kicker { color: #fff; margin-bottom: 20px; }
.hero-kicker::before { background: var(--accent); }
.hero-kicker { font-family: var(--sans); font-weight: 600; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .7em; }
.hero .hero-title {
  color: #fff; font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1.0;
  letter-spacing: -0.025em;
  font-family: var(--display); font-weight: 800;
}
.hero .hero-title .accent { color: var(--accent); }
.hero-sub { color: rgba(255,255,255,.82); font-size: clamp(1.02rem, 1.7vw, 1.22rem); margin-top: 22px; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.hero-chip {
  font-family: var(--sans); font-weight: 600; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; padding: 7px 13px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.07);
  backdrop-filter: blur(4px);
}

/* per-slide entrance */
.hero-slide .hero-kicker, .hero-slide .hero-title, .hero-slide .hero-sub, .hero-slide .hero-actions, .hero-slide .hero-chips {
  opacity: 0; transform: translateY(22px);
}
.hero-slide.active .hero-kicker { animation: heroIn .7s var(--e-out) .15s forwards; }
.hero-slide.active .hero-title { animation: heroIn .8s var(--e-out) .28s forwards; }
.hero-slide.active .hero-sub { animation: heroIn .8s var(--e-out) .42s forwards; }
.hero-slide.active .hero-actions { animation: heroIn .8s var(--e-out) .54s forwards; }
.hero-slide.active .hero-chips { animation: heroIn .8s var(--e-out) .64s forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* Hero controls */
.hero-ui {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  pointer-events: none;
}
.hero-ui .wrap { display: flex; align-items: center; justify-content: space-between; padding-bottom: 30px; gap: 16px; }
.hero-dots { display: flex; gap: 10px; pointer-events: auto; }
.hero-dot {
  width: 40px; height: 4px; border-radius: 100px; background: rgba(255,255,255,.28);
  position: relative; overflow: hidden; transition: background-color .3s;
}
.hero-dot.active { background: rgba(255,255,255,.4); }
.hero-dot .fill { position: absolute; inset: 0; width: 0; background: var(--accent); }
.hero-dot.active .fill { width: 100%; transition: width var(--slide-dur, 6s) linear; }
.hero-arrows { display: flex; gap: 10px; pointer-events: auto; }
.hero-arrow {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  background: rgba(255,255,255,.06); backdrop-filter: blur(6px);
  transition: background-color .25s, transform .25s var(--e-out), border-color .25s;
}
.hero-arrow:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.06); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-count { color: rgba(255,255,255,.8); font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .1em; pointer-events: auto; }
.hero-count b { color: #fff; }
@media (max-width: 720px) {
  .hero-ui .wrap { flex-wrap: wrap; justify-content: center; }
  .hero-arrows { display: none; }
}

/* ============================================================
   TRUST / MARQUEE STRIP
   ============================================================ */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust .wrap { display: flex; align-items: center; gap: clamp(20px, 5vw, 64px); flex-wrap: wrap; justify-content: space-between; padding-block: 22px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .ti-num { font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--ink); line-height: 1; }
.trust-item .ti-txt { font-size: .82rem; color: var(--muted); font-weight: 500; line-height: 1.25; max-width: 16ch; }
.trust-sub { display: flex; align-items: center; gap: 12px; font-size: .82rem; color: var(--muted); }
.trust-sub img { height: 26px; width: auto; opacity: .9; mix-blend-mode: multiply; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 44px; flex-wrap: wrap; }
.sec-head .sh-left { max-width: 60ch; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); margin-top: 16px; }
.sec-head p { margin-top: 16px; }

/* ============================================================
   ABOUT (intro feature)
   ============================================================ */
.about { position: relative; overflow: hidden; }
/* giant ambient "70" watermark behind the copy */
.about-watermark {
  position: absolute; top: 50%; left: -2vw; transform: translateY(-50%);
  font-family: var(--display); font-weight: 800; letter-spacing: -.05em;
  font-size: clamp(20rem, 42vw, 46rem); line-height: .72;
  color: #eef1f4; z-index: 0; pointer-events: none; user-select: none;
}
.about .wrap { position: relative; z-index: 1; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.04fr;
  gap: clamp(36px, 6vw, 86px); align-items: center;
}
.about-copy h1, .about-copy h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); margin-top: 16px; }
.about-copy p { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--muted); line-height: 1.6; max-width: 60ch; }
.about-copy .lede { margin-top: 18px; }
.about-copy p + p { margin-top: 14px; }
.about-points { list-style: none; margin: 28px 0 32px; display: grid; gap: 14px; }
.about-points li {
  display: flex; align-items: center; gap: 13px;
  font-size: 1rem; font-weight: 500; color: var(--ink);
}
.about-points li svg {
  flex: none; width: 26px; height: 26px; padding: 6px;
  border-radius: 50%; background: var(--accent-tint);
  stroke: var(--accent); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
}

.about-figure { position: relative; margin: 0; }
.about-img {
  display: block; width: 100%; aspect-ratio: 4 / 5; max-height: 560px;
  object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--sh-3);
}
.about-year {
  position: absolute; left: clamp(-14px, -2.4vw, -52px); bottom: clamp(-18px, -2.4vw, -34px);
  display: flex; align-items: center; gap: 20px;
  padding: 20px 30px; background: var(--white);
  border-radius: var(--r-lg); box-shadow: var(--sh-3);
}
.ay-num {
  font-family: var(--display); font-weight: 800; letter-spacing: -.045em; line-height: .82;
  color: var(--ink); font-size: clamp(4.6rem, 9vw, 7.6rem);
}
.ay-plus { color: var(--accent); }
.ay-cap {
  font-family: var(--sans); font-weight: 700; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); line-height: 1.5;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-figure { max-width: 460px; }
  .about-watermark { font-size: 34rem; opacity: .6; }
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.products { background: var(--paper); }
.mat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.mat-filter button {
  padding: 9px 17px; border-radius: 100px; font-weight: 600; font-size: .9rem;
  color: var(--steel); background: var(--white); border: 1px solid var(--line-2);
  transition: all .22s var(--e-out);
}
.mat-filter button:hover { border-color: var(--ink); color: var(--ink); }
.mat-filter button.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.pcard {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s var(--e-out), box-shadow .35s var(--e-out), border-color .3s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: var(--accent-tint-2); }
.pcard-media { position: relative; aspect-ratio: 828 / 648; background: var(--paper-2); overflow: hidden; isolation: isolate; }
/* background scene photo */
.pcard-photo { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--e-out); }
.pcard:hover .pcard-photo { transform: scale(1.05); }
/* faint top + bottom shading so logo plate and tag stay legible on any photo */
.pcard-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(12,16,22,.22) 0%, rgba(12,16,22,0) 30%);
}
/* brand logo — the asset already includes its own white banner + shadow,
   so just place it, no added background or frame */
.pcard-logo {
  position: absolute; top: -3px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: clamp(150px, 50%, 198px);
}
.pcard-logo img { display: block; width: 100%; height: auto; }
/* product circle — straddles the photo/body seam, centred on it
   (top half over the photo, bottom half in the body). With ~18px body
   padding and a ~92px circle, -64px puts its centre on the boundary. */
.pcard-circle {
  float: right; position: relative; z-index: 2;
  width: clamp(90px, 35%, 108px); margin: -64px 0 8px 14px;
  filter: drop-shadow(0 5px 14px rgba(16,20,26,.28));
  transition: transform .4s var(--e-out);
}
.pcard-circle img { display: block; width: 100%; height: auto; }
.pcard:hover .pcard-circle { transform: translateY(-2px) scale(1.03); }
/* material tag (bottom-left) */
.pcard-tag {
  z-index: 3;
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--sans); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: rgba(16,20,26,.72); backdrop-filter: blur(4px);
  padding: 6px 11px; border-radius: 100px;
}
.pcard-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.pcard-flow { flex: 1; }
.pcard-body h3 { font-size: 1.12rem; }
.pcard-body p { font-size: .88rem; color: var(--muted); margin-top: 8px; }
.pcard-body .link-arrow { margin-top: 16px; font-size: .9rem; clear: both; }
.products .more-row { margin-top: 36px; display: flex; justify-content: center; }

/* ============================================================
   SOLUTIONS / APPLICATIONS
   ============================================================ */
.apps .sec-head { margin-bottom: 40px; }
.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 16px; }
.app-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 230px; display: flex; align-items: flex-end;
  color: #fff; background: var(--charcoal);
  isolation: isolate;
}
.app-card.big { grid-column: span 2; grid-row: span 2; }
.app-card.wide { grid-column: span 2; }
.app-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--e-out); }
.app-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8,10,14,.9) 0%, rgba(8,10,14,.25) 55%, rgba(8,10,14,.05) 100%); transition: background .3s; }
.app-card:hover img { transform: scale(1.06); }
.app-card:hover::after { background: linear-gradient(to top, rgba(191,74,18,.9) 0%, rgba(8,10,14,.3) 60%, rgba(8,10,14,.05) 100%); }
.app-body { position: relative; padding: 20px 22px; width: 100%; }
.app-body .spec { color: rgba(255,255,255,.7); }
.app-body h3 { font-family: var(--display); color: #fff; font-size: clamp(1.05rem, 1.6vw, 1.35rem); margin-top: 6px; }
.app-body .app-go { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: .82rem; font-weight: 600; color: #fff; opacity: 0; transform: translateY(6px); transition: .3s var(--e-out); }
.app-card:hover .app-body .app-go { opacity: 1; transform: none; }
.app-card.big h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }

/* ============================================================
   STATS / 70 YEARS BAND
   ============================================================ */
.stats { background: var(--charcoal); color: var(--on-dark); position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 80% at 70% 30%, #000, transparent);
}
.stats .wrap { position: relative; }
.stats-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; margin-bottom: 54px; }
.stats h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.4rem); }
.stats h2 .accent { color: var(--accent); }
.stats-top p { color: var(--on-dark-muted); margin-top: 18px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--line-dark); }
.stat { padding-top: 28px; border-right: 1px solid var(--line-dark); padding-right: 20px; }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; line-height: 1; letter-spacing: -0.03em; }
.stat .num .suf { color: var(--accent); }
.stat .lbl { margin-top: 12px; font-size: .9rem; color: var(--on-dark-muted); font-weight: 500; }
@media (max-width: 820px) { .stats-top { grid-template-columns: 1fr; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: none; } }

/* ============================================================
   PROJECT GALLERY
   ============================================================ */
.gallery .gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gcard {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--paper);
  box-shadow: var(--sh-1);
}
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--e-out); }
.gcard:hover img { transform: scale(1.05); }
.gcard::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(16,20,26,.06); border-radius: inherit; pointer-events: none; }
.gcard-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 34px 16px 14px; display: flex; flex-direction: column; gap: 3px; background: linear-gradient(to top, rgba(10,12,16,.85) 0%, rgba(10,12,16,.35) 55%, transparent 100%); color: #fff; }
.gcard-name { font-family: var(--display); font-weight: 800; font-size: 1.06rem; letter-spacing: -.01em; line-height: 1.1; }
.gcard-sol { font-family: var(--sans); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.82); }
@media (max-width: 860px) { .gallery .gal-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SOCIAL STRIP
   ============================================================ */
.social { background: var(--paper); }
.social .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.social h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.social .ig-handle { color: var(--accent-700); }
.social p { margin-top: 14px; }
.social-actions { margin-top: 24px; display: flex; gap: 12px; }
.soc-btn { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 1px solid var(--line-2); color: var(--ink); transition: .25s var(--e-out); }
.soc-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.soc-btn svg { width: 26px; height: 26px; }
.ig-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ig-mosaic img, .ig-mosaic .ig-cell { aspect-ratio: 4 / 5; border-radius: var(--r); object-fit: cover; }
.ig-mosaic .ig-cell { display: block; overflow: hidden; }
.ig-mosaic .ig-cell img { aspect-ratio: auto; width: 100%; height: 100%; border-radius: 0; transition: transform .45s var(--e-out); }
.ig-mosaic .ig-cell:hover img { transform: scale(1.06); }
@media (max-width: 760px) { .social .wrap { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--accent); color: #fff; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; right: -8%; top: -40%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%);
}
.cta-band .wrap { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-block: clamp(40px, 6vw, 72px); }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.7rem); max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 12px; max-width: 44ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); color: var(--on-dark-muted); padding-top: clamp(56px, 7vw, 90px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.footer .f-logo { height: 68px; margin-bottom: 22px; }
.footer .f-about { font-size: .9rem; max-width: 36ch; color: var(--on-dark-muted); }
.footer .f-sub { margin-top: 22px; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: #69727d; }
.footer .f-sub img { height: 30px; margin-top: 10px; background: #fff; padding: 4px 8px; border-radius: 6px; }
.f-col h4 { font-family: var(--sans); color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.f-col li { margin-bottom: 10px; }
.f-col a { font-size: .9rem; transition: color .2s, padding-left .2s; }
.f-col a:hover { color: var(--accent); padding-left: 4px; }
.f-visit .fv-item { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: .9rem; }
.f-visit .fv-item svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.f-visit .fv-item img { width: 18px; height: 18px; object-fit: contain; flex: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 24px; flex-wrap: wrap; font-size: .82rem; }
.footer-bottom .fb-social { display: flex; gap: 10px; }
.footer-bottom .fb-social a { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-dark); color: var(--on-dark-muted); transition: .2s; }
.footer-bottom .fb-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-bottom .fb-social svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.overlay {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(10,12,16,.5); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: var(--z-drawer);
  width: min(420px, 90vw); background: var(--white);
  transform: translateX(100%); transition: transform .4s var(--e-out);
  display: flex; flex-direction: column;
  box-shadow: var(--sh-3);
}
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.drawer-head img { height: 34px; }
.drawer-close { width: 42px; height: 42px; border-radius: var(--r-sm); display: grid; place-items: center; color: var(--ink); border: 1px solid var(--line); }
.drawer-close:hover { background: var(--paper); }
.drawer-body { overflow: auto; padding: 12px 16px 30px; flex: 1; }
.dnav-item { border-bottom: 1px solid var(--line); }
.dnav-link { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 6px; font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--ink); text-align: left; }
.dnav-link .chev { width: 18px; height: 18px; color: var(--muted); transition: transform .3s var(--e-out); }
.dnav-link[aria-expanded="true"] .chev { transform: rotate(180deg); color: var(--accent); }
.dnav-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--e-out); }
.dnav-sub.open { grid-template-rows: 1fr; }
.dnav-sub-inner { overflow: hidden; }
.dnav-sub a { display: flex; align-items: center; gap: 10px; padding: 11px 6px 11px 14px; font-size: .92rem; color: var(--body); }
.dnav-sub a:hover { color: var(--accent-700); }
.dnav-sub .grp { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding: 14px 6px 6px; }
.dnav-sub img { width: 34px; height: 24px; object-fit: contain; border-radius: 4px; background: var(--paper); }
.drawer-cta { padding: 16px; border-top: 1px solid var(--line); display: grid; gap: 10px; }

@media (max-width: 980px) {
  .nav-main, .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--line-2); }
  .nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }
  .nav-cta { display: flex; }
}

/* ============================================================
   SCROLL REVEAL (enhances already-visible content)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--e-out), transform .7s var(--e-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* Responsive: products mega → stacked, solutions → 2col */
@media (max-width: 1080px) {
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-feature { display: none; }
}
@media (max-width: 760px) {
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .app-card.big { grid-column: span 2; grid-row: span 1; }
  .gallery .gal-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .app-grid { grid-template-columns: 1fr; }
  .app-card.big, .app-card.wide { grid-column: span 1; }
}

/* ============================================================
   3-PANE MEGA MENU (Material › Type › Brand / Category › Item › Preview)
   ============================================================ */
.mega3-inner { display: grid; grid-template-columns: 268px 234px 1fr; padding-block: 30px 22px; }
.mega3-sol { grid-template-columns: 268px 326px 1fr; }
.m3-col { padding-inline: 28px; min-width: 0; }
.m3-col:first-child { padding-left: 4px; }
.m3-col:last-child { padding-right: 4px; }
.m3-col + .m3-col { border-left: 1px solid var(--line); }

.m3-title { font-family: var(--display); font-weight: 800; color: var(--accent-700); font-size: 1.32rem; letter-spacing: -0.02em; margin-bottom: 16px; }
.m3-label { font-family: var(--sans); font-weight: 600; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }

/* Column 1 — category/material list */
.m3-catlist { display: flex; flex-direction: column; gap: 2px; }
.m3-catbtn {
  position: relative; display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left; padding: 9px 13px; border-radius: var(--r);
  color: var(--ink); font-weight: 600; font-size: .92rem; line-height: 1.2;
  transition: background-color .2s, color .2s;
}
.m3-catbtn .m3-ic { width: 36px; height: 30px; object-fit: contain; flex: none; }
.m3-catbtn span em { font-style: normal; color: var(--muted); font-weight: 500; }
.m3-catbtn:hover, .m3-catbtn.active { background: var(--accent-tint); color: var(--accent-700); }
.m3-catbtn:hover span em, .m3-catbtn.active span em { color: var(--accent-700); }
.m3-catbtn.active::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px; border-radius: 3px; background: var(--accent); }

/* Column 2 — types (products) */
.m3-typeset { display: none; flex-direction: column; gap: 2px; }
.m3-typeset.active { display: flex; }
.m3-typebtn {
  display: flex; align-items: center; gap: 11px; width: 100%; text-align: left;
  padding: 9px 12px; border-radius: var(--r-sm);
  color: var(--body); font-weight: 600; font-size: .9rem;
  transition: background-color .2s, color .2s;
}
.m3-typebtn .m3-ic-s { width: 22px; height: 18px; object-fit: contain; flex: none; opacity: .7; }
.m3-typebtn[data-type="all"] { color: var(--muted); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.m3-typebtn:hover, .m3-typebtn.active { background: var(--accent-tint); color: var(--accent-700); }

/* Column 3 — brand cards (products) */
.m3-brandset { display: none; }
.m3-brandset.active { display: flex; flex-wrap: wrap; gap: 24px 30px; align-items: flex-start; animation: panelIn .35s var(--e-out); }
.m3-group { margin-bottom: 0; }
.m3-group-h { font-family: var(--sans); font-weight: 700; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.m3-cards { display: flex; flex-wrap: wrap; gap: 14px; }
.m3-card {
  flex: none; width: 220px;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--white);
  overflow: hidden;
  transition: transform .3s var(--e-out), box-shadow .3s var(--e-out), border-color .3s;
}
.m3-card-media { position: relative; aspect-ratio: 5 / 3; overflow: hidden; }
.m3-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.05); transition: transform .5s var(--e-out); }
.m3-card-tag {
  position: absolute; bottom: 8px; left: 8px; z-index: 2;
  font-family: var(--sans); font-weight: 700; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(16,20,26,.72); backdrop-filter: blur(4px);
  padding: 4px 9px; border-radius: 100px;
}
.m3-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--accent-tint-2); }
.m3-card:hover .m3-card-media img { transform: scale(1.1); }

/* Solutions — items + preview */
.m3-itemset { display: none; flex-direction: column; gap: 1px; }
.m3-itemset.active { display: flex; animation: panelIn .35s var(--e-out); }
.m3-item { display: flex; flex-direction: column; gap: 2px; padding: 9px 12px; border-radius: var(--r-sm); transition: background-color .18s; }
.m3-item-name { font-weight: 600; font-size: .92rem; color: var(--ink); transition: color .18s; }
.m3-item-mat { font-size: .72rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.m3-item:hover, .m3-item.active { background: var(--accent-tint); }
.m3-item:hover .m3-item-name, .m3-item.active .m3-item-name { color: var(--accent-700); }
.m3-item:hover .m3-item-mat, .m3-item.active .m3-item-mat { color: var(--accent-700); }

.m3-preview { display: flex; flex-direction: column; }
.m3-figure {
  position: relative; display: block; flex: 1; min-height: 250px;
  border-radius: var(--r-lg); overflow: hidden; background: var(--charcoal);
}
.m3-figimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.m3-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,10,14,.88) 0%, rgba(8,10,14,.2) 55%, transparent 100%); }
.m3-figcap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 20px; width: 100%; }
.m3-figtitle { display: block; font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: #fff; }
.m3-figmat { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .05em; color: var(--on-dark-muted); margin-top: 4px; }
.m3-figgo {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .76rem; font-weight: 700; color: #fff;
  background: var(--accent-600); padding: 8px 13px; border-radius: 100px;
  box-shadow: var(--sh-1); transition: transform .25s var(--e-out), background-color .2s;
}
.m3-figgo svg { width: 1em; height: 1em; }
.m3-figure:hover .m3-figgo { background: var(--accent); transform: translateX(2px); }

.mega3-foot {
  grid-column: 1 / -1; margin: 26px 4px 0; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.mega3-foot .mf-note { font-size: .85rem; color: var(--muted); }
.mega3-foot .mf-note strong { color: var(--ink); }

@media (max-width: 1120px) {
  .mega3-inner { grid-template-columns: 236px 200px 1fr; }
  .mega3-sol { grid-template-columns: 236px 280px 1fr; }
  .m3-col { padding-inline: 20px; }
}

/* drawer brand sublist captions */
.dnav-sub a small { color: var(--muted); font-weight: 500; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.crumb { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--muted); margin-bottom: 24px; }
.crumb a { color: var(--muted); transition: color .2s; }
.crumb a:hover { color: var(--accent-700); }
.crumb [aria-current] { color: var(--ink); font-weight: 600; }

.about-hero { background: var(--white); padding-top: clamp(34px, 4vw, 60px); padding-bottom: clamp(56px, 8vw, 104px); }
.about-hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.about-hero-copy h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); line-height: 1.05; letter-spacing: -.025em; margin-top: 16px; text-wrap: balance; }
.about-hero-copy .lede { margin-top: 20px; max-width: 52ch; }
.about-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.about-hero-fig { position: relative; margin: 0; }
.about-hero-fig img { display: block; width: 100%; aspect-ratio: 4 / 5; max-height: 560px; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--sh-3); }
.about-hero-badge { position: absolute; left: clamp(-14px, -2.2vw, -42px); bottom: clamp(-16px, -2.2vw, -30px); display: flex; align-items: center; gap: 18px; padding: 18px 26px; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--sh-3); }
.ahb-num { font-family: var(--display); font-weight: 800; line-height: .82; letter-spacing: -.045em; color: var(--ink); font-size: clamp(3.4rem, 6vw, 5rem); }
.ahb-plus { color: var(--accent); }
.ahb-cap { font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); line-height: 1.5; }

.ab-story { background: var(--paper); }
.ab-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.ab-split-fig { margin: 0; }
.ab-split-fig img { display: block; width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--sh-2); }
.ab-split-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-top: 14px; text-wrap: balance; }
.ab-split-copy .lede { margin-top: 18px; }
.ab-split-copy .ab-body { margin-top: 15px; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.6; max-width: 56ch; text-wrap: pretty; }

.ab-industries .ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }

.ab-why-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.ab-why-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: 14px; text-wrap: balance; }
.ab-why-head .lede { margin-top: 16px; }
.ab-why-list { display: grid; }
.ab-why-item { padding: 22px 2px; border-top: 1px solid var(--line); }
.ab-why-item:first-child { border-top: none; padding-top: 0; }
.ab-why-item h3 { font-size: 1.12rem; color: var(--ink); }
.ab-why-item p { margin-top: 7px; color: var(--muted); font-size: .96rem; line-height: 1.6; max-width: 62ch; }

.ab-brands { background: var(--paper); }
.brands-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.bstrip-item { display: flex; align-items: center; justify-content: center; min-height: 88px; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); transition: border-color .25s, transform .25s var(--e-out), box-shadow .25s; }
.bstrip-item:hover { border-color: var(--accent-tint-2); transform: translateY(-2px); box-shadow: var(--sh-1); }
.bstrip-item img { width: 100%; max-width: 178px; height: auto; max-height: 54px; object-fit: contain; }

.ab-parent-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(28px, 5vw, 60px); align-items: center; background: var(--charcoal); color: var(--on-dark); padding: clamp(30px, 5vw, 56px); border-radius: var(--r-xl); }
.ab-parent-copy .eyebrow { color: var(--accent); }
.ab-parent-copy h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 12px; text-wrap: balance; }
.ab-parent-copy .lede { color: var(--on-dark-muted); margin-top: 14px; max-width: 58ch; }
.ab-parent-logo { display: flex; justify-content: center; }
.ab-parent-logo img { width: 100%; max-width: 340px; height: auto; background: #fff; padding: 22px 30px; border-radius: var(--r-lg); }

@media (max-width: 940px) {
  .about-hero-grid, .ab-split, .ab-why-grid, .ab-parent-inner { grid-template-columns: 1fr; }
  .about-hero-grid { gap: 46px; }
  .about-hero-fig { max-width: 540px; }
  .about-hero-badge { left: 12px; bottom: -20px; }
  .ab-split-fig { max-width: 560px; }
  .brands-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .brands-strip { grid-template-columns: repeat(2, 1fr); }
  .about-hero-badge { padding: 14px 18px; gap: 12px; }
  .ahb-num { font-size: 3.4rem; }
}

/* ---- Regional reach (dotted map) ---- */
.reach-grid { display: grid; grid-template-columns: 1fr 320px; gap: clamp(20px, 3vw, 40px); align-items: start; }
.dmap-panel { position: relative; background: linear-gradient(180deg, #fbfcfd, #f4f6f9); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(20px, 3.2vw, 44px); overflow: hidden; }
.dmap-panel::before { content: ""; position: absolute; left: 8%; top: 16%; width: 60%; height: 58%; background: radial-gradient(ellipse at center, rgba(242,103,34,.09), rgba(242,103,34,0) 70%); pointer-events: none; }
.dmap { position: relative; z-index: 1; width: 100%; aspect-ratio: 1400 / 980; background: url("assets/about/sea-dots.svg") center / 100% 100% no-repeat; }
.dpin { position: absolute; transform: translate(-50%, -50%); width: 16px; height: 16px; background: none; border: none; cursor: pointer; z-index: 2; }
.dpin .dot { position: absolute; inset: 0; margin: auto; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 2.5px solid #fff; box-shadow: 0 2px 5px rgba(16,20,26,.45); z-index: 3; transition: transform .25s var(--e-out); }
.dpin.big { width: 22px; height: 22px; }
.dpin.big .dot { width: 19px; height: 19px; background: var(--accent-600); }
.dpin .ring { position: absolute; inset: 0; margin: auto; width: 14px; height: 14px; border-radius: 50%; background: rgba(242,103,34,.5); z-index: 1; animation: dring 2.6s cubic-bezier(.16,.84,.34,1) infinite; }
.dpin.big .ring { width: 19px; height: 19px; }
.dpin:nth-child(2) .ring { animation-delay: .4s; }
.dpin:nth-child(4) .ring { animation-delay: .8s; }
.dpin:nth-child(7) .ring { animation-delay: 1.2s; }
@keyframes dring { 0% { transform: scale(1); opacity: .55; } 70% { transform: scale(3.6); opacity: 0; } 100% { opacity: 0; } }
.dpin:hover .dot, .dpin.active .dot { transform: scale(1.35); }
.dpin.active { z-index: 5; }
.dpin.active .dot { box-shadow: 0 0 0 4px rgba(242,103,34,.25), 0 2px 6px rgba(16,20,26,.5); }
.dtip { position: absolute; z-index: 8; transform: translate(-50%, -120%); background: var(--ink); color: #fff; font-size: .78rem; font-weight: 600; padding: 6px 11px; border-radius: 8px; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity .18s; box-shadow: var(--sh-2); }
.dtip::after { content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--ink); }
.dtip.show { opacity: 1; }
.dloc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 8px; max-height: 560px; overflow-y: auto; }
.dloc-grp { display: flex; align-items: center; gap: 8px; padding: 14px 12px 6px; }
.dloc-grp h3 { font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.dloc-grp .cnt { font-size: .7rem; font-weight: 700; color: var(--accent-700); background: var(--accent-tint); padding: 1px 8px; border-radius: 100px; }
.dloc-item { display: block; width: 100%; text-align: left; padding: 9px 12px; border-radius: var(--r); transition: background-color .2s; }
.dloc-item:hover, .dloc-item.active { background: var(--accent-tint); }
.dloc-city { font-weight: 600; font-size: .94rem; color: var(--ink); }
.dloc-item.active .dloc-city { color: var(--accent-700); }
.dloc-tag { font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 2px 7px; border-radius: 100px; margin-left: 7px; vertical-align: middle; }
.dloc-addr { display: block; font-size: .8rem; color: var(--muted); margin-top: 4px; line-height: 1.45; }
.dloc-contact { display: block; font-size: .8rem; color: var(--body); margin-top: 5px; }
.dloc-contact .ci { width: 13px; height: 13px; color: var(--accent); vertical-align: -2px; margin-right: 7px; }
.dloc-contact .ci-wa { color: #25d366; }
.dloc-contact em { color: var(--muted); font-style: normal; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.dloc-contact--email { overflow-wrap: anywhere; }
@media (max-width: 860px) { .reach-grid { grid-template-columns: 1fr; } .dloc { max-height: none; } }

/* ============================================================
   PRODUCTS LISTING
   ============================================================ */
.pl-top { padding-top: clamp(24px, 3vw, 46px); }
.pl-top h1 { font-size: clamp(1.9rem, 4vw, 3.1rem); margin-top: 16px; }
.pl-top .sec-head { margin-bottom: 30px; }
.pl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 20px; }
.pl-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .35s var(--e-out), box-shadow .35s var(--e-out), border-color .3s; }
.pl-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: var(--accent-tint-2); }
.pl-media { position: relative; display: block; aspect-ratio: 5 / 3; overflow: hidden; background: var(--paper-2); }
.pl-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.05); transition: transform .5s var(--e-out); }
.pl-card:hover .pl-media img { transform: scale(1.1); }
.pl-tag { position: absolute; bottom: 10px; left: 10px; z-index: 2; font-family: var(--sans); font-weight: 700; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(16,20,26,.72); backdrop-filter: blur(4px); padding: 4px 9px; border-radius: 100px; }
.pl-body { display: flex; flex-direction: column; flex: 1; padding: 16px 16px 18px; }
.pl-name { font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink); line-height: 1.25; }
.pl-brand { font-size: .8rem; font-weight: 600; color: var(--muted); margin-top: 5px; flex: 1; }
.pl-go { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: .86rem; font-weight: 600; color: var(--accent-700); }
.pl-go svg { width: 15px; height: 15px; transition: transform .25s var(--e-out); }
.pl-card:hover .pl-go svg { transform: translateX(3px); }
.pl-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .pl-grid-3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); } }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.pd-hero { background: var(--paper); padding-top: clamp(26px, 4vw, 50px); padding-bottom: clamp(46px, 7vw, 96px); }
.pd-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.pd-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.pd-brandlogo { height: 32px; width: auto; }
.pd-brandtext { font-family: var(--sans); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: #fff; border: 1px solid var(--line); padding: 8px 15px; border-radius: 100px; box-shadow: 0 2px 8px rgba(16,20,26,.07); }
.pl-tag.pd-tag { position: static; }
.pd-hero-copy h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.05; letter-spacing: -.02em; text-wrap: balance; }
.pd-tagline { font-family: var(--display); font-weight: 600; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--accent-700); margin-top: 12px; }
.pd-hero-copy .lede { margin-top: 16px; }
.pd-props { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; }
.pd-props li { font-size: .82rem; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--line-2); padding: 6px 13px; border-radius: 100px; }
.pd-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pd-hero-fig { position: relative; margin: 0; }
.pd-hero-fig img { display: block; width: 100%; aspect-ratio: 4 / 3; max-height: 460px; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--sh-3); }
.pd-warranty { position: absolute; right: clamp(-10px, -1.6vw, -22px); bottom: clamp(-14px, -2vw, -26px); display: flex; align-items: center; gap: 12px; background: var(--accent-600); color: #fff; padding: 15px 22px; border-radius: var(--r-lg); box-shadow: var(--sh-3); }
.pd-warranty strong { font-family: var(--display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.pd-warranty span { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; line-height: 1.35; }

.pd-overview-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.pd-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-top: 14px; text-wrap: balance; }
.pd-body { margin-top: 16px; color: var(--body); font-size: 1.02rem; line-height: 1.7; max-width: none; text-wrap: pretty; }
.pd-copy .pd-cta { margin-top: 26px; }
.pd-spec { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 22px 26px; position: sticky; top: 90px; }
.pd-spec h3 { font-family: var(--display); font-size: 1.15rem; margin-bottom: 4px; }
.pd-spec-list { display: grid; }
.pd-spec-list > div { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.pd-spec-list dt { font-size: .8rem; font-weight: 700; color: var(--muted); }
.pd-spec-list dd { font-size: .9rem; color: var(--ink); margin: 0; }

.pd-colours { background: var(--paper); }
.pd-swatches { display: flex; flex-wrap: wrap; gap: 18px 30px; }
.pd-sw { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: .95rem; color: var(--ink); }
.pd-sw-chip { width: 40px; height: 40px; border-radius: 50%; box-shadow: var(--sh-1); border: 1px solid rgba(16,20,26,.08); }
img.pd-sw-chip { object-fit: cover; display: block; }
.pd-sw-clear { background: linear-gradient(135deg, #ffffff 0%, #dce7ee 55%, #c3d2dc 100%); }
.pd-sw-rainbow { background: conic-gradient(from 90deg, #ef4444, #f59e0b, #eab308, #22c55e, #06b6d4, #3b82f6, #8b5cf6, #ec4899, #ef4444); }

.pd-apps { display: grid; grid-template-columns: repeat(auto-fill, minmax(184px, 1fr)); gap: 10px; }
.pd-app { display: flex; align-items: center; gap: 11px; font-size: .9rem; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--line); padding: 11px 14px; border-radius: var(--r); transition: border-color .25s, color .25s, box-shadow .25s, transform .25s; }
.pd-app:hover { border-color: var(--accent-tint-2); color: var(--accent-700); box-shadow: var(--sh-1); transform: translateY(-1px); }
.pd-app svg { width: 21px; height: 21px; flex: 0 0 21px; color: var(--accent); }
.pd-app:hover svg { color: var(--accent-600); }

/* Applications block inside the overview column */
.pd-apps-inline { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.pd-apps-inline h3 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 16px; }

/* Brochure download (in specs sidebar) */
.pd-brochure { margin-top: 16px; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper); }
.pd-broc-ic { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: var(--accent-tint); color: var(--accent-700); }
.pd-broc-ic svg { width: 22px; height: 22px; }
.pd-broc-txt { display: flex; flex-direction: column; line-height: 1.35; margin-right: auto; }
.pd-broc-txt strong { font-size: .92rem; color: var(--ink); }
.pd-broc-txt span { font-size: .76rem; color: var(--muted); }
.pd-broc-btn { flex: 0 0 auto; font-size: .8rem; font-weight: 700; color: var(--accent-700); padding: 8px 15px; border: 1px solid var(--accent-tint-2); border-radius: 100px; transition: background-color .2s, color .2s, border-color .2s; }
.pd-broc-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Optional product video */
.pd-video-sec .sec-head { margin-bottom: 26px; }
.pd-video { position: relative; display: block; max-width: 940px; aspect-ratio: 16 / 9; border-radius: var(--r-xl); overflow: hidden; background: var(--charcoal); box-shadow: var(--sh-2); }
.pd-video img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: opacity .3s, transform .5s var(--e-out); }
.pd-video:hover img { opacity: .72; transform: scale(1.03); }
.pd-video-play { position: absolute; inset: 0; display: grid; place-items: center; }
.pd-video-play span { width: 78px; height: 78px; border-radius: 50%; background: rgba(242,103,34,.95); display: grid; place-items: center; box-shadow: 0 12px 34px rgba(0,0,0,.4); transition: transform .2s; }
.pd-video:hover .pd-video-play span { transform: scale(1.07); }
.pd-video-play svg { width: 30px; height: 30px; color: #fff; margin-left: 5px; }
.pd-video-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---- product gallery + compact hero ---- */
.pd-hero2 { background: var(--paper); padding-top: clamp(22px, 3vw, 42px); padding-bottom: clamp(44px, 6vw, 80px); }
.pd2-grid { display: grid; grid-template-columns: 656px 1fr; gap: clamp(20px, 2.5vw, 40px); align-items: start; }
.pd-hero2--single .pd2-grid { grid-template-columns: 1.2fr 1fr; }
.pd-hero2--single .pgal { max-width: 620px; }
.pgal-logo.is-plain { background: #fff; border-radius: 14px; padding: 13px 18px; box-shadow: var(--sh-1); }
.pd-colours-note { color: var(--muted); font-size: .95rem; line-height: 1.6; margin: 0; max-width: 52ch; }
.pgal { display: flex; flex-direction: column; gap: 14px; max-width: 656px; }
.pgal-frame { position: relative; }
.pgal-logo { position: absolute; top: -4px; left: 50%; transform: translateX(-50%); z-index: 4; width: clamp(160px, 40%, 250px); }
.pgal-logo img { display: block; width: 100%; height: auto; }
.pgal-circle { position: absolute; top: 0; right: 16px; z-index: 5; width: clamp(112px, 28%, 172px); transform: translateY(-40%); }
.pgal-circle img { display: block; width: 100%; height: auto; filter: drop-shadow(0 6px 16px rgba(16,20,26,.3)); }
.pgal-stage { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-xl); overflow: hidden; background: var(--paper-2); box-shadow: var(--sh-2); }
.pgal-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .45s var(--e-out); }
.pgal-slide.active { opacity: 1; }
.pgal-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pgal-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); color: var(--ink); box-shadow: var(--sh-1); transition: background-color .2s, color .2s; }
.pgal-arrow:hover { background: var(--accent); color: #fff; }
.pgal-arrow svg { width: 20px; height: 20px; }
.pgal-prev { left: 14px; }
.pgal-next { right: 14px; }
.pgal-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.pgal-thumb { flex: 0 0 132px; aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden; border: 2px solid transparent; padding: 0; transition: border-color .2s; }
.pgal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pgal-thumb:hover { border-color: var(--accent-tint-2); }
.pgal-thumb.active { border-color: var(--accent); }

.pd2-info .pd-brand-row { margin-bottom: 16px; }
.pd2-info h1 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.08; letter-spacing: -.02em; text-wrap: balance; }
.pd2-info .pd-tagline { margin-top: 10px; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.pd2-intro { margin-top: 14px; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.pd-keyprops { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.pd-keyprops > summary { list-style: none; cursor: pointer; display: flex; align-items: center; padding: 2px 0; }
.pd-keyprops > summary::-webkit-details-marker { display: none; }
.pd-keyprops h3 { font-family: var(--display); font-size: .95rem; letter-spacing: .02em; }
.kp-chev { margin-left: auto; width: 20px; height: 20px; color: var(--muted); flex: none; transition: transform .25s var(--e-out); }
.pd-keyprops[open] .kp-chev { transform: rotate(180deg); }
.pd-keylist { list-style: none; padding: 0; margin: 12px 0 0; }
.pd-keylist li { display: flex; align-items: center; gap: 14px; padding: 9px 0; font-size: 1rem; font-weight: 500; color: var(--ink); }
.kp-ic { width: 30px; height: 30px; color: var(--accent); flex: none; }
.kp-ic svg { width: 100%; height: 100%; }
.kp-yes { margin-left: auto; font-size: .76rem; font-weight: 700; color: var(--accent-700); background: var(--accent-tint); padding: 3px 11px; border-radius: 100px; }
.kp-yes.kp-no { color: var(--muted); background: var(--paper-2); }
.pd2-info .pd-cta { margin-top: 26px; }

.pd-details-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.pd-details h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 14px; text-wrap: balance; }
.pd-details { padding-bottom: clamp(40px, 5vw, 72px); }
.pd-related-sec { padding-top: clamp(40px, 5vw, 72px); }
.pd-colours-inline { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.pd-colours-inline h3 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 16px; }
.pd-spec-cta { margin-top: 20px; width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .pd-hero-grid, .pd-overview-grid, .pd2-grid, .pd-details-grid, .pd-hero2--single .pd2-grid { grid-template-columns: 1fr; }
  .pd-hero-fig { max-width: 560px; }
  .pd-warranty { right: 14px; }
  .pgal-stage { aspect-ratio: 16 / 10; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero-slide .bg img { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slide.active .hero-kicker, .hero-slide.active .hero-title, .hero-slide.active .hero-sub, .hero-slide.active .hero-actions, .hero-slide.active .hero-chips { opacity: 1; transform: none; animation: none; }
  .hero-dot.active .fill { transition: none; width: 100%; }
  .dpin .ring { animation: none; opacity: 0; }
}

/* ============================================================
   SOLUTION PAGES  (Roofing & Siding, etc.)
   ============================================================ */
.variant-label { background: var(--charcoal); color: var(--on-dark); font-family: var(--sans); font-weight: 700; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; padding: 11px var(--gutter); display: flex; align-items: center; gap: 10px; }
.variant-label b { color: var(--accent); }

.sol-crumb { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.sol-crumb a { color: inherit; transition: color .2s; }
.sol-crumb a:hover { color: var(--accent-700); }
.sol-cat { font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-700); display: block; margin-bottom: 14px; }
.sol-hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.3rem, 5.4vw, 4rem); line-height: 1.03; letter-spacing: -.03em; text-wrap: balance; }
.sol-hero-sub { margin-top: 16px; font-size: clamp(1.02rem, 1.6vw, 1.28rem); line-height: 1.55; max-width: 54ch; color: var(--body); }
.sol-hero-cta { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Variant 1 · immersive full-bleed */
.sol-hero--immersive { position: relative; min-height: 74vh; display: flex; align-items: flex-end; overflow: hidden; }
.sol-hero--immersive .sol-hero-bg { position: absolute; inset: 0; z-index: 0; }
.sol-hero--immersive .sol-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.sol-hero--immersive::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16,20,26,.12) 0%, rgba(16,20,26,.32) 48%, rgba(16,20,26,.84) 100%); }
.sol-hero--immersive .wrap { position: relative; z-index: 2; width: 100%; padding-block: clamp(44px, 7vw, 92px); }
.sol-hero--immersive .sol-cat { color: #fff; }
.sol-hero--immersive h1 { color: #fff; }
.sol-hero--immersive .sol-crumb { color: rgba(255,255,255,.75); }
.sol-hero--immersive .sol-hero-sub { color: rgba(255,255,255,.92); }

/* Variant 2 · split */
.sol-hero--split { background: var(--white); }
.sol-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; padding-block: clamp(40px, 6vw, 84px); }
.sol-split-media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-2); aspect-ratio: 4 / 3; }
.sol-split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Variant 3 · light (product-page register) */
.sol-hero--light { background: var(--paper); }
.sol-light-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; padding-block: clamp(34px, 5vw, 68px); }
.sol-light-media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-2); aspect-ratio: 5 / 4; }
.sol-light-media img { width: 100%; height: 100%; object-fit: cover; }

/* Overview + why */
.sol-overview-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.sol-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.65; color: var(--body); max-width: 60ch; }
.sol-why h3 { font-family: var(--display); font-size: 1.12rem; margin-bottom: 10px; }
.sol-why p { color: var(--body); line-height: 1.7; }
.sol-points { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); }
.sol-point { display: flex; align-items: center; gap: 12px; padding: 15px 6px; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); font-size: .95rem; }
.sol-point svg { width: 22px; height: 22px; color: var(--accent); flex: none; }

/* Featured projects (alternating editorial) */
.sol-project { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.sol-project + .sol-project { margin-top: clamp(44px, 6vw, 92px); }
.sol-project:nth-child(even) .sol-proj-media { order: 2; }
.sol-project:nth-child(even) { grid-template-columns: .88fr 1.12fr; }
.sol-proj-media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-2); aspect-ratio: 3 / 2; }
.sol-proj-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--e-out); }
.sol-proj-media .sol-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--e-out), transform .6s var(--e-out); }
.sol-proj-media .sol-slide.active { opacity: 1; }
.sol-project:hover .sol-proj-media .sol-slide.active { transform: scale(1.04); }
.sol-proj-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 700; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-700); background: var(--accent-tint); padding: 6px 13px; border-radius: 100px; }
.sol-proj-plate { display: inline-flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 9px 15px; box-shadow: var(--sh-1); }
.sol-proj-plate .sol-proj-logo { height: 25px; width: auto; display: block; }
.sol-proj-plate .sol-proj-brandname { font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink); line-height: 1; }
.sol-proj-plate .sol-proj-sep { width: 1px; height: 20px; background: var(--line); }
.sol-proj-plate .sol-proj-mat { font-family: var(--sans); font-weight: 700; font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; color: var(--accent-700); white-space: nowrap; }
.sol-proj-info h3 { font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 1.95rem); line-height: 1.1; margin: 16px 0 10px; text-wrap: balance; }
.sol-proj-info p { color: var(--body); line-height: 1.7; max-width: 48ch; }
.sol-proj-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.sol-thumb { padding: 0; border: 0; background: none; cursor: pointer; line-height: 0; border-radius: var(--r-sm); }
.sol-proj-thumbs img { width: 88px; height: 64px; object-fit: cover; border-radius: var(--r-sm); border: 1px solid var(--line); transition: border-color .25s var(--e-out), transform .25s var(--e-out); }
.sol-thumb:hover img { border-color: var(--accent); }
.sol-thumb.active img { border-color: var(--accent); border-width: 2px; }
.sol-proj-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-family: var(--sans); font-weight: 700; font-size: .82rem; color: var(--accent-700); }
.sol-proj-cta svg { width: 17px; height: 17px; transition: transform .25s var(--e-out); }
.sol-proj-cta:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .sol-overview-grid, .sol-split-grid, .sol-light-grid, .sol-project { grid-template-columns: 1fr; }
  .sol-project:nth-child(even) { grid-template-columns: 1fr; }
  .sol-project:nth-child(even) .sol-proj-media { order: 0; }
  .sol-points { grid-template-columns: 1fr; }
  .sol-hero--immersive { min-height: 58vh; }
}

/* More solutions (cross-sell tiles) */
.sol-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.sol-related-card { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--sh-1); transition: box-shadow .3s, transform .35s var(--e-out); }
.sol-related-card:hover { box-shadow: var(--sh-2); transform: translateY(-4px); }
.sol-related-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--e-out); }
.sol-related-card:hover img { transform: scale(1.06); }
.sol-related-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,20,26,0) 42%, rgba(16,20,26,.85) 100%); }
.sol-rel-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px 18px 16px; color: #fff; }
.sol-rel-cat { display: block; font-family: var(--sans); font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: 5px; }
.sol-rel-name { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 1.08rem; line-height: 1.15; }
.sol-rel-name svg { width: 18px; height: 18px; flex: none; transition: transform .25s var(--e-out); }
.sol-related-card:hover .sol-rel-name svg { transform: translateX(4px); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ct-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 76px); align-items: start; }
.ct-intro h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 4.6vw, 3.5rem); line-height: 1.02; letter-spacing: -.025em; margin: 14px 0 18px; text-wrap: balance; }
.ct-lead { color: var(--body); font-size: 1.06rem; line-height: 1.7; max-width: 46ch; }
.ct-methods { display: grid; gap: 10px; margin: 30px 0 26px; }
.ct-method { display: flex; align-items: center; gap: 14px; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); }
a.ct-method { transition: border-color .25s var(--e-out), transform .25s var(--e-out), box-shadow .25s var(--e-out); }
a.ct-method:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--sh-1); }
.ct-method-ic { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-tint); color: var(--accent-700); }
.ct-method-ic svg { width: 20px; height: 20px; }
.ct-method-tx { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ct-method-lbl { font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.ct-method-val { font-family: var(--sans); font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; }
.ct-shops { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ct-shops-lbl { font-size: .8rem; color: var(--muted); }
.ct-shop { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .9rem; color: var(--ink); padding: 7px 14px; border: 1px solid var(--line); border-radius: 100px; transition: border-color .25s var(--e-out); }
.ct-shop img { height: 15px; width: auto; }
.ct-shop:hover { border-color: var(--accent); }

.ct-form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-2); padding: clamp(22px, 3vw, 38px); }
.ct-form-card h2 { font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.ct-form-sub { color: var(--muted); margin: 8px 0 22px; line-height: 1.6; }
.ct-form { display: grid; gap: 16px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { display: flex; flex-direction: column; gap: 7px; }
.ct-field > span { font-family: var(--sans); font-weight: 600; font-size: .82rem; color: var(--ink); }
.ct-field em { color: var(--accent-700); font-style: normal; }
.ct-field input, .ct-field select, .ct-field textarea { font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 12px 14px; width: 100%; transition: border-color .2s var(--e-out), box-shadow .2s var(--e-out), background .2s var(--e-out); }
.ct-field textarea { resize: vertical; min-height: 112px; }
.ct-field input::placeholder, .ct-field textarea::placeholder { color: var(--muted); }
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: var(--ring); }
.ct-submit { width: 100%; justify-content: center; margin-top: 4px; }
.ct-form-note { font-size: .86rem; color: var(--accent-700); background: var(--accent-tint); border-radius: var(--r-sm); padding: 11px 13px; line-height: 1.5; }

.ct-loc-sec .sec-head { align-items: end; }
.ct-loc-intro { color: var(--body); max-width: 40ch; line-height: 1.6; }
.ct-loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 20px; margin-top: 10px; }
.ct-loc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--e-out), box-shadow .3s var(--e-out); }
.ct-loc:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.ct-loc--hq { border: 2px solid var(--accent); }
.ct-loc-map-embed { height: 180px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.ct-loc-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.ct-loc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.ct-loc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ct-loc-head h3 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.ct-loc-tag { font-family: var(--sans); font-weight: 700; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-700); background: var(--accent-tint); padding: 4px 9px; border-radius: 100px; }
.ct-loc-addr { display: flex; gap: 10px; color: var(--body); line-height: 1.6; font-size: .92rem; }
.ct-loc-ic { flex: none; color: var(--accent-700); line-height: 0; }
.ct-loc-ic svg { width: 17px; height: 17px; margin-top: 2px; }
.ct-loc-lines { display: flex; flex-direction: column; gap: 8px; margin: 16px 0 18px; }
.ct-loc-line { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; font-size: .93rem; }
.ct-loc-line em { color: var(--muted); font-weight: 500; font-style: normal; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.ct-loc-map { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .84rem; color: var(--accent-700); }
.ct-loc-map svg { width: 16px; height: 16px; transition: transform .25s var(--e-out); }
.ct-loc-map:hover svg { transform: translateX(4px); }

@media (max-width: 860px) {
  .ct-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .ct-row { grid-template-columns: 1fr; }
}

/* ============================================================
   WHATSAPP FLOATING WIDGET (multi-branch)
   ============================================================ */
.wa { position: fixed; right: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 26px); z-index: 45; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; pointer-events: none; }
body.drawer-open .wa { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s, visibility .2s; }
.wa-fab { position: relative; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 22px rgba(37,211,102,.42), var(--sh-2); cursor: pointer; transition: transform .25s var(--e-out); pointer-events: auto; }
.wa-fab:hover { transform: scale(1.06); }
.wa-fab:active { transform: scale(.96); }
.wa-fab svg { width: 30px; height: 30px; grid-area: 1 / 1; transition: opacity .2s var(--e-out), transform .2s var(--e-out); }
.wa-fab .wa-x { opacity: 0; transform: rotate(-90deg) scale(.5); }
.wa.open .wa-fab .wa-glyph { opacity: 0; transform: rotate(90deg) scale(.5); }
.wa.open .wa-fab .wa-x { opacity: 1; transform: none; }
.wa-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.6s var(--e-out) infinite; }
.wa.open .wa-fab::after { animation: none; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.wa-panel { width: min(322px, calc(100vw - 32px)); background: var(--white); border-radius: 18px; box-shadow: var(--sh-3); overflow: hidden; transform-origin: bottom right; transform: translateY(12px) scale(.95); opacity: 0; visibility: hidden; transition: opacity .28s var(--e-out), transform .28s var(--e-out), visibility .28s; pointer-events: auto; }
.wa.open .wa-panel { opacity: 1; visibility: visible; transform: none; }
.wa-head { background: #075e54; color: #fff; padding: 15px 18px; display: flex; align-items: center; gap: 12px; }
.wa-head-ic { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; flex: none; }
.wa-head-ic svg { width: 21px; height: 21px; }
.wa-head-tx { display: flex; flex-direction: column; }
.wa-head-title { font-family: var(--sans); font-weight: 700; font-size: .95rem; }
.wa-head-sub { font-size: .77rem; opacity: .85; }
.wa-list { max-height: min(60vh, 420px); overflow: auto; }
.wa-opt { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--line); transition: background .2s var(--e-out); }
.wa-opt:last-child { border-bottom: 0; }
.wa-opt:hover { background: var(--paper); }
.wa-opt-ic { width: 40px; height: 40px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; flex: none; }
.wa-opt-ic svg { width: 21px; height: 21px; }
.wa-opt-tx { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.wa-opt-city { font-family: var(--sans); font-weight: 700; font-size: .92rem; color: var(--ink); display: flex; align-items: center; gap: 7px; }
.wa-opt-city em { font-style: normal; font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--accent-700); background: var(--accent-tint); padding: 2px 6px; border-radius: 100px; }
.wa-opt-num { font-size: .82rem; color: var(--muted); }
.wa-opt-go { color: var(--muted); flex: none; transition: transform .2s var(--e-out), color .2s var(--e-out); }
.wa-opt-go svg { width: 18px; height: 18px; }
.wa-opt:hover .wa-opt-go { color: #25d366; transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }

/* ============================================================
   MOBILE DRAWER — enhancements
   ============================================================ */
.dnav-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px 4px 16px; }
.dnav-quick a, .dnav-quick button { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 13px 6px; border: 1px solid var(--line); border-radius: var(--r); font-family: var(--sans); font-weight: 600; font-size: .78rem; color: var(--ink); background: var(--white); cursor: pointer; transition: border-color .2s var(--e-out), background .2s var(--e-out), transform .12s var(--e-out); }
.dnav-quick a:hover, .dnav-quick button:hover { border-color: var(--accent); background: var(--accent-tint); }
.dnav-quick a:active, .dnav-quick button:active { transform: scale(.95); }
.dnav-quick .qic { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-tint); color: var(--accent-700); }
.dnav-quick .qic svg { width: 17px; height: 17px; }
.dnav-quick .dnav-quick-wa .qic { background: #25d366; color: #fff; }
.dnav-link { padding: 15px 8px; border-radius: var(--r-sm); transition: background .2s var(--e-out), color .2s var(--e-out); }
.dnav-link:active { background: var(--paper); }
.dnav-item { position: relative; }
.dnav-item.active > .dnav-link { color: var(--accent-700); }
.dnav-item.active::before { content: ""; position: absolute; left: -14px; top: 13px; width: 3px; height: 22px; border-radius: 3px; background: var(--accent); }
.dnav-link .chev { width: 27px; height: 27px; padding: 5px; border-radius: 50%; background: var(--paper); box-sizing: border-box; }
.dnav-sub a { padding: 12px 8px 12px 14px; border-radius: var(--r-sm); }
.dnav-sub a:active { background: var(--paper); }
/* staggered entrance when opened */
.drawer .drawer-body > * { opacity: 0; transform: translateX(16px); }
.drawer.open .drawer-body > * { opacity: 1; transform: none; transition: opacity .45s var(--e-out), transform .45s var(--e-out); }
.drawer.open .drawer-body > *:nth-child(1) { transition-delay: .04s; }
.drawer.open .drawer-body > *:nth-child(2) { transition-delay: .09s; }
.drawer.open .drawer-body > *:nth-child(3) { transition-delay: .14s; }
.drawer.open .drawer-body > *:nth-child(4) { transition-delay: .19s; }
.drawer.open .drawer-body > *:nth-child(5) { transition-delay: .24s; }
.drawer.open .drawer-body > *:nth-child(6) { transition-delay: .29s; }
.drawer.open .drawer-body > *:nth-child(7) { transition-delay: .34s; }
.drawer.open .drawer-body > *:nth-child(n+8) { transition-delay: .38s; }
@media (prefers-reduced-motion: reduce) {
  .drawer .drawer-body > * { opacity: 1; transform: none; }
}

/* ============================================================
   PROJECT GALLERY
   ============================================================ */
.gal-hero { padding-bottom: clamp(18px, 3vw, 30px); }
.gal-hero-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(18px, 4vw, 56px); align-items: end; margin-top: 10px; }
.gal-hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 4.8vw, 3.6rem); line-height: 1.02; letter-spacing: -.025em; text-wrap: balance; }
.gal-hero-sub { color: var(--body); font-size: 1.04rem; line-height: 1.7; max-width: 50ch; }

.gal-main { padding-bottom: clamp(48px, 7vw, 100px); }
.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.gal-filter { font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--body); background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 9px 16px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s var(--e-out), color .2s var(--e-out), background .2s var(--e-out); }
.gal-filter:hover { border-color: var(--accent); color: var(--ink); }
.gal-filter.is-active { background: var(--accent-600); border-color: var(--accent-600); color: #fff; }
.gal-filter-n { font-size: .74rem; font-weight: 700; opacity: .65; }
.gal-filter.is-active .gal-filter-n { opacity: .85; }

.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 18px; }
.gal-card { position: relative; padding: 0; border: 0; background: var(--charcoal); border-radius: var(--r-lg); overflow: hidden; cursor: pointer; aspect-ratio: 4 / 3; display: block; text-align: left; box-shadow: var(--sh-1); transition: transform .35s var(--e-out), box-shadow .35s var(--e-out); }
.gal-card.is-hidden { display: none; }
.gal-card-media { position: absolute; inset: 0; }
.gal-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--e-out); }
.gal-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,20,26,0) 32%, rgba(16,20,26,.5) 68%, rgba(16,20,26,.86) 100%); }
.gal-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.gal-card:hover .gal-card-media img { transform: scale(1.06); }
.gal-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.gal-card-count { position: absolute; top: 12px; right: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; font-family: var(--sans); font-weight: 700; font-size: .74rem; color: #fff; background: rgba(16,20,26,.5); backdrop-filter: blur(4px); padding: 5px 9px; border-radius: 100px; }
.gal-card-count svg { width: 13px; height: 13px; }
.gal-card-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px; display: flex; flex-direction: column; gap: 5px; }
.gal-card-grp { font-family: var(--sans); font-weight: 700; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.gal-card-name { font-family: var(--display); font-weight: 700; font-size: 1.12rem; line-height: 1.14; color: #fff; text-wrap: balance; }
.gal-card-tag { font-family: var(--sans); font-weight: 500; font-size: .82rem; color: rgba(255,255,255,.8); }
.gal-empty { text-align: center; color: var(--muted); padding: 44px 0; }

.gal-process-sub { color: var(--body); max-width: 40ch; line-height: 1.6; }
.gal-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 2px 30px; margin-top: 14px; }
.gal-step { padding: 24px 0; border-top: 2px solid var(--line-2); }
.gal-step-n { font-family: var(--display); font-weight: 800; font-size: 1rem; color: var(--accent-700); }
.gal-step h3 { font-family: var(--display); font-weight: 700; font-size: 1.12rem; margin: 10px 0 8px; }
.gal-step p { color: var(--body); line-height: 1.6; font-size: .95rem; }

.gal-lb { position: fixed; inset: 0; z-index: 80; background: rgba(9,11,15,.9); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; padding: clamp(14px, 3.5vw, 44px); }
.gal-lb[hidden] { display: none; }
.gal-lb-content { position: relative; width: min(1040px, 94vw); max-height: 90vh; display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; background: #0b0e12; box-shadow: 0 40px 120px rgba(0,0,0,.6); }
.gal-lb-stagewrap { position: relative; flex: 1 1 auto; min-height: 0; display: flex; align-items: center; justify-content: center; background: #0b0e12; }
.gal-lb-stage { margin: 0; display: flex; align-items: center; justify-content: center; width: 100%; min-height: 0; }
.gal-lb-stage img { display: block; width: 100%; height: auto; max-height: 74vh; object-fit: contain; }
.gal-lb-close { position: absolute; top: clamp(14px, 3vw, 24px); right: clamp(14px, 3vw, 24px); z-index: 4; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(18,22,28,.6); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s var(--e-out); }
.gal-lb-close:hover { background: rgba(40,46,54,.82); }
.gal-lb-close svg { width: 20px; height: 20px; }
.gal-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(11,14,18,.5); color: #fff; cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(4px); transition: background .2s var(--e-out); }
.gal-lb-nav:hover { background: rgba(24,28,34,.85); }
.gal-lb-nav svg { width: 24px; height: 24px; }
.gal-lb-prev { left: 14px; }
.gal-lb-next { right: 14px; }
.gal-lb-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 15px clamp(16px, 2.4vw, 26px); background: rgba(255,255,255,.05); border-top: 1px solid rgba(255,255,255,.08); color: #fff; }
.gal-lb-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.gal-lb-tag { font-family: var(--sans); font-weight: 700; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.gal-lb-meta h3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 2vw, 1.4rem); margin: 0; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gal-lb-right { display: flex; align-items: center; gap: clamp(16px, 2vw, 26px); flex-shrink: 0; }
.gal-lb-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .86rem; color: #fff; white-space: nowrap; }
.gal-lb-link svg { width: 16px; height: 16px; transition: transform .25s var(--e-out); }
.gal-lb-link:hover svg { transform: translateX(4px); }
.gal-lb-count { font-family: var(--sans); font-weight: 600; color: rgba(255,255,255,.62); font-size: .86rem; white-space: nowrap; }

@media (max-width: 720px) {
  .gal-hero-head { grid-template-columns: 1fr; }
  .gal-lb-nav { width: 42px; height: 42px; }
}
@media (max-width: 560px) {
  .gal-lb-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gal-lb-meta h3 { white-space: normal; }
  .gal-lb-right { width: 100%; justify-content: space-between; }
}
@media (prefers-reduced-motion: reduce) {
  .gal-card, .gal-card-media img { transition: none; }
}

/* ============================================================
   MOBILE DRAWER — drill-down navigation
   ============================================================ */
.drawer-body { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
/* neutralise the earlier stagger (drawer-body now holds a single .dd viewport) */
.drawer .drawer-body > * { opacity: 1; transform: none; }
.dd { position: relative; flex: 1; overflow: hidden; }
.dd-panel { position: absolute; inset: 0; display: flex; flex-direction: column; overflow-y: auto; background: var(--white); transform: translateX(100%); transition: transform .32s var(--e-out); -webkit-overflow-scrolling: touch; }
.dd-back { display: flex; align-items: center; gap: 5px; width: 100%; padding: 15px 18px; font-family: var(--sans); font-weight: 600; font-size: .86rem; color: var(--accent-700); border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--white); z-index: 2; }
.dd-back svg { width: 19px; height: 19px; flex: none; }
.dd-back:active { background: var(--paper); }
.dd-title { font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--ink); padding: 18px 20px 4px; }
.dd-title small { display: block; font-family: var(--sans); font-weight: 600; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.dd-list { display: flex; flex-direction: column; padding: 8px 12px 20px; }
.dd-row { display: flex; align-items: center; gap: 13px; width: 100%; padding: 14px 12px; border-radius: var(--r-sm); font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink); text-align: left; transition: background .18s var(--e-out); }
.dd-row:hover, .dd-row:active { background: var(--paper); }
.dd-lead { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dd-lead small { font-family: var(--sans); font-weight: 500; font-size: .73rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.dd-ic { width: 34px; height: 34px; flex: none; display: grid; place-items: center; }
.dd-ic img { width: 30px; height: 30px; object-fit: contain; }
.dd-thumb { width: 44px; height: 32px; flex: none; object-fit: contain; background: var(--paper); border: 1px solid var(--line); border-radius: 5px; }
.dd-chev { margin-left: auto; width: 20px; height: 20px; color: var(--muted); flex: none; }
.dd-row--brand { font-family: var(--sans); font-weight: 600; font-size: .96rem; }
.dd-row--sub { font-family: var(--sans); font-weight: 600; font-size: .98rem; }
.dd-foot { margin-top: auto; padding: 14px 20px 22px; }
.dd-viewall { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-weight: 700; font-size: .88rem; color: var(--accent-700); }
.dd-viewall svg { width: 17px; height: 17px; color: var(--accent-700); }
@media (prefers-reduced-motion: reduce) {
  .dd-panel { transition: none; }
}

/* drill-down: Type dropdowns (accordion revealing brands) */
.dd-acc { border-bottom: 1px solid var(--line); }
.dd-acc:last-child { border-bottom: 0; }
.dd-acc-btn { border-radius: 0; }
.dd-acc-btn .dd-chev { transition: transform .3s var(--e-out), color .2s var(--e-out); }
.dd-acc.open > .dd-acc-btn { color: var(--accent-700); background: var(--accent-tint); border-radius: var(--r-sm); }
.dd-acc.open > .dd-acc-btn .dd-chev { transform: rotate(180deg); color: var(--accent-700); }
.dd-acc.open > .dd-acc-btn .dd-lead small { color: var(--accent-700); }
.dd-acc-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--e-out); }
.dd-acc.open > .dd-acc-sub { grid-template-rows: 1fr; }
.dd-acc-inner { overflow: hidden; }
.dd-acc-inner .dd-row--brand { margin-left: 14px; }

/* contact location cards: WhatsApp + email lines */
.ct-loc-ic--wa { color: #25d366; }
.ct-loc-line--email { align-items: flex-start; font-weight: 500; font-size: .84rem; overflow-wrap: anywhere; }
.ct-loc-line--email .ct-loc-ic { margin-top: 1px; }

/* ============ EVENT BANNER ============ */
.event-band { padding-top: clamp(24px, 3.6vw, 44px); }
.event-banner { display: block; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); transition: box-shadow .25s var(--e-out), transform .25s var(--e-out); }
.event-banner:hover { box-shadow: var(--sh-2); transform: translateY(-2px); }
.event-banner img { display: block; width: 100%; height: auto; }


/* ============ PRODUCT / ABOUT SEO CONTENT ============ */
.prod-seo { background: var(--paper); }
.prod-seo-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px,4vw,64px); align-items: start; }
.prod-seo-main h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem,2.6vw,2rem); margin: 0 0 18px; letter-spacing: -.02em; }
.prod-seo-main h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin: 24px 0 10px; }
.prod-seo-main p { color: var(--ink); opacity: .85; line-height: 1.65; margin: 0 0 14px; max-width: 68ch; }
.prod-seo-side h3 { font-family: var(--display); font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 12px; color: var(--ink); }
.prod-seo-side h3:not(:first-child) { margin-top: 26px; }
.prod-seo-apps, .prod-seo-tags { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.prod-seo-apps li { padding-left: 20px; position: relative; color: var(--ink); opacity: .8; font-size: .95rem; }
.prod-seo-apps li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
.prod-seo-tags { flex-flow: row wrap; gap: 8px; }
.prod-seo-tags li { padding: 5px 12px; border: 1px solid var(--line); border-radius: 100px; background: #fff; font-size: .9rem; }
.prod-seo-warr { margin-top: 22px; font-size: .95rem; color: var(--ink); opacity: .85; }
@media (max-width: 820px) { .prod-seo-grid { grid-template-columns: 1fr; } }

/* ============ HERO · ARCHIDEX BANNER SLIDE ============ */
.hero-slide--banner { background: #0a0a0e; }
.hero-slide--banner .hero-banner-link { position: absolute; inset: 0; display: block; }
.hero-slide--banner picture { position: absolute; inset: 0; display: block; }
.hero-slide--banner img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
