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

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

: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'; }

.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: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
}

.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: 28px; 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); }
.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; }
.b-product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 1.6s var(--ease-soft);
}
.b-product:hover .b-product-photo { transform: scale(1.0); }
.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(3rem, 7.5vw, 7rem);
  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-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;
  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;
  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;
  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.5rem, 5.5vw, 5rem);
  line-height: 0.98;
  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;
  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;
}
.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.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  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(3rem, 7vw, 6rem);
  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.2rem, 4.4vw, 3.8rem);
  line-height: 0.98;
  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); }

/* Certifications — 3-up bento */
.h-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}
.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-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;
}

/* Export grid — countries */
.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 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.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  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(280px, 1fr));
  gap: var(--gap-lg);
}
.h-catalog-card {
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.h-catalog-card:hover { transform: translateY(-4px); }
.h-catalog-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: 24px;
  overflow: hidden;
}
.h-catalog-card-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 1.0s var(--ease);
}
.h-catalog-card:hover .h-catalog-card-img img { transform: scale(1.04); }
.h-catalog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.h-catalog-card-body h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  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-spec {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--char);
}

@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; }
  .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: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(--blush); }
.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(--blush); }
.h-tier.featured .h-tier-num { color: var(--bg-cream); }
.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: 32px; 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) {
  .b-headline { grid-column: span 12; grid-row: span 3; padding: 40px; }
  .b-product  { grid-column: span 12; grid-row: span 3; min-height: 360px; }
  .b-stat-a, .b-stat-b, .b-stat-c, .b-stat-d { grid-column: span 6; }
  .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) {
  .h-nav { display: none; }
  .h-toggle { display: inline-flex; }
  .h-cta { display: none; }
  .h-bento { gap: var(--gap); }
  .b-headline { padding: 32px 24px; }
  .b-stat-a, .b-stat-b, .b-stat-c, .b-stat-d { grid-column: span 6; padding: 22px; }
  .b-stat-num { font-size: 2rem; }
  .h-promise-grid > * { grid-column: span 12 !important; }
  .h-footer-inner { grid-template-columns: 1fr; }
}

@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; }
}
