/* ============================================
   VASCALI HOME — Concept Reset
   Bento + Soft Beauty + Exaggerated Type
   Standalone stylesheet (only for index.html)
   ============================================ */

/* Fonts loaded via <link> in HTML <head> — preconnect + stylesheet pattern */
:root {
  /* Palette pivot — matched to the dramatic Vascali campaign shots:
     cream base + deep red moments + blush pink + logo amber accent.
     Reads as a high-fashion beauty campaign (Hermès / Carolina Herrera energy). */
  --bg:         #F8F2E8;   /* warm cream base */
  --bg-soft:    #F2EADC;   /* cream deeper */
  --bg-warm:    #FAE9E3;   /* powder blush card */
  --bg-cream:   #FBF7EF;   /* lightest cream */
  --surface:    #FFFFFF;
  --ink:        #1A1A18;
  --ink-soft:   #2C2C28;
  --char:       #6B6760;
  --char-light: #8B8678;
  --line:       rgba(26, 26, 24, 0.08);
  --line-soft:  rgba(26, 26, 24, 0.04);
  --blush:      #F4C7C2;   /* soft blush — soap bar color */
  --blush-deep: #E29A98;   /* deeper blush */
  --red:        #B11E2A;   /* signature deep red — package + campaign */
  --red-soft:   #C8242D;
  --amber:      #E89149;   /* logo orange — used sparingly as wordmark accent */
  --terra:      #B86A2A;   /* terracotta — bridge between red and amber */
  --ochre:      #E89149;   /* alias to amber */
  --peach:      #F2B380;   /* peach */
  --olive:      #4A5239;   /* legacy */

  /* Type */
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Spacing */
  --gap:        clamp(8px, 1.2vw, 16px);
  --gap-lg:     clamp(16px, 2vw, 28px);
  --pad-page:   clamp(16px, 2.5vw, 32px);
  --pad-section: clamp(80px, 12vw, 160px);

  /* Cards */
  --r:          28px;
  --r-sm:       18px;
  --r-lg:       40px;
  --shadow-1:   0 1px 2px rgba(26, 26, 24, 0.04), 0 8px 24px rgba(26, 26, 24, 0.04);
  --shadow-2:   0 2px 4px rgba(26, 26, 24, 0.05), 0 20px 40px rgba(26, 26, 24, 0.08);

  /* Motion */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:     0.25s;
  --t-med:      0.5s;
  --t-slow:     1.0s;
}

/* ---- Reset & base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
::selection { background: var(--ink); color: var(--bg-cream); }
em { font-style: italic; font-feature-settings: 'ss01'; }

/* Subtle paper-grain — tactile depth without colour. Multiply blend keeps it
   invisible on the dark ink sections and present on cream/blush surfaces. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg-cream);
  padding: 12px 20px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---- Typography utilities ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--char);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ochre);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.display em { font-weight: 400; }
.display .accent { color: var(--red); }

.h2 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-size: clamp(2.95rem, 6.5vw, 5.9rem);
}

.h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.lead {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  color: var(--char);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--bg-cream); }
.btn-primary:hover { background: var(--terra); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); border-color: var(--ink); }
.btn-pink { background: var(--terra); color: var(--surface); }
.btn-pink:hover { background: var(--ink); }

/* ============================================
   HEADER
   ============================================ */
.h-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px var(--pad-page);
  transition: background var(--t-med) var(--ease), backdrop-filter var(--t-med) var(--ease);
  background: transparent;
}
.h-header.is-scrolled {
  background: rgba(244, 239, 231, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.h-header-inner {
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.h-logo img { height: 40px; width: auto; }
.h-nav {
  display: flex;
  gap: 36px;
}
.h-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast);
}
.h-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.h-nav a:hover::after,
.h-nav a.is-active::after { transform: scaleX(1); }

/* Nav dropdown — Catalogue submenu */
.h-nav-item { position: relative; }
.h-nav-item > a { display: inline-flex; align-items: center; gap: 6px; }
.h-nav-caret {
  display: inline-block;
  font-size: 0.7em;
  transform: translateY(1px);
  transition: transform var(--t-fast) var(--ease);
  opacity: 0.6;
}
.h-nav-item:hover .h-nav-caret,
.h-nav-item:focus-within .h-nav-caret { transform: translateY(1px) rotate(180deg); opacity: 1; }
.h-nav-sub {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  z-index: 60;
}
.h-nav-item:hover .h-nav-sub,
.h-nav-item:focus-within .h-nav-sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.h-nav-sub-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 0;
  min-width: 260px;
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
}
.h-nav-sub a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 22px;
  white-space: nowrap;
  transition: background var(--t-fast);
  position: static;
}
.h-nav-sub a::after { display: none; }
.h-nav-sub a:hover { background: var(--bg-cream); }
.h-nav-sub a small {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--char-light);
  margin-top: 3px;
  font-weight: 400;
}
.h-cta {
  background: var(--ink);
  color: var(--bg-cream);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--t-fast);
}
.h-cta:hover { background: var(--terra); }
.h-toggle {
  display: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}
.h-toggle span {
  display: block; width: 14px; height: 1px;
  background: var(--ink);
  position: relative;
}
.h-toggle span::before,
.h-toggle span::after {
  content: ''; position: absolute; left: 0; width: 14px; height: 1px; background: var(--ink);
}
.h-toggle span::before { top: -5px; }
.h-toggle span::after  { top: 5px; }

/* ============================================
   PAGE WRAPPER
   ============================================ */
.h-main {
  padding: 0 var(--pad-page);
  max-width: 1640px;
  margin: 0 auto;
}

/* ============================================
   HERO — BENTO GRID
   ============================================ */
.h-hero {
  padding-top: 88px;
  display: grid;
  gap: var(--gap-lg);
}
.h-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 8px;
  flex-wrap: wrap;
}
.h-hero-meta .eyebrow { color: var(--char); }

/* Bento grid — explicit 2-row layout: hero row + stats row */
.h-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: minmax(440px, 1.55fr) minmax(220px, 1fr);
  gap: var(--gap-lg);
  min-height: min(82vh, 880px);
}

.b-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.b-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

/* Variants */
.b-ink   { background: var(--ink); color: var(--bg-cream); }
.b-cream { background: var(--bg-cream); }
.b-rose  { background: var(--bg-warm); }
.b-ochre { background: linear-gradient(135deg, var(--amber) 0%, var(--terra) 100%); color: var(--surface); }
.b-olive { background: var(--terra); color: var(--bg-cream); }

/* HERO bento layout — explicit placement */
.b-headline { grid-column: span 7; grid-row: 1; padding: 56px; display: flex; flex-direction: column; justify-content: space-between; }
.b-product  { grid-column: span 5; grid-row: 1; padding: 0; background: var(--ink); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; transform: translateZ(0); }
.b-product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.0);
  transition: transform 1.6s var(--ease-soft);
}
.b-product:hover .b-product-photo { transform: scale(1.04); }
.b-product::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.b-product .b-product-num,
.b-product .b-product-tag {
  color: rgba(255, 255, 255, 0.85);
  z-index: 4;
  mix-blend-mode: difference;
}
.b-stat     { grid-column: span 3; grid-row: 2; }

/* Headline card */
.b-headline .h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.55rem, 8.85vw, 8.25rem);
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.b-headline .h-display em { font-weight: 400; }
.b-headline .h-display .accent { color: var(--red); }
.b-headline .h-actions {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 32px;
}

/* Product card */
.b-product-image {
  position: relative;
  width: 88%; height: 88%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.b-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(26, 26, 24, 0.18));
  transform: rotate(-6deg);
  animation: floatSoft 8s ease-in-out infinite;
}
@keyframes floatSoft {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-12px); }
}
.b-product-num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--char);
  z-index: 3;
}
.b-product-tag {
  position: absolute;
  bottom: 24px; right: 24px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--char);
  z-index: 3;
  text-align: right;
}

/* Stat cards */
.b-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.b-stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-feature-settings: 'ss01';
}
.b-stat-num em { color: var(--ochre); font-style: italic; font-weight: 400; }
.b-ink .b-stat-num em { color: var(--peach); }
.b-stat-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--char);
  margin-top: 14px;
}
.b-ink .b-stat-label,
.b-olive .b-stat-label,
.b-ochre .b-stat-label { color: rgba(255, 255, 255, 0.6); }

/* Cert chip card */
.b-certs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.b-cert-list {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.b-cert-list span {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.b-ink .b-cert-list span { border-color: rgba(255,255,255,0.18); color: var(--bg-cream); }

/* ============================================
   MARQUEE
   ============================================ */
.h-marquee {
  margin: var(--gap-lg) calc(-1 * var(--pad-page));
  padding: 22px 0;
  background: var(--ink);
  color: var(--bg-cream);
  overflow: hidden;
  border-radius: 0;
}
.h-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeMove 50s linear infinite;
  gap: 60px;
  width: max-content;
}
.h-marquee-track:hover { animation-play-state: paused; }
.h-marquee-track span {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: var(--bg-cream);
  display: inline-flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}
.h-marquee-track span::after {
  content: '✦';
  font-style: normal;
  font-size: 0.6em;
  color: var(--ochre);
}
@keyframes marqueeMove {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.h-section { padding: var(--pad-section) 0; }
.h-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
.h-section-head .h2 { color: var(--ink); }
.h-section-head .lead { max-width: 50ch; }

/* ============================================
   PROMISES — Bento (Why Choose Us)
   ============================================ */
.h-promise-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: var(--gap-lg);
}
.p-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.p-card:hover { transform: translateY(-3px); background: var(--bg-cream); }
.p-card-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
}
.p-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.p-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--char);
  margin-top: 12px;
  max-width: 32ch;
}
.p-card .p-meta {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char-light);
  margin-top: 20px;
}
.p-card.p-wide  { grid-column: span 6; min-height: 280px; }
.p-card.p-tall  { grid-column: span 6; min-height: 280px; }
.p-card.p-third { grid-column: span 4; }
.p-card.p-full  { grid-column: 1 / -1; min-height: 240px; }
.p-card.p-full > div { max-width: 60ch; }
.p-card.p-full p { max-width: 60ch; }

/* ============================================
   LIQUID SOAP — Coming-soon teaser (lead capture)
   ============================================ */
.h-liquid-band {
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px);
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.h-liquid-band::before {
  content: '';
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  top: -30%;
  left: -25%;
  background: radial-gradient(circle, rgba(232, 145, 73, 0.16), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.h-liquid-band > * { position: relative; z-index: 1; }
.h-liquid-band .eyebrow { color: var(--terra); }
.h-liquid-band .eyebrow .dot { background: var(--ochre); }
.h-liquid-band h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.3vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.h-liquid-band h2 em { font-weight: 400; color: var(--red); }
.h-liquid-band > p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}
.h-liquid-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.h-liquid-meta {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char);
}
.p-card.p-rose   { background: var(--bg-warm); }
.p-card.p-rose:hover { background: var(--peach); color: var(--ink); }
.p-card.p-dark   { background: var(--ink); color: var(--bg-cream); }
.p-card.p-dark .p-card-num { color: var(--peach); }
.p-card.p-dark p, .p-card.p-dark .p-meta { color: rgba(255,255,255,0.65); }

/* ============================================
   BRANDS — Horizontal scroll carousel
   ============================================ */
.h-brands {
  background: var(--ink);
  color: var(--bg-cream);
  margin: 0 calc(-1 * var(--pad-page));
  padding: var(--pad-section) var(--pad-page);
}
.h-brands .h-section-head .h2 { color: var(--bg-cream); }
.h-brands .h-section-head .lead { color: rgba(255,255,255,0.65); }

.h-brand-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}
.h-brand-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--t-med) var(--ease), background var(--t-med);
}
.h-brand-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.h-brand-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden; transform: translateZ(0);
  background: linear-gradient(135deg, #2A2A26 0%, #1A1A18 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
}
.h-brand-card-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform var(--t-slow) var(--ease);
}
.h-brand-card:hover .h-brand-card-img img { transform: scale(1.05); }
.h-brand-card-num {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
}
.h-brand-card-tag {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre);
}
.h-brand-card-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.h-brand-card-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bg-cream);
}
.h-brand-card-body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.h-brand-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.h-brand-card-link {
  font-size: 0.88rem;
  color: var(--bg-cream);
  display: inline-flex; gap: 8px;
  transition: gap var(--t-fast);
}
.h-brand-card:hover .h-brand-card-link { gap: 14px; }
.h-brand-card-count {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   CAMPAIGN — Full-bleed editorial moment
   Big model shot, type overlay
   ============================================ */
.h-campaign {
  margin: var(--pad-section) calc(-1 * var(--pad-page));
  position: relative;
  overflow: hidden; transform: translateZ(0);
  border-radius: var(--r-lg);
  margin-left: 0;
  margin-right: 0;
}
.h-campaign-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--r-lg);
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-soft);
}
.h-campaign:hover .h-campaign-img { transform: scale(1.0); }
.h-campaign-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
  border-radius: var(--r-lg);
}
.h-campaign-overlay .eyebrow { color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.h-campaign-overlay .eyebrow .dot { background: var(--blush); }
.h-campaign-overlay h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.95rem, 6.5vw, 5.9rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  max-width: 18ch;
}
.h-campaign-overlay h2 em { font-weight: 400; color: var(--blush); }
.h-campaign-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 42ch;
  margin-top: 20px;
}

/* Two-up lifestyle gallery */
.h-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  margin-top: var(--gap-lg);
}
.h-gallery-card {
  position: relative;
  overflow: hidden; transform: translateZ(0);
  border-radius: var(--r);
  aspect-ratio: 1 / 1;
  background: var(--ink);
}
.h-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-soft);
}
.h-gallery-card:hover img { transform: scale(1.08); }
.h-gallery-card-label {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

/* ============================================
   STATEMENT — Exaggerated minimalism
   ============================================ */
.h-statement {
  padding: var(--pad-section) 0;
  text-align: left;
  position: relative;
}
.h-statement-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 18ch;
}
.h-statement-text em { font-weight: 400; }
.h-statement-text .accent { color: var(--red); }
.h-statement-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  gap: 40px;
  flex-wrap: wrap;
}
.h-statement-foot .lead { max-width: 48ch; }

/* ============================================
   PRODUCTS — Horizontal snap-scroll rail
   ============================================ */
.h-products { background: var(--bg-cream); margin: 0 calc(-1 * var(--pad-page)); padding: var(--pad-section) var(--pad-page); border-radius: var(--r-lg) var(--r-lg) 0 0; }
.h-products-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap;
}
.h-products-head .lead { max-width: 40ch; }

.h-rail-wrap { position: relative; }
.h-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 380px);
  gap: var(--gap-lg);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.h-rail::-webkit-scrollbar { height: 6px; }
.h-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.h-rail::-webkit-scrollbar-track { background: transparent; }

.h-rail-card {
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.h-rail-card:hover { transform: translateY(-4px); }
.h-rail-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  overflow: hidden; transform: translateZ(0);
}
.h-rail-card-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform var(--t-slow) var(--ease);
}
.h-rail-card:hover .h-rail-card-img img { transform: scale(1.04); }
.h-rail-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.h-rail-card-body h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.h-rail-card-body h4 em { color: var(--ochre); }
.h-rail-card-body .meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--char-light);
}

.h-rail-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}
.h-rail-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast) var(--ease);
}
.h-rail-btn:hover { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }
.h-rail-btn svg { width: 18px; height: 18px; }

/* ============================================
   OEM CTA BAND
   ============================================ */
.h-cta-band {
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  padding: clamp(48px, 8vw, 96px);
  margin: var(--pad-section) 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.h-cta-band::before {
  content: '';
  position: absolute;
  width: 50vmax;
  height: 50vmax;
  bottom: -30%;
  right: -20%;
  background: radial-gradient(circle, rgba(200, 146, 61, 0.25), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.h-cta-band-content { position: relative; z-index: 1; }
.h-cta-band-content .eyebrow { color: var(--red); margin-bottom: 24px; }
.h-cta-band-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.95rem, 5.9vw, 5.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.h-cta-band-content h2 em { font-weight: 400; color: var(--red); }
.h-cta-band-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 24px;
}
.h-cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.h-cta-band-actions .btn { justify-content: space-between; padding: 18px 28px; }
.h-cta-band-direct {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 24, 0.1);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char);
}
.h-cta-band-direct a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

/* ============================================
   INNER PAGE — Hero header
   ============================================ */
.h-page-hero {
  padding: 140px 0 var(--pad-section);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.h-page-hero .crumb {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--char);
  margin-bottom: 28px;
}
.h-page-hero .crumb a { color: var(--char); }
.h-page-hero .crumb a:hover { color: var(--ink); }
.h-page-hero .crumb .sep { margin: 0 10px; opacity: 0.5; }
.h-page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.55rem, 8.25vw, 7.1rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.h-page-hero h1 em { font-weight: 400; }
.h-page-hero h1 .accent { color: var(--red); }
.h-page-hero .lead { max-width: 48ch; padding-bottom: 12px; }

/* Story block — image + text 2-col */
.h-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.h-story.reverse > :first-child { order: 2; }
.h-story-img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.h-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-soft);
}
.h-story:hover .h-story-img img { transform: scale(1.0); }
.h-story-text { display: flex; flex-direction: column; gap: 18px; }
.h-story-text .eyebrow { color: var(--red); margin-bottom: 8px; }
.h-story-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
}
.h-story-text h2 em { font-weight: 400; }
.h-story-text h2 .accent { color: var(--red); }
.h-story-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--char);
}
.h-story-text .btn { margin-top: 16px; align-self: flex-start; }

/* Vision & Mission — 2-up cards */
.h-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
}
.h-vm-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--t-med) var(--ease);
}
.h-vm-card:hover { transform: translateY(-3px); }
.h-vm-card.dark { background: var(--ink); color: var(--bg-cream); }
.h-vm-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h-vm-card.dark h3 { color: var(--bg-cream); }
.h-vm-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--char);
}
.h-vm-card.dark p { color: rgba(255,255,255,0.7); }

/* News — editorial list */
.h-news-list { display: flex; flex-direction: column; }
.h-news-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.h-news-item:last-child { border-bottom: 1px solid var(--line); }
.h-news-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.h-news-meta time { color: var(--ink); font-weight: 500; }
.h-news-meta span { color: var(--red); }
.h-news-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.h-news-title a { color: inherit; transition: color var(--t-fast); }
.h-news-title a:hover { color: var(--red); }
.h-news-title em { font-style: italic; }
.h-news-item p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--char);
  max-width: 62ch;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .h-news-item { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
}

/* Sustainability — same 3-up rhythm as certifications */
.h-sust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}
.h-sust-card {
  background: var(--bg-cream);
  border-radius: var(--r);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line-soft);
  transition: transform var(--t-med) var(--ease);
}
.h-sust-card:hover { transform: translateY(-3px); }
.h-sust-card .num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.h-sust-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--ink);
}
.h-sust-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--char);
}
@media (max-width: 900px) {
  .h-sust-grid { grid-template-columns: 1fr; }
}

/* Certifications — 3-up or 4-up bento */
.h-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}
.h-cert-grid.h-cert-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .h-cert-grid.h-cert-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.h-cert-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease);
}
.h-cert-card:hover { transform: translateY(-3px); }
.h-cert-badge {
  width: 96px;
  height: 96px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-cert-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--t-med) var(--ease);
}
.h-cert-card:hover .h-cert-badge img { transform: rotate(-3deg) scale(1.04); }
.h-cert-card .num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.h-cert-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h-cert-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--char);
  flex: 1;
}
.h-cert-card .issuer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.h-cert-card .issuer small {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--char-light);
  margin-top: 6px;
}

/* Laundry — image-led OEM feature */
.h-laundry-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.h-laundry-feature-img {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden; transform: translateZ(0);
}
.h-laundry-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.h-laundry-feature:hover .h-laundry-feature-img img { transform: scale(1.03); }
.h-laundry-feature-img .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  background: rgba(251, 247, 239, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 500;
  text-transform: uppercase;
}
.h-laundry-feature-body {
  padding: 56px 48px 56px 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.h-laundry-feature-body .num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
}
.h-laundry-feature-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}
.h-laundry-feature-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--char);
  max-width: 52ch;
}
.h-laundry-feature-body p + p { margin-top: -4px; }
.h-laundry-feature-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .h-laundry-feature { grid-template-columns: 1fr; gap: 0; }
  .h-laundry-feature-img { aspect-ratio: 16 / 11; }
  .h-laundry-feature-body { padding: 32px 28px 36px; }
}

/* World map — interactive country-level choropleth */
.h-world-map {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 24px 20px;
  overflow: hidden;
}
.h-world-map-frame { position: relative; }
.h-world-map svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 540px;
}
/* Base countries — quiet, with subtle continent banding */
.h-world-map .vm-base path {
  fill: #1A1A18;
  fill-opacity: 0.06;
  transition: fill-opacity var(--t-fast) var(--ease);
}
.h-world-map .vm-base .vm-c-africa   { fill: #2C2818; fill-opacity: 0.11; }
.h-world-map .vm-base .vm-c-asia     { fill: #1A1F22; fill-opacity: 0.085; }
.h-world-map .vm-base .vm-c-americas { fill: #1A1A18; fill-opacity: 0.075; }
.h-world-map .vm-base .vm-c-europe   { fill: #1A1A1F; fill-opacity: 0.055; }
.h-world-map .vm-base .vm-c-oceania  { fill: #1F1A18; fill-opacity: 0.065; }
.h-world-map[data-interactive="true"] .vm-base path:hover {
  fill-opacity: 0.18;
}
/* Export countries — ochre, interactive */
.h-world-map .vm-exports path {
  fill: #E89149;
  fill-opacity: 0.85;
  cursor: pointer;
  transition: fill-opacity var(--t-fast) var(--ease), filter var(--t-fast) var(--ease);
}
.h-world-map[data-interactive="true"] .vm-exports path:hover,
.h-world-map[data-interactive="true"] .vm-exports path.is-active {
  fill-opacity: 1;
  filter: drop-shadow(0 2px 6px rgba(232, 145, 73, 0.55));
}
/* Dot overlay (HK / Mayotte / Kiribati / São Tomé) — pulse + interactive */
.h-world-map .vm-dot-overlay circle {
  fill: #E89149;
  stroke: #FBF7EF;
  stroke-width: 1.6;
  cursor: pointer;
  animation: vmPulse 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
  transition: r var(--t-fast) var(--ease);
}
.h-world-map[data-interactive="true"] .vm-dot-overlay circle:hover,
.h-world-map[data-interactive="true"] .vm-dot-overlay circle.is-active {
  r: 8;
}
@keyframes vmPulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(232, 145, 73, 0)); }
  50%      { filter: drop-shadow(0 0 6px rgba(232, 145, 73, 0.6)); }
}
@media (prefers-reduced-motion: reduce) {
  .h-world-map .vm-dot-overlay circle { animation: none; }
}
/* Tooltip floating near cursor */
.h-world-map-tooltip {
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  padding: 7px 13px;
  background: var(--ink);
  color: var(--bg-cream);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -120%) scale(0.92);
  transform-origin: bottom center;
  transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 5;
  box-shadow: 0 6px 18px rgba(26, 26, 24, 0.18), 0 1px 2px rgba(26, 26, 24, 0.08);
}
.h-world-map-tooltip:not([hidden]) {
  opacity: 1;
  transform: translate(-50%, -135%) scale(1);
}
.h-world-map-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--char);
  flex-wrap: wrap;
}
.h-world-map-legend { display: inline-flex; align-items: center; gap: 8px; }
.h-world-map-dot {
  width: 9px;
  height: 9px;
  background: var(--ochre);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 145, 73, 0.15);
}
.h-world-map-list {
  margin-top: 16px;
  font-family: var(--sans);
}
.h-world-map-list summary {
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char);
  padding: 8px 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast);
}
.h-world-map-list summary::-webkit-details-marker { display: none; }
.h-world-map-list summary::before { content: "+"; font-family: var(--sans); font-size: 1rem; transition: transform var(--t-fast); display: inline-block; }
.h-world-map-list[open] summary::before { transform: rotate(45deg); }
.h-world-map-list summary:hover { color: var(--ink); }
.h-world-map-list-inner {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 18px;
  font-size: 0.88rem;
  color: var(--char);
}
.h-world-map-list-inner span { padding: 4px 0; }
@media (max-width: 900px) {
  .h-world-map { padding: 20px 16px 16px; }
  .h-world-map-list-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .h-world-map-list-inner { grid-template-columns: repeat(2, 1fr); }
  .h-world-map-caption { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Export grid — countries (legacy, kept for backwards compat) */
.h-export-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.h-export-country {
  background: var(--bg);
  padding: 22px 18px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.2;
  color: var(--ink);
  transition: background var(--t-fast), color var(--t-fast);
}
.h-export-country:hover { background: var(--red); color: var(--bg-cream); }

/* Bignum row (about hero stats) */
.h-bignum-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-cream);
  border-radius: var(--r);
  overflow: hidden;
}
.h-bignum {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.h-bignum:last-child { border-right: none; }
.h-bignum-value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.h-bignum-value .unit {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  display: block;
  margin-top: 8px;
}
.h-bignum-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--char);
}

/* ============================================
   INNER PAGE — Forms (contact)
   ============================================ */
.h-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.h-form-row { display: flex; flex-direction: column; gap: 8px; grid-column: span 1; }
.h-form-row.full { grid-column: span 2; }
.h-form-row label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--char);
}
.h-form-row input,
.h-form-row select,
.h-form-row textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.h-form-row textarea { min-height: 140px; resize: vertical; }
.h-form-row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%231A1A18' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.h-form-row select::-ms-expand { display: none; }
.h-form-row input:focus,
.h-form-row select:focus,
.h-form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.h-form-row .checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.h-form-row .check {
  position: relative;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--t-fast);
  user-select: none;
}
.h-form-row .check input { position: absolute; opacity: 0; pointer-events: none; }
.h-form-row .check:hover { border-color: var(--ink); }
.h-form-row .check:has(input:checked) { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }
.h-form-row .field-note {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--char-light);
}
.h-form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

/* Contact split: form + sidebar */
.h-contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}
.h-contact-form {
  background: var(--surface);
  border-radius: var(--r);
  padding: 48px;
}
.h-contact-side {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.h-contact-side .h-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 32px;
}
.h-contact-side .h-card.dark { background: var(--ink); color: var(--bg-cream); }
.h-contact-side .h-card h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--char);
  margin-bottom: 18px;
  font-weight: 500;
}
.h-contact-side .h-card.dark h4 { color: rgba(255,255,255,0.55); }
.h-contact-side .h-card .lead-stat {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.h-contact-side .h-card.dark .lead-stat em { color: var(--blush); font-style: italic; }
.h-contact-side .h-card a {
  display: block;
  font-size: 0.95rem;
  color: inherit;
  margin-bottom: 8px;
  transition: opacity var(--t-fast);
}
.h-contact-side .h-card a:hover { opacity: 0.7; }

/* ============================================
   INNER PAGE — Catalogue (products)
   ============================================ */
.h-brand-block { margin-bottom: var(--pad-section); }
.h-brand-block:last-child { margin-bottom: 0; }
.h-brand-block-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.h-brand-block-head .eyebrow { color: var(--red); margin-bottom: 12px; }
.h-brand-block-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.85rem, 5.9vw, 4.95rem);
  line-height: 1.04;
  padding-block-end: 0.04em;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.h-brand-block-head h2 em { font-weight: 400; color: var(--red); }
.h-brand-block-head .lead { padding-bottom: 8px; }

.h-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.h-catalog-card {
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
}
.h-catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}
.h-catalog-card-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden; transform: translateZ(0);
  position: relative;
}
.h-catalog-card-img img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(26,26,24,0.10));
  transition: transform 1.0s var(--ease), filter var(--t-med) var(--ease);
}
.h-catalog-card:hover .h-catalog-card-img img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 24px 40px rgba(26,26,24,0.18));
}
.h-catalog-grammage {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  background: rgba(251, 247, 239, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 500;
}
.h-catalog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.h-catalog-card-body h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}
.h-catalog-card-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char-light);
}
.h-catalog-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.h-pkg-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--char);
  background: var(--bg-cream);
  border: 1px solid var(--line);
  padding: 5px 9px;
  border-radius: 4px;
  transition: background var(--t-fast), color var(--t-fast);
}
.h-pkg-tag:hover { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }
.h-pkg-tag svg { width: 11px; height: 11px; opacity: 0.7; flex-shrink: 0; }
.h-pkg-tag:hover svg { opacity: 1; }

@media (max-width: 1100px) {
  .h-page-hero { grid-template-columns: 1fr; gap: 32px; }
  .h-story { grid-template-columns: 1fr; gap: 32px; }
  .h-story.reverse > :first-child { order: 0; }
  /* Landscape source photos: drop the 4:5 portrait crop on mobile/tablet */
  .h-story-img { aspect-ratio: auto; }
  .h-story-img img { height: auto; transform: none; }
  .h-vm { grid-template-columns: 1fr; }
  .h-cert-grid { grid-template-columns: 1fr; }
  .h-export-grid { grid-template-columns: repeat(3, 1fr); }
  .h-bignum-row { grid-template-columns: repeat(2, 1fr); }
  .h-bignum { border-bottom: 1px solid var(--line); }
  .h-bignum:nth-child(2n) { border-right: none; }
  .h-brand-block-head { grid-template-columns: 1fr; gap: 16px; }
  .h-contact-grid { grid-template-columns: 1fr; }
  .h-form { grid-template-columns: 1fr; }
  .h-form-row.full { grid-column: 1; }
}
@media (max-width: 600px) {
  .h-export-grid { grid-template-columns: repeat(2, 1fr); }
  .h-bignum-row { grid-template-columns: 1fr; }
  .h-bignum { padding: 22px 24px; gap: 8px; }
  .h-bignum-value { font-size: 2rem; }
  .h-bignum-value .unit { margin-top: 4px; }
  .h-bignum:nth-child(n) { border-right: none; }
  .h-contact-form { padding: 32px 24px; }
  .h-vm-card { padding: 32px 24px; }
}

/* ============================================
   PROCESS — Numbered timeline
   ============================================ */
.h-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap-lg);
  position: relative;
}
.h-process-step {
  background: var(--surface);
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform var(--t-med) var(--ease);
}
.h-process-step:hover { transform: translateY(-3px); }
.h-process-step-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--red);
}
.h-process-step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h-process-step p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--char);
}
.h-process-step-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char-light);
}

/* ============================================
   MOQ TIERS — 3-up pricing-style cards
   ============================================ */
.h-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}
.h-tier {
  background: var(--surface);
  border-radius: var(--r);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med);
}
.h-tier:hover { transform: translateY(-3px); border-color: var(--ink); }
.h-tier.featured { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }
.h-tier.featured .h-tier-name { color: var(--peach); }
.h-tier.featured p { color: rgba(255,255,255,0.7); }
.h-tier.featured li { color: rgba(255,255,255,0.85); }
.h-tier.featured li::before { color: var(--peach); }
.h-tier.featured .h-tier-num { color: var(--bg-cream); }
.h-tier.featured .h-tier-num small { color: rgba(244, 241, 234, 0.7); }
.h-tier.featured .h-tier-num small em { color: var(--peach); }
.h-tier-name {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.h-tier-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h-tier-num small {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char);
  margin-top: 8px;
}
.h-tier-num small em { color: var(--red); font-style: normal; }
.h-tier p { font-size: 0.95rem; line-height: 1.55; color: var(--char); }
.h-tier ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.h-tier li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.h-tier li::before {
  content: '✓';
  color: var(--red);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.h-tier .btn { margin-top: auto; }

/* ============================================
   FEATURE CHIPS — Customization options
   ============================================ */
.h-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}
.h-feature {
  background: var(--surface);
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t-med) var(--ease), background var(--t-med);
}
.h-feature:hover { transform: translateY(-3px); background: var(--bg-cream); }
.h-feature-icon {
  width: 44px; height: 44px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.h-feature-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.5; }
.h-feature h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.h-feature p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--char);
}
.h-feature .options {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.h-feature .options span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-warm);
  color: var(--ink);
}

@media (max-width: 1100px) {
  .h-process { grid-template-columns: repeat(2, 1fr); }
  .h-tiers { grid-template-columns: 1fr; }
  .h-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .h-process { grid-template-columns: 1fr; }
  .h-feature-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ — Native details/summary accordion
   ============================================ */
.h-faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gap-lg) 80px;
  align-items: start;
}
.h-faq-cat {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.h-faq-cat a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color var(--t-fast), padding var(--t-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.h-faq-cat a:hover { color: var(--ink); padding-left: 8px; }
.h-faq-cat a .count {
  font-size: 0.7rem;
  color: var(--char-light);
  font-weight: 500;
}
.h-faq-cat a:hover .count { color: var(--red); }

.h-faq-section { margin-bottom: 60px; scroll-margin-top: 100px; }
.h-faq-section:last-child { margin-bottom: 0; }
.h-faq-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.h-faq-section-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h-faq-section-head h3 em { font-style: italic; color: var(--red); }
.h-faq-section-head .num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--char);
}

.h-faq-item {
  border-bottom: 1px solid var(--line);
}
.h-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--t-fast);
}
.h-faq-item summary::-webkit-details-marker { display: none; }
.h-faq-item summary::marker { display: none; }
.h-faq-item summary:hover { color: var(--red); }
.h-faq-item .toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--t-fast);
}
.h-faq-item .toggle::before,
.h-faq-item .toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform var(--t-fast) var(--ease);
}
.h-faq-item .toggle::before { width: 12px; height: 1px; }
.h-faq-item .toggle::after  { width: 1px; height: 12px; }
.h-faq-item[open] .toggle { background: var(--ink); border-color: var(--ink); }
.h-faq-item[open] .toggle::before,
.h-faq-item[open] .toggle::after { background: var(--bg-cream); }
.h-faq-item[open] .toggle::after { transform: scaleY(0); }
.h-faq-item summary:hover .toggle { border-color: var(--ink); }

.h-faq-body {
  padding: 0 0 28px 0;
  max-width: 68ch;
}
.h-faq-body p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--char);
  margin-bottom: 14px;
}
.h-faq-body p:last-child { margin-bottom: 0; }
.h-faq-body strong { color: var(--ink); font-weight: 600; }
.h-faq-body ul { padding-left: 20px; margin: 12px 0; }
.h-faq-body ul li { font-size: 0.96rem; line-height: 1.65; color: var(--char); margin-bottom: 6px; }
.h-faq-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

/* "Still have questions" sticky card */
.h-faq-help {
  background: var(--ink);
  color: var(--bg-cream);
  border-radius: var(--r);
  padding: 36px;
  margin-top: 24px;
}
.h-faq-help h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.h-faq-help h4 em { color: var(--blush); font-style: italic; }
.h-faq-help p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.h-faq-help .btn { display: flex; justify-content: space-between; margin-bottom: 10px; }

@media (max-width: 1100px) {
  .h-faq-layout { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .h-faq-cat { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  .h-faq-cat a { border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; }
  .h-faq-cat a:hover { padding: 10px 16px; }
}

/* ============================================
   FOOTER
   ============================================ */
.h-footer {
  background: var(--ink);
  color: var(--bg-cream);
  padding: 80px var(--pad-page) 40px;
}
.h-footer-inner {
  max-width: 1640px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.h-footer-brand .h-logo img { height: 44px; margin-bottom: 24px; }
.h-footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 44ch;
  margin-bottom: 24px;
}
.h-footer-col h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 500;
}
.h-footer-links { display: flex; flex-direction: column; gap: 12px; }
.h-footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--t-fast);
}
.h-footer-links a:hover { color: var(--bg-cream); }
.h-footer-addr {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.h-footer-bottom {
  max-width: 1640px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  gap: 20px;
  flex-wrap: wrap;
}
.h-footer-bottom .meta { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================================
   MOTION — Reveal / Stagger
   ============================================ */
.fx { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); will-change: transform, opacity; }
.fx.is-in { opacity: 1; transform: translateY(0); }
.fx-d1 { transition-delay: 0.08s; }
.fx-d2 { transition-delay: 0.16s; }
.fx-d3 { transition-delay: 0.24s; }
.fx-d4 { transition-delay: 0.32s; }
.fx-d5 { transition-delay: 0.40s; }
.fx-d6 { transition-delay: 0.48s; }

.fx-line { display: block; overflow: hidden; }
.fx-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
  will-change: transform;
}
.fx-line.is-in .fx-line-inner,
.fx-ready .fx-line .fx-line-inner { transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  /* Hero bento collapses to stack: headline + product on row 1+2, stats wrap on row 3+ */
  .h-bento {
    grid-template-rows: auto auto auto;
  }
  .b-headline { grid-column: 1 / -1; grid-row: 1; padding: 40px; }
  .b-product  { grid-column: 1 / -1; grid-row: 2; min-height: 360px; aspect-ratio: 4 / 3; }
  .b-stat     { grid-column: span 6; grid-row: auto; min-height: 180px; }
  .h-section-head { grid-template-columns: 1fr; gap: 16px; }
  .h-brand-rail { grid-template-columns: 1fr; }
  .h-promise-grid > .p-third { grid-column: span 6; }
  .h-promise-grid > .p-wide, .h-promise-grid > .p-tall { grid-column: span 12; }
  .h-cta-band { grid-template-columns: 1fr; gap: 32px; }
  .h-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  /* Mobile: dropdown collapses to inline expanded list */
  .h-nav-caret { display: none; }
  .h-nav-sub {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding-top: 8px;
  }
  .h-nav-sub-inner {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .h-nav-sub a { padding: 6px 0; font-size: 0.92rem; }
  .h-nav-sub a small { display: none; }
  .h-nav { display: none; }
  .h-toggle { display: inline-flex; }
  .h-cta { display: none; }
  /* Hide hero meta strip on phone — info repeats lower on the page */
  .h-hero { padding-top: 56px; gap: var(--gap); }
  .h-hero-meta { display: none; }
  /* Campaign: drop overlay, stack image above text on cream */
  .h-campaign-img {
    aspect-ratio: 4 / 5;
    object-position: center 30%;
  }
  .h-campaign-overlay {
    position: static;
    padding: 28px 4px 0;
    background: none;
    border-radius: 0;
  }
  .h-campaign-overlay .eyebrow { color: var(--char); margin-bottom: 14px; }
  .h-campaign-overlay .eyebrow .dot { background: var(--ochre); }
  .h-campaign-overlay h2 {
    color: var(--ink);
    font-size: 2.5rem;
    max-width: none;
  }
  .h-campaign-overlay h2 em { color: var(--red); }
  .h-campaign-overlay p {
    color: var(--char);
    max-width: none;
    margin-top: 16px;
  }
  .h-gallery { grid-template-columns: 1fr; }
  /* OEM CTA band: drop forced break, tighten heading + paragraph */
  .h-cta-band { padding: 36px 24px; gap: 24px; margin: var(--gap-lg) 0; }
  .h-cta-band-content h2 br { display: none; }
  .h-cta-band-content h2 { font-size: 2.5rem; line-height: 1.08; }
  .h-cta-band-content .eyebrow { margin-bottom: 16px; }
  .h-cta-band-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-top: 18px;
  }
  /* Liquid teaser: tighten on phone */
  .h-liquid-band { padding: 40px 24px; }
  .h-liquid-band h2 { font-size: 2.35rem; }
  .h-liquid-band > p { font-size: 0.95rem; line-height: 1.55; }
  .h-liquid-actions { flex-direction: column; width: 100%; }
  .h-liquid-actions .btn { width: 100%; justify-content: space-between; }
  /* Bento goes single column on phone */
  .h-bento { gap: var(--gap); min-height: 0; }
  .b-headline { padding: 32px 24px; }
  .b-product  { min-height: 320px; aspect-ratio: 4 / 5; }
  .b-stat     { grid-column: 1 / -1; padding: 22px; min-height: 0; }
  .b-stat-num { font-size: 2rem; }
  /* Header padding tightens */
  .h-header { padding: 12px var(--pad-page); }
  .h-promise-grid > * { grid-column: span 12 !important; }
  .h-footer-inner { grid-template-columns: 1fr; }
  /* Page hero stacks */
  .h-page-hero { padding: 110px 0 60px; }
  /* CTA band buttons full width */
  .h-cta-band-actions .btn { justify-content: space-between; }

  /* Mobile nav drawer */
  .h-nav.is-open {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: var(--bg-cream);
    padding: 32px var(--pad-page);
    gap: 4px;
    z-index: 49;
    border-top: 1px solid var(--line);
  }
  .h-nav.is-open a {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .h-nav.is-open a::after { display: none; }
  .h-nav.is-open a.is-active { color: var(--red); }
  body.nav-open { overflow: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .h-marquee-track { animation: none; }
  .fx, .fx-line-inner { opacity: 1 !important; transform: none !important; }
  .b-product-image img { animation: none; }
}
