/* ============================================================
   FARIZ EXIM (OPC) PRIVATE LIMITED — Export website
   Design system v2 — "Industrial Freight"
   Brand: steel black + concrete + cargo orange
   Type:  Archivo (display) · Barlow (body) · Barlow Condensed (labels)
   NOTE:  Every animation hook, keyframe and class contract from v1 is
          preserved verbatim — only the visual layer changed.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Steel / structural darks */
  --steel-950: #080d13;
  --steel-900: #0d151d;
  --steel-800: #14202b;
  --steel-700: #1e2e3b;
  --steel-600: #2b3f4f;

  /* Legacy navy aliases (kept so nothing breaks) */
  --navy-900: var(--steel-950);
  --navy-800: var(--steel-900);
  --navy-700: var(--steel-800);
  --navy-600: var(--steel-700);

  /* Cargo orange — the accent that carries the whole design */
  --orange-700: #b8380a;
  --orange-600: #dc440c;
  --orange-500: #f2560f;
  --orange-400: #ff7433;
  --orange-100: #ffe4d7;

  /* Secondary maritime blue (used sparingly, ties to the logo) */
  --blue-600: #1655b0;
  --blue-500: #1e6fd9;
  --blue-400: #4d8ce6;
  --blue-200: #b9d3f4;

  /* Legacy gold aliases -> orange, so any stray rule stays on-palette */
  --gold-600: var(--orange-600);
  --gold-500: var(--orange-500);
  --gold-400: var(--orange-400);
  --gold-200: var(--orange-100);

  /* Category accents */
  --spice: #e0761b;
  --produce: #3f8f3a;
  --granite: #6b7784;
  --construction: #c2451f;

  /* Neutrals — warm concrete, not blue-grey */
  --paper: #f2f1ed;
  --paper-2: #e5e4de;
  --white: #ffffff;
  --ink-900: #11161b;
  --ink-700: #2c343c;
  --ink-500: #5c6873;
  --line: #d6d5ce;
  --line-dark: rgba(255, 255, 255, 0.13);

  /* Semantic */
  --bg: var(--white);
  --text: var(--ink-900);
  --muted: var(--ink-500);
  --link: var(--orange-600);

  /* Typography */
  --font-display: "Archivo", "Arial Narrow", Impact, system-ui, sans-serif;
  --font-sans: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-cond: "Barlow Condensed", "Arial Narrow", var(--font-sans);
  --font-mono: var(--font-cond);

  /* Spacing scale (8pt rhythm) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radius / shadow / motion — hard edges everywhere */
  --r-sm: 0px;
  --r-md: 0px;
  --r-lg: 0px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(8, 13, 19, 0.10);
  --shadow-md: 0 14px 34px rgba(8, 13, 19, 0.16);
  --shadow-lg: 0 28px 64px rgba(8, 13, 19, 0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 240ms;

  --container: 1280px;
  --header-h: 80px;
  --z-header: 100;
  --z-menu: 200;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: none; color: var(--orange-500); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

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

/* Skip link */
.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--orange-500);
  color: #fff;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 12px 22px;
  z-index: 1000;
  transition: top 160ms var(--ease-out);
}
.skip-link:focus { top: 0; text-decoration: none; color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.75rem);
}
.section { padding-block: clamp(3.75rem, 8.5vw, 7rem); position: relative; }
.section--navy { background: var(--steel-900); color: #dfe6ec; }
.section--paper { background: var(--paper); }
.section--steel { background: var(--steel-950); color: #dfe6ec; }

.section__head { max-width: 760px; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section__head.is-center { margin-inline: auto; text-align: center; }

/* Eyebrow: a hard orange block-rule + condensed caps */
.eyebrow {
  font-family: var(--font-cond);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-600);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  background: currentColor;
  opacity: 1;
}
.section--navy .eyebrow,
.section--steel .eyebrow { color: var(--orange-400); }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--steel-900);
}
.section--navy .section__title,
.section--steel .section__title { color: #fff; }
.section__lead {
  margin-top: 1.15rem;
  font-size: 1.075rem;
  color: var(--muted);
  max-width: 62ch;
}
.section--navy .section__lead,
.section--steel .section__lead { color: #9fb0be; }

/* ---------- Buttons — rectangular, condensed caps ---------- */
.btn {
  --btn-bg: var(--steel-900);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  padding: 1.15rem 2rem;
  min-height: 54px;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              background-color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn .btn__icon { width: 19px; height: 19px; transition: transform var(--dur) var(--ease-out); }
.btn:hover .btn__icon { transform: translateX(4px); }

.btn--primary { --btn-bg: var(--orange-500); --btn-fg: #fff; }
.btn--primary:hover { --btn-bg: var(--orange-600); }

.btn--whatsapp { --btn-bg: #1faa52; --btn-fg: #ffffff; }
.btn--whatsapp:hover { --btn-bg: #17913f; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover { --btn-bg: #fff; --btn-fg: var(--steel-900); border-color: #fff; box-shadow: none; }

.btn--dark { --btn-bg: var(--steel-900); --btn-fg: #fff; }
.btn--block { width: 100%; }

/* ---------- Header / nav — dark structural bar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(8, 13, 19, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 240ms var(--ease-out),
              border-color 240ms var(--ease-out),
              box-shadow 240ms var(--ease-out);
}
.site-header.is-scrolled {
  background: var(--steel-950);
  border-bottom-color: var(--orange-500);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark { width: auto; height: 46px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
}
.brand__tag {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-top: 5px;
}
.nav__spacer { flex: 1; }
.nav__links { display: flex; align-items: center; gap: clamp(0.5rem, 2vw, 2rem); }
.nav__link {
  position: relative;
  font-family: var(--font-cond);
  color: #c3ceda;
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 0.15rem;
  text-decoration: none;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease-out);
}
.nav__link:hover { text-decoration: none; color: #fff; }
.nav__link.is-active { color: #fff; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta-desktop { padding: 0.95rem 1.5rem; min-height: 48px; font-size: 1rem; }

.nav__toggle {
  display: none;
  width: 50px; height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-out), opacity 160ms var(--ease-out);
}
.nav__toggle span::before { transform: translate(-50%, -7px); }
.nav__toggle span::after  { transform: translate(-50%, 5px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile menu — dark sheet */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--steel-950);
  border-bottom: 3px solid var(--orange-500);
  box-shadow: var(--shadow-md);
  padding: var(--sp-4) 0 var(--sp-8);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 220ms;
  z-index: var(--z-menu);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.mobile-menu .container { display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
  padding: 1rem 0.25rem;
  font-family: var(--font-cond);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dfe6ec;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu a:hover { text-decoration: none; color: var(--orange-400); }
.mobile-menu .btn { margin-top: var(--sp-5, 1.5rem); color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--steel-950) 0%, var(--steel-800) 60%, var(--steel-900) 100%);
  color: #eef4fd;
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;            /* enabled via [data-video="on"] */
  transition: opacity 1.2s ease;
  z-index: -2;
}
.hero[data-video="on"] .hero__video { opacity: 0.92; }
.hero[data-video="on"] .hero__map { display: none; } /* let the video be the hero visual */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(92deg, rgba(8,13,19,0.96) 0%, rgba(8,13,19,0.9) 38%, rgba(8,13,19,0.55) 62%, rgba(8,13,19,0.2) 84%, rgba(8,13,19,0.08) 100%),
    linear-gradient(0deg, rgba(8,13,19,0.62) 0%, rgba(8,13,19,0) 26%);
  z-index: -1;
}

/* signature animated map sits on the right */
.hero__map {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(62%, 760px);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  display: block;
  min-height: clamp(600px, 84vh, 820px);
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  display: flex;
  align-items: center;
}
.hero__copy { max-width: 940px; }

/* Eyebrow becomes a hard tag block with an orange bar */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.6rem 1.1rem 0.6rem 0.9rem;
  border: 0;
  border-left: 5px solid var(--orange-500);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.9rem, 8.4vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-top: 1.6rem;
  color: #fff;
}
.hero__title .accent {
  display: block;
  color: var(--orange-500);
  font-style: normal;
  font-weight: 900;
}
.hero__subtitle {
  margin-top: 1.7rem;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.62;
  color: #b3c2ce;
  max-width: 58ch;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.18);
}
.hero__subtitle strong { color: #fff; font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0; margin-top: 2.4rem; }
.hero__actions .btn + .btn { margin-left: -2px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3rem;
  padding-top: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.hero__meta-item {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-cond);
  font-size: 1.02rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b3c2ce;
  padding: 1.1rem 1.6rem 1.1rem 0;
  margin-right: 1.6rem;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.hero__meta-item:last-child { border-right: 0; margin-right: 0; }
.hero__meta-item svg { width: 20px; height: 20px; color: var(--orange-500); flex: none; }

/* floating route card (retained from v1 — unused in markup) */
.hero__card-wrap { display: flex; justify-content: flex-end; }
.route-card {
  width: min(370px, 100%);
  background: #fff;
  color: var(--ink-900);
  border-radius: 0;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange-500);
}
.route-card__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.route-card__label {
  font-family: var(--font-cond);
  font-size: 0.86rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.route-card__live {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-cond); font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--produce); font-weight: 600;
}
.route-card__live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--produce); box-shadow: 0 0 0 0 rgba(47,143,78,0.5);
  animation: ping 1.8s var(--ease-out) infinite;
}
.route-card__route { display: flex; align-items: center; justify-content: space-between; margin: 1.1rem 0 0.4rem; }
.route-card__port { text-align: center; }
.route-card__port .code { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1.1; color: var(--steel-900); }
.route-card__port .city { display: block; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; margin-top: 2px; }
.route-card__line {
  flex: 1; height: 2px; margin: 0 0.6rem; position: relative;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
.route-card__line svg { position: absolute; right: -6px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--orange-600); }
.route-card__meta { display: flex; justify-content: space-between; margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.route-card__meta div { font-size: 0.78rem; color: var(--muted); }
.route-card__meta strong { display: block; font-size: 1rem; color: var(--ink-900); font-variant-numeric: tabular-nums; }

/* ---------- Marquee (destination markets) ---------- */
.marquee {
  background: var(--orange-500);
  border-block: 0;
  padding-block: 1rem;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}
.marquee__track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-family: var(--font-cond); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: #fff; white-space: nowrap;
}
.marquee__item::before { content: ""; width: 7px; height: 7px; border-radius: 0; background: rgba(255,255,255,0.75); transform: rotate(45deg); }

/* ---------- Stats — dark structural band ---------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  text-align: left;
  padding: var(--sp-6) clamp(1rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line-dark);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7.5vw, 5.4rem);
  line-height: 0.9;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}
.stat__num .suffix { color: var(--orange-500); }
.stat__label {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 3px solid var(--orange-500);
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9fb0be;
}
.stats__note {
  margin-top: var(--sp-10);
  text-align: left;
  font-family: var(--font-cond);
  font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #7d8e9c;
}
.stats__note .chip {
  display: inline-block; margin: 0.25rem 0.4rem 0.25rem 0;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  color: #cdd8e2; background: rgba(255,255,255,0.04);
}

/* ============================================================
   PRODUCTS — full-bleed mosaic with overlaid copy
   ============================================================ */
.products { background: var(--white); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.product-card {
  --c: var(--orange-500);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
  background: var(--steel-900);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
/* Asymmetric mosaic, six tiles over three rows:
   spices 4 · produce 2 | granite 2 · garments 4 | steel 3 · construction 3 */
.product-card:nth-child(1) { grid-column: span 4; min-height: 470px; }
.product-card:nth-child(2) { grid-column: span 2; min-height: 470px; }
.product-card:nth-child(3) { grid-column: span 2; min-height: 410px; }
.product-card:nth-child(4) { grid-column: span 4; min-height: 410px; }
.product-card:nth-child(5),
.product-card:nth-child(6) { grid-column: span 3; min-height: 390px; }

.product-card:hover { transform: none; box-shadow: none; }
.product-card::after {
  content: "";
  position: absolute; inset: 0;
  border: 0 solid var(--c);
  border-bottom-width: 0;
  transition: border-bottom-width var(--dur) var(--ease-out);
  pointer-events: none;
  z-index: 2;
}
.product-card:hover::after { border-bottom-width: 6px; }

.product-card__media { position: absolute; inset: 0; aspect-ratio: auto; overflow: hidden; background: var(--steel-800); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.product-card:hover .product-card__media img { transform: scale(1.07); }
.product-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,13,19,0.15) 0%, rgba(8,13,19,0.55) 45%, rgba(8,13,19,0.93) 100%);
}
.product-card__badge {
  position: absolute; left: 0; top: 0; bottom: auto; z-index: 3;
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 0; background: var(--c); color: #fff;
  box-shadow: none;
}
.product-card__badge svg { width: 26px; height: 26px; }

.product-card__body {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column;
  padding: 1.6rem 1.6rem 1.7rem;
}
.product-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #fff;
}
.product-card__title::after {
  content: "";
  display: block;
  width: 46px; height: 4px;
  background: var(--c);
  margin-top: 0.85rem;
  transition: width var(--dur) var(--ease-out);
}
.product-card:hover .product-card__title::after { width: 96px; }
.product-card__desc { margin-top: 0.85rem; font-size: 0.97rem; color: #c0ccd6; max-width: 44ch; }
.product-card__list { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.3rem; }
.product-card__list li {
  font-family: var(--font-cond); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 0.65rem; border-radius: 0;
  background: rgba(255,255,255,0.12); color: #e6edf3;
}
.product-card__link {
  margin-top: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 600; font-size: 1rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
}
.product-card__link:hover { color: var(--orange-400); }
.product-card__link svg { width: 17px; height: 17px; transition: transform var(--dur) var(--ease-out); }
.product-card:hover .product-card__link svg { transform: translateX(5px); }

/* A wide tile keeps its copy to the left half so the photo stays readable */
.product-card:nth-child(4) .product-card__body { max-width: 60%; }

.product-card--spice { --c: var(--spice); }
.product-card--garments { --c: #1f7a8c; }
.product-card--produce { --c: var(--produce); }
.product-card--granite { --c: var(--granite); }
.product-card--steel { --c: #4a7fb5; }
.product-card--construction { --c: var(--construction); }

/* ============================================================
   WHY US (dark)
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.feature {
  background: var(--steel-900);
  border: 0;
  border-radius: 0;
  padding: 2rem 1.8rem 2.1rem;
  transition: background-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.feature:hover { transform: none; background: var(--steel-800); }
.feature__icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 0; background: var(--orange-500); color: #fff;
  margin-bottom: 1.4rem;
  transition: background-color var(--dur) var(--ease-out);
}
.feature:hover .feature__icon { background: var(--orange-600); }
.feature__icon svg { width: 28px; height: 28px; }
.feature__title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em;
  text-transform: uppercase; color: #fff;
}
.feature__desc { margin-top: 0.6rem; font-size: 0.98rem; color: #9fb0be; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__points { margin-top: 2rem; display: grid; gap: 0; }
.about__point {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}
.about__point:last-child { border-bottom: 1px solid var(--line); }
.about__point svg { width: 26px; height: 26px; color: var(--orange-500); flex: none; margin-top: 2px; }
.about__point h4 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: -0.005em; color: var(--steel-900);
}
.about__point p { font-size: 0.97rem; color: var(--muted); margin-top: 0.25rem; }

.about__panel {
  position: relative;
  background: var(--steel-950);
  border-radius: 0;
  border-top: 6px solid var(--orange-500);
  padding: clamp(1.8rem, 3.4vw, 2.8rem);
  color: #fff;
  overflow: hidden;
  box-shadow: none;
}
.about__panel-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(80% 80% at 70% 20%, #000, transparent 78%);
  mask-image: radial-gradient(80% 80% at 70% 20%, #000, transparent 78%);
}
.about__panel-inner { position: relative; }
.about__panel h3 {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 0.98; text-transform: uppercase; letter-spacing: -0.02em;
}
.about__badges { margin-top: 1.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.about__badge {
  background: var(--steel-950);
  border: 0;
  border-radius: 0;
  padding: 1.15rem 1.2rem;
}
.about__badge .k {
  font-family: var(--font-display); font-weight: 900; font-size: 2.1rem; line-height: 1;
  color: var(--orange-500); font-variant-numeric: tabular-nums; letter-spacing: -0.03em;
}
.about__badge .v {
  font-family: var(--font-cond); font-size: 0.95rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #9fb0be; margin-top: 0.5rem;
}

/* ============================================================
   PROCESS — numbered blocks
   ============================================================ */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--paper);
  padding: 2.6rem 1.2rem 1.8rem;
  transition: background-color var(--dur) var(--ease-out);
}
.step:hover { background: #fff; }
.step::before {
  content: "";
  position: absolute; left: 0; top: 0; right: 0; height: 4px;
  background: var(--line);
  transition: background-color var(--dur) var(--ease-out);
}
.step:hover::before { background: var(--orange-500); }
.step:last-child::before { background: var(--line); }
.step__dot {
  position: absolute; left: 1.2rem; top: 1.4rem;
  width: 10px; height: 10px; border-radius: 0;
  background: var(--orange-500); border: 0;
  z-index: 1;
}
.step__num {
  display: block;
  font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--line);
  margin-bottom: 0.6rem;
}
.step:hover .step__num { color: var(--orange-500); }
.step__title {
  margin-top: 0.2rem;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.005em; color: var(--steel-900);
}
.step__desc { margin-top: 0.45rem; font-size: 0.93rem; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.contact__list { margin-top: 2rem; display: grid; gap: 0; }
.contact__item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line-dark);
}
.contact__item:last-child { border-bottom: 1px solid var(--line-dark); }
.contact__item svg { width: 24px; height: 24px; color: var(--orange-500); flex: none; margin-top: 3px; }
.contact__item .k {
  font-family: var(--font-cond); font-size: 0.9rem; letter-spacing: 0.22em; text-transform: uppercase; color: #7d8e9c;
}
.contact__item .v { color: #fff; font-size: 1.06rem; margin-top: 0.15rem; }
.contact__item a { color: #fff; }
.contact__item a:hover { color: var(--orange-400); }
.contact__socials { display: flex; gap: 1px; margin-top: 2rem; }
.contact__socials a {
  width: 50px; height: 50px; border-radius: 0;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.07); border: 1px solid var(--line-dark);
  color: #cdd9ee;
  transition: background-color var(--dur), transform var(--dur), color var(--dur);
}
.contact__socials a:hover { background: var(--orange-500); color: #fff; transform: translateY(-3px); }
.contact__socials svg { width: 21px; height: 21px; }

.quote-form {
  background: #fff;
  color: var(--ink-900);
  border-radius: 0;
  border-top: 6px solid var(--orange-500);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg);
}
.quote-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-cond);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-700);
}
.field label .req { color: var(--orange-500); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.85rem 0.95rem;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink-900);
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background-color 160ms;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  background: #fff;
  box-shadow: inset 0 -3px 0 var(--orange-500);
}
.field .error-text { font-family: var(--font-cond); font-size: 0.9rem; letter-spacing: 0.06em; color: var(--orange-600); min-height: 1em; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: var(--orange-600); }
.form__note { margin-top: 1rem; font-size: 0.87rem; color: var(--muted); line-height: 1.55; }
.form__status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0;
  font-size: 0.94rem;
  display: none;
}
.form__status.is-success { display: block; background: #eaf6ed; color: #1c6b39; border-left: 4px solid #1faa52; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--steel-950); color: #9fb0be; padding-top: var(--sp-20); border-top: 4px solid var(--orange-500); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: var(--sp-16);
}
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__mark { height: 54px; background: #fff; padding: 8px 11px; border-radius: 0; }
.footer__about { margin-top: 1.2rem; font-size: 0.97rem; max-width: 40ch; color: #7d8e9c; }
.footer__col h5 {
  font-family: var(--font-cond); font-size: 0.98rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--orange-500); margin-bottom: 1.2rem;
  padding-bottom: 0.7rem; border-bottom: 1px solid var(--line-dark);
}
.footer__col ul { display: grid; gap: 0.65rem; }
.footer__col a { color: #9fb0be; font-size: 0.98rem; }
.footer__col a:hover { color: #fff; }
.footer__col li { font-size: 0.98rem; }
.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.7rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between;
  font-family: var(--font-cond);
  font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; color: #6b7c8a;
}
.footer__bottom a { color: #6b7c8a; }
.footer__bottom a:hover { color: var(--orange-400); }

/* ---------- Floating WhatsApp button ---------- */
.wa-fab {
  position: fixed;
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 24px);
  z-index: 95;
  display: inline-flex;
  align-items: center;
  height: 60px;
  border-radius: var(--r-pill);
  background: #1faa52;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(31, 170, 82, 0.42), 0 4px 12px rgba(8, 13, 19, 0.24);
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), background-color 240ms var(--ease-out);
}
.wa-fab:hover { transform: translateY(-3px); background: #17913f; text-decoration: none; color: #fff; box-shadow: 0 16px 36px rgba(31, 170, 82, 0.5), 0 6px 14px rgba(8, 13, 19, 0.26); }
.wa-fab__icon { width: 30px; height: 30px; margin: 15px; flex: none; }
.wa-fab__label {
  font-family: var(--font-cond);
  font-weight: 600; font-size: 1.05rem; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
  max-width: 0; opacity: 0; padding-left: 0;
  transition: max-width 320ms var(--ease-out), opacity 220ms var(--ease-out), padding 320ms var(--ease-out);
}
.wa-fab:hover .wa-fab__label,
.wa-fab:focus-visible .wa-fab__label { max-width: 240px; opacity: 1; padding-left: 20px; }
.wa-fab__pulse {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(31, 170, 82, 0.55);
  animation: waPulse 2.6s var(--ease-out) infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 170, 82, 0.5); }
  70%, 100% { box-shadow: 0 0 0 18px rgba(31, 170, 82, 0); }
}
@media (max-width: 560px) {
  .wa-fab { height: 56px; }
  .wa-fab__icon { width: 28px; height: 28px; margin: 14px; }
  /* icon-only on phones (label stays collapsed) */
  .wa-fab:hover .wa-fab__label, .wa-fab:focus-visible .wa-fab__label { max-width: 0; opacity: 0; padding-left: 0; }
}

/* ============================================================
   Scroll reveal animation  — UNCHANGED FROM v1
   ============================================================ */
/* Hidden-until-revealed state only applies when JS is active (progressive
   enhancement): with JS off, content stays fully visible. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Hero load sequence */
.js .hero [data-hero] {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 760ms var(--ease-out) forwards;
  animation-delay: var(--hero-delay, 0ms);
}

/* SVG route draw */
.route-path {
  stroke-dasharray: var(--len, 1000);
  stroke-dashoffset: var(--len, 1000);
  animation: drawRoute 2.6s var(--ease-out) 0.5s forwards;
}
.route-ship { offset-path: var(--ship-path); animation: sailShip 6s linear 0.8s infinite; }
.port-ping { transform-box: fill-box; transform-origin: center; animation: portPing 2.4s ease-out infinite; }
.port-ping:nth-of-type(2) { animation-delay: 0.6s; }
.port-ping:nth-of-type(3) { animation-delay: 1.2s; }
.port-ping:nth-of-type(4) { animation-delay: 1.8s; }

/* ---------- Keyframes ---------- */
@keyframes heroIn { to { opacity: 1; transform: none; } }
@keyframes drawRoute { to { stroke-dashoffset: 0; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(47,143,78,0.5); }
  70%, 100% { box-shadow: 0 0 0 10px rgba(47,143,78,0); }
}
@keyframes portPing {
  0% { opacity: 0.9; transform: scale(0.4); }
  70%, 100% { opacity: 0; transform: scale(2.4); }
}
@keyframes sailShip {
  0% { offset-distance: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.float { animation: floaty 6s var(--ease-in-out) infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:nth-child(n) { grid-column: span 1; min-height: 380px; }
  .product-card:nth-child(4) .product-card__body { max-width: 100%; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__timeline { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__map { opacity: 0.4; width: 70%; }
}

@media (max-width: 860px) {
  :root { --header-h: 70px; }
  .nav__links, .nav__cta-desktop { display: none; }
  .nav__toggle { display: block; }
  .nav__spacer { display: none; }
  .brand { margin-right: auto; }

  .hero__inner { display: block; min-height: auto; }
  /* uniform scrim on small screens so text stays readable over the video */
  .hero__overlay { background: linear-gradient(180deg, rgba(8,13,19,0.9) 0%, rgba(8,13,19,0.76) 55%, rgba(8,13,19,0.9) 100%); }
  .hero__card-wrap { justify-content: flex-start; }
  .hero__map { display: none; }
  .hero__meta-item { border-right: 0; margin-right: 0; padding: 0.75rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero__meta-item:last-child { border-bottom: 0; }
  .about__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .stat { padding-inline: 1rem; }
  .stat__num { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .stat__label { font-size: 0.86rem; letter-spacing: 0.12em; }
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line-dark); padding-left: 0; padding-block: 1.5rem; }
  .stat:first-child { border-top: 0; padding-top: 0; }
  .products__grid { grid-template-columns: 1fr; }
  .product-card:nth-child(n) { grid-column: span 1; min-height: 330px; }
  .why__grid { grid-template-columns: 1fr; }
  .process__timeline { grid-template-columns: 1fr; }
  .step { padding: 1.6rem 1.2rem 1.5rem 2.6rem; }
  .step::before { left: 0; top: 0; bottom: 0; right: auto; width: 4px; height: auto; }
  .step__dot { left: 1.2rem; top: 1.75rem; }
  .step__num { font-size: 1.9rem; }
  .quote-form__grid { grid-template-columns: 1fr; }
  .about__badges { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .btn + .btn { margin-left: 0; margin-top: -2px; }
}

/* ============================================================
   REDUCED MOTION — UNCHANGED FROM v1
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero [data-hero] { opacity: 1 !important; transform: none !important; }
  .route-path { stroke-dashoffset: 0 !important; }
  .route-ship, .port-ping, .float, .marquee__track { animation: none !important; }
  /* keep the hero video visible but paused (static frame) under reduced motion — handled in JS */
}

/* ============================================================
   PRODUCT DETAIL PAGES (/products/<slug>/)
   Same design language: hard edges, cargo orange, Archivo caps.
   Reuses the existing [data-reveal] / [data-hero] animation hooks.
   ============================================================ */

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Hero ---------- */
.pdp-hero {
  --c: var(--orange-500);
  position: relative;
  background: var(--steel-950);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(2rem, 5vw, 3rem) clamp(3.5rem, 8vw, 6rem);
}
.pdp-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.pdp-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(92deg, rgba(8,13,19,0.96) 0%, rgba(8,13,19,0.9) 42%, rgba(8,13,19,0.6) 66%, rgba(8,13,19,0.25) 100%),
    linear-gradient(0deg, rgba(8,13,19,0.7) 0%, rgba(8,13,19,0) 40%);
}
.pdp-hero__copy { max-width: 720px; margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.pdp-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-top: 1.3rem;
  color: #fff;
}
.pdp-hero__title::after {
  content: "";
  display: block;
  width: 90px; height: 6px;
  background: var(--c);
  margin-top: 1.2rem;
}
.pdp-hero__lead {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: #b3c2ce;
  max-width: 56ch;
}

/* ---------- Breadcrumbs ---------- */
.crumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem;
  font-family: var(--font-cond);
  font-size: 0.98rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #7d8e9c;
}
.crumbs li + li::before { content: "/"; margin-right: 0.55rem; color: var(--orange-500); }
.crumbs a { color: #9fb0be; }
.crumbs a:hover { color: #fff; }
.crumbs [aria-current="page"] { color: #fff; }

/* ---------- Grade / variety cards ---------- */
.pdp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pdp-card {
  background: var(--white);
  padding: 1.7rem 1.5rem 1.8rem;
  border-top: 4px solid transparent;
  transition: border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.pdp-card:hover { border-top-color: var(--orange-500); background: var(--paper); }
.pdp-card__title {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.18rem;
  text-transform: uppercase; letter-spacing: -0.005em;
  color: var(--steel-900);
}
.pdp-card__desc { margin-top: 0.6rem; font-size: 0.97rem; color: var(--muted); }

/* ---------- Spec table ---------- */
.pdp-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.pdp-quality {
  margin-top: 1.8rem;
  display: grid; gap: 0;
}
.pdp-quality li {
  position: relative;
  padding: 0.95rem 0 0.95rem 2rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.98rem;
  color: #c3ceda;
}
.pdp-quality li:last-child { border-bottom: 1px solid var(--line-dark); }
.pdp-quality li::before {
  content: "";
  position: absolute; left: 0; top: 1.35rem;
  width: 10px; height: 10px;
  background: var(--orange-500);
}
.spec-wrap { overflow-x: auto; border: 1px solid var(--line-dark); }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  background: rgba(255,255,255,0.03);
}
.spec-table th,
.spec-table td {
  text-align: left;
  vertical-align: top;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line-dark);
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table th {
  width: 34%;
  font-family: var(--font-cond);
  font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange-400);
  white-space: nowrap;
}
.spec-table td { color: #dfe6ec; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.faq__item { background: var(--paper); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.08rem;
  text-transform: uppercase; letter-spacing: -0.005em;
  color: var(--steel-900);
  transition: background-color var(--dur) var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: none;
  width: 14px; height: 14px;
  border-right: 3px solid var(--orange-500);
  border-bottom: 3px solid var(--orange-500);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform var(--dur) var(--ease-out);
}
.faq__item[open] summary { background: #fff; }
.faq__item[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq__item summary:hover { background: #fff; }
.faq__answer { padding: 0 1.5rem 1.5rem; }
.faq__answer p { font-size: 0.99rem; color: var(--muted); max-width: 75ch; }

/* ---------- CTA band ---------- */
.pdp-cta { background: var(--steel-900); color: #dfe6ec; }
.pdp-cta .section__title { color: #fff; }
.pdp-cta .section__lead { color: #9fb0be; }
.pdp-cta__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border-left: 6px solid var(--orange-500);
  padding-left: clamp(1.2rem, 3vw, 2.2rem);
}
.pdp-cta__actions { display: flex; flex-direction: column; gap: 1px; }

/* ---------- Related products ---------- */
.related {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.related__card {
  position: relative;
  display: block;
  min-height: 200px;
  overflow: hidden;
  background: var(--steel-900);
}
.related__card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 700ms var(--ease-out), opacity var(--dur) var(--ease-out);
}
.related__card:hover img { transform: scale(1.07); opacity: 0.75; }
.related__name {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.02rem; line-height: 1.1;
  text-transform: uppercase; letter-spacing: -0.005em;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(8,13,19,0.9));
}
.related__card::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 0;
  background: var(--orange-500);
  transition: height var(--dur) var(--ease-out);
}
.related__card:hover::after { height: 5px; }

@media (max-width: 1024px) {
  .pdp-split { grid-template-columns: 1fr; }
  .related { grid-template-columns: repeat(3, 1fr); }
  .pdp-cta__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .related { grid-template-columns: repeat(2, 1fr); }
  .spec-table th { width: auto; white-space: normal; }
  .spec-table th, .spec-table td { display: block; }
  .spec-table th { border-bottom: 0; padding-bottom: 0.2rem; }
}

/* ============================================================
   PRODUCTS DROPDOWN  (markup: nav-markup.js · behaviour: js/nav.js)
   ============================================================ */
.nav__item { position: relative; display: flex; align-items: center; }

.nav__link--menu {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: 0;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c3ceda;
  padding: 0.7rem 0.15rem;
  cursor: pointer;
}
.nav__chev {
  width: 18px; height: 18px;
  transition: transform var(--dur) var(--ease-out);
}
.nav__item--menu.is-open .nav__link--menu { color: #fff; }
.nav__item--menu.is-open .nav__link--menu::after { transform: scaleX(1); }

/* The panel */
.nav__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: -0.9rem;
  min-width: 290px;
  background: var(--steel-950);
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--orange-500);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
  padding: 0.4rem 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 0s linear 200ms;
  z-index: var(--z-menu);
}
.nav__item--menu.is-open .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav__menu-item,
.nav__menu-all {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.2rem;
  font-family: var(--font-cond);
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c3ceda;
  white-space: nowrap;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out), padding-left 160ms var(--ease-out);
}
.nav__menu-item:hover,
.nav__menu-item:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding-left: 1.5rem;
}
.nav__menu-swatch {
  width: 10px; height: 10px;
  flex: none;
  background: var(--c, var(--orange-500));
}
.nav__menu-all {
  margin-top: 0.4rem;
  border-top: 1px solid var(--line-dark);
  color: var(--orange-400);
  font-weight: 600;
}
.nav__menu-all:hover,
.nav__menu-all:focus-visible { background: rgba(242, 86, 15, 0.12); color: var(--orange-400); }

/* ---------- Mobile submenu ---------- */
.mobile-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0.25rem;
  font-family: var(--font-cond);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dfe6ec;
  cursor: pointer;
}
.mobile-menu__toggle .nav__chev { width: 18px; height: 18px; color: var(--orange-500); }
.mobile-menu__toggle[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }
.mobile-menu__sub {
  display: grid;
  overflow: hidden;
  max-height: 0;
  transition: max-height 280ms var(--ease-out);
  background: rgba(255, 255, 255, 0.04);
}
.mobile-menu__sub.is-open { max-height: 460px; }
.mobile-menu__sub a {
  padding: 0.85rem 0.25rem 0.85rem 1.4rem;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--orange-500);
  color: #c3ceda;
}
.mobile-menu__sub a:last-child { color: var(--orange-400); }

/* ============================================================
   HOMEPAGE CARDS — name only, whole tile clickable
   ============================================================ */
.product-card__body { padding-block: 1.6rem 1.7rem; }
.product-card__link {
  margin-top: 1rem;
}
/* Stretch the CTA over the whole tile so anywhere on the card navigates. */
.product-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}
.product-card:hover { cursor: pointer; }

/* Detail pages keep their inline CTA behaviour, not a stretched hit area. */
.related__card .product-card__link::after { content: none; }

/* ============================================================
   PRODUCT PAGE — variety chips under the hero lead
   ============================================================ */
.pdp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
}
.pdp-hero__chips li {
  font-family: var(--font-cond);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e6edf3;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--c, var(--orange-500));
  padding: 0.4rem 0.8rem;
}

/* ============================================================
   PRODUCTS LANDING PAGE (/products/)
   ============================================================ */
.plp-head {
  background: var(--steel-950);
  color: #fff;
  padding-block: clamp(2rem, 5vw, 3rem) clamp(2.5rem, 6vw, 4rem);
  border-bottom: 4px solid var(--orange-500);
}
.plp-head .hero__eyebrow { margin-top: clamp(1.5rem, 4vw, 2.25rem); }

/* Even grid here — the asymmetric mosaic belongs to the homepage. */
.plp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.plp-grid .product-card:nth-child(n) {
  grid-column: span 1;
  min-height: 430px;
}
.plp-grid .product-card__body { max-width: 100%; }
.plp-grid .product-card__desc { display: block; }

@media (max-width: 1024px) {
  .plp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .plp-grid { grid-template-columns: 1fr; }
  .plp-grid .product-card:nth-child(n) { min-height: 360px; }
}

/* ============================================================
   PRODUCT RANGE GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 4px;
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--steel-900);
  aspect-ratio: 4 / 3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.5rem 1.1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(8, 13, 19, 0.92));
}
.gallery__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: #fff;
}
.gallery__note {
  font-family: var(--font-cond);
  font-size: 0.96rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b3c2ce;
}
.gallery__item::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 0;
  background: var(--c, var(--orange-500));
  transition: height var(--dur) var(--ease-out);
}
.gallery__item:hover::after { height: 5px; }
