/* ============================================================
   PROTRITION LABS — GLOBAL STYLESHEET
   Palette: Protrition Labs brand colors
   Logo:    Protrition hexagonal mark
   Nav:     Seed.com style  |  Cards: Glassmorphism
   ============================================================ */

/* Web fonts are loaded via <link> tags in each page's <head> for faster
   first paint — see Cormorant Garamond + DM Sans + DM Mono preconnects.
   Don't re-add @import here; it serializes behind the stylesheet download. */

/* =================== BRAND PALETTE TOKENS =================== */
:root {
  /* ---- Protrition Labs Brand Palette ---- */
  --forest:       #2F3B2E;   /* darkest forest green — primary dark */
  --dark-mid:     #415041;   /* forest midtone */
  --sage:         #5D735C;   /* medium sage green */
  --sage-light:   #90A68A;   /* light sage — cool accent */
  --caramel:      #BC9670;   /* warm caramel — primary accent */
  --sand:         #E2C9A4;   /* light sand — secondary accent */
  --linen:        #E0D9CC;   /* warm linen — light bg */
  --off-white:    #EEEAE1;   /* off-white — section bg */
  --ink:          #1B1F1A;   /* near-black — body text */
  --cream:        #F9F7F3;   /* pure warm white */

  /* ---- Typography ---- */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-mono:     'DM Mono', 'Courier New', monospace;
  /* Section-level headlines across all pages. Reverted to Cormorant
     Garamond so .h2-section / .h2-card / .section-split__text h2
     / .cta-band__text h2 all share the editorial serif voice. Swap this one
     var to retypeset every section h2. */
  --font-headline: 'Cormorant Garamond', Georgia, serif;

  /* ---- Layout ---- */
  /* NOTE: --max-w, --gutter, and --section-v are defined in fluid.css
     (loaded after this file) as fluid clamp() ramps and govern globally.
     Only --nav-h lives here. */
  --nav-h:       72px;

  /* ---- Type scale (named rem tokens — root is 16px, so these honor the
     user's browser font-size preference and scale globally) ----
     --text-lg     20px  · lead / large body  (.body-lg)
     --text-md     16px  · default body        (.body)
     --text-sm     14px  · small / supporting  (.body-sm, nav, captions, card copy)
     --text-eyebrow 11px · mono micro-labels   (.eyebrow, tags)
     Reference these instead of raw px/rem so body type stays on-token. */
  --text-lg:      1.25rem;    /* 20px */
  --text-md:      1rem;       /* 16px */
  --text-sm:      0.875rem;   /* 14px */
  --text-eyebrow: 0.6875rem;  /* 11px */

  /* ---- Motion ---- */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --transition:  0.35s var(--ease-out);

  /* ---- Glassmorphism ---- */
  --glass-light-bg:     rgba(238, 234, 225, 0.62);
  --glass-light-border: rgba(255, 255, 255, 0.85);
  --glass-light-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);

  --glass-dark-bg:      rgba(255, 255, 255, 0.07);
  --glass-dark-border:  rgba(255, 255, 255, 0.11);
  --glass-dark-shadow:  0 8px 40px rgba(0, 0, 0, 0.28);

  --glass-blur:         blur(14px) saturate(1.2);
}

/* =================== RESET =================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* =================== BASE =================== */
body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* =================== CONTAINER =================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =================== NAVIGATION — SEED STYLE =================== */
.nav {
  position: fixed;
  top: 16px; left: 24px; right: 24px;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(238, 234, 225, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(47, 59, 46, 0.07);
  border-radius: 999px;
  box-shadow: 0 4px 32px rgba(27, 31, 26, 0.10);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(238, 234, 225, 0.98);
  box-shadow: 0 1px 20px rgba(27, 31, 26, 0.08);
}

.nav__inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(34px, 4vw, 52px) 0 clamp(20px, 2.6vw, 32px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo — actual Protrition Labs PNG assets */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Full lockup: mark + wordmark in one PNG */
.nav__logo-img {
  height: clamp(26px, 2.6vw, 34px);
  width: auto;
  display: block;
}

/* Legacy — hidden now that we use PNG */
.nav__logo-mark { display: none; }
.nav__logo-wordmark { height: 22px; width: auto; }

/* Nav links — Seed style: dark ink, subtle opacity */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  padding-left: clamp(20px, 2.4vw, 32px);
}

.nav__link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  height: var(--nav-h);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.68;
  transition: opacity var(--transition);
  white-space: nowrap;
}

/* Center-out hover background — rounded green pill that expands from the middle,
   echoing the button component. */
.nav__link::before {
  content: "";
  position: absolute;
  left: -13px;
  right: -13px;
  top: 50%;
  height: 38px;
  background: color-mix(in srgb, var(--sage) 32%, transparent);
  border-radius: 999px;
  transform: translateY(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.6s var(--ease-out);
  z-index: -1;
}

.nav__link:hover::before { transform: translateY(-50%) scaleX(1); }

.nav__link:hover { opacity: 1; }
.nav__link--active { opacity: 1; font-weight: 500; }

/* Pill CTA — outlined forest, sits over the cream/glass nav. Echoes
   .btn--outline-dark visually but keeps its own size token because the
   nav bar is dense. Hover behavior matches the rest of the system:
   small downward press, no color/border shift. */
.nav__cta {
  display: inline-flex;
  align-items: center;
  height: clamp(34px, 3vw, 40px);
  padding: 0 clamp(16px, 1.6vw, 22px);
  background: transparent;
  color: var(--forest) !important;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.78vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(47, 59, 46, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(27, 31, 26, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  /* Extra breathing room between the nav links and the button (on top of the
     16px flex gap → ~48px total). */
  margin-left: 32px;
}

/* Push the page links to the right so they sit next to the CTA. The auto
   left margin absorbs the free space after the logo, clustering links + CTA
   at the right end of the bar. */
.nav__links {
  margin: 0 0 0 auto;
  padding-left: 0;
}

.nav__cta:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 6px rgba(27, 31, 26, 0.10);
}
.nav__cta:active {
  transform: translateY(3px);
  box-shadow: 0 1px 3px rgba(27, 31, 26, 0.12);
  transition-duration: 0.08s;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(238, 234, 225, 0.98);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.is-open { display: flex; }

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--forest);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--dark-mid); }

.nav__mobile-close {
  position: absolute;
  bottom: clamp(40px, 9vh, 88px);
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--forest);
  cursor: pointer;
  background: rgba(47, 59, 46, 0.06);
  border: 1px solid rgba(47, 59, 46, 0.18);
  border-radius: 999px;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.nav__mobile-close:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

/* =================== BUTTONS =================== */
/* =================== BUTTONS ===================
   Hover behavior is uniform across all .btn variants: a small downward
   "press" (translateY) and a softer shadow — like the button is being
   physically pushed. Colors/borders DO NOT shift on hover (form-submit
   is the lone exception; see .form-submit below). This keeps interactive
   feedback tactile rather than chromatic, and lets the forest primary
   read as the brand's single confident affirmative across the site. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border-radius: 999px;
}
/* Shared press-down — hover lowers the button ~2px and softens the shadow;
   active goes a touch further for a satisfying click. The selectors
   double the .btn class so they out-specify .reveal.is-visible (which
   also sets a transform) when a button carries the .reveal entry animation. */
.btn.btn:hover {
  transform: translateY(2px);
}
.btn.btn:active {
  transform: translateY(3px);
  transition-duration: 0.08s;
}

/* Primary — forest green on cream/forest backgrounds. The brand's
   confident affirmative. Shadow uses the ink/forest token at the same
   24px blur as the nav-scrolled shadow for consistency with the system
   shadow scale (small, medium, large = 4/8/24 px y-offset, ink tint). */
.btn--primary {
  background: var(--forest);
  color: var(--cream);
  padding: 14px 32px;
  border: 2px solid var(--forest);
  box-shadow: 0 8px 24px rgba(27, 31, 26, 0.18);
}
.btn--primary:hover {
  box-shadow: 0 3px 10px rgba(27, 31, 26, 0.20);
}
.btn--primary:active {
  box-shadow: 0 1px 4px rgba(27, 31, 26, 0.22);
}

/* Outlined, light — on dark backgrounds */
.btn--outline-sand {
  background: rgba(238, 234, 225,0.1);
  color: var(--cream);
  padding: 14px 32px;
  border: 1.5px solid rgba(238, 234, 225,0.35);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.btn--outline-sand:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.btn--outline-sand:active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.20);
}

/* Outlined dark — on light backgrounds */
.btn--outline-dark {
  background: transparent;
  color: var(--forest);
  padding: 14px 32px;
  border: 1.5px solid rgba(47, 59, 46,0.35);
  box-shadow: 0 4px 16px rgba(27, 31, 26, 0.08);
}
.btn--outline-dark:hover {
  box-shadow: 0 2px 6px rgba(27, 31, 26, 0.10);
}
.btn--outline-dark:active {
  box-shadow: 0 1px 3px rgba(27, 31, 26, 0.12);
}

/* Icon button — circular forest button carrying the arrow glyph that
   used to live inside CTAs. Use alongside or in place of a labeled .btn
   when the affordance is "next/continue" and the destination is obvious
   from context (e.g. after a heading, inline with a sentence, on cards). */
.btn--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--forest);
  color: var(--cream);
  border: 2px solid var(--forest);
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(27, 31, 26, 0.18);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn--icon:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 10px rgba(27, 31, 26, 0.20);
}
.btn--icon:active {
  transform: translateY(3px);
  box-shadow: 0 1px 4px rgba(27, 31, 26, 0.22);
  transition-duration: 0.08s;
}
.btn--icon--sm { width: 38px; height: 38px; font-size: 0.95rem; }
.btn--icon--lg { width: 56px; height: 56px; font-size: 1.25rem; }
/* Light-on-dark variant for use on forest/ink section backgrounds */
.btn--icon.btn--icon--light {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

/* Legacy — kept for any inline arrows that aren't full icon buttons.
   The hover translateX animation is removed; arrows are now usually a
   dedicated .btn--icon element rather than living inside a labeled .btn. */
.btn__arrow {
  font-size: 1rem;
}

/* =================== HEADING UTILITIES ===================
   Three section heading sizes consolidated from per-page __h2 classes.
   Default color is forest; use .h2--light on dark/clay sections.
   Margin-bottoms are comfortable defaults; override per-context if needed.
   Pair with .reveal / .reveal-delay-N for entry animations. */
.h2-display,
.h2-section,
.h2-card { text-wrap: balance; color: var(--forest); }
/* Italics dropped on H2 utilities for a fully clean editorial posture
   (matching Atria-like restraint). The <em> tag is kept in markup for
   semantic emphasis, but renders identically to the surrounding heading. */
.h2-display em,
.h2-section em,
.h2-card em { font-style: normal; color: inherit; }

/* Display — Cormorant Garamond editorial; hero & big section openers */
.h2-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

/* Section — Cormorant Garamond editorial serif, the workhorse for almost every section title */
.h2-section {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
}

/* Card — sub-section heading inside cards, mission/vision panels, RFQ taglines */
.h2-card {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* Light modifier — flip color to cream for dark/clay/ink section contexts */
.h2-display.h2--light,
.h2-section.h2--light,
.h2-card.h2--light { color: var(--cream); }
/* On light variant, em inherits cream too — no colored accent. */
.h2--light em { color: inherit; }

/* =================== BODY TEXT UTILITIES ===================
   Three body sizes: lead, default, small. body-lg (20px) uses line-height
   1.5; .body / .body-sm stay at 1.4. Inherit family/color from context
   (DM Sans, ink). Use .body-* on non-paragraph elements (h2 used as lead,
   footer disclaimers, form helper text, captions) so the token
   relationship stays explicit. */
.body-lg {
  font-size: var(--text-lg);
  line-height: 1.5;
}
.body {
  font-size: var(--text-md);
  line-height: 1.4;
}
.body-sm {
  font-size: var(--text-sm);
  line-height: 1.4;
}

/* =================== EYEBROW LABELS =================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow--light { color: rgba(144, 166, 138,0.75); }
.eyebrow--gold  { color: var(--caramel); }

/* =================== SECTION THEMES =================== */

/* ── Hexagon-edge corner treatment ──
/* ====================================================================
   HEX CHAMFER — TOP-EDGE SLOPE TO WINDOW EDGE

   A single bevel at each top corner: the top horizontal edge is
   inset by --hex-cut-x and slopes down to meet the side wall
   at --hex-cut-y. No vertical segment between the slope and the
   side — the slope lands directly at the window edge.

   Tokens:
     --hex-cut-x  horizontal inset of each chamfer ramp
     --hex-cut-y  vertical drop of each chamfer ramp (depth)
*/
.hex-top {
  --hex-cut-x: 110px;
  --hex-cut-y: 36px;
  clip-path: polygon(
    /* top edge — inset from each corner by --hex-cut-x */
    var(--hex-cut-x) 0%,
    calc(100% - var(--hex-cut-x)) 0%,
    /* slope down to the right window edge */
    100% var(--hex-cut-y),
    /* right + bottom + left */
    100% 100%,
    0% 100%,
    /* slope up from the left window edge */
    0% var(--hex-cut-y)
  );
}

/* Apply to colored sections — but skip cases where the chamfer
   would land on top of another colored section (those should
   meet flush) or where it would clip a video background.
   `.no-hex-top` opt-out is honoured for those instances. */
.section--dark:not(.no-hex-top),
.section--sand:not(.no-hex-top),
.section--ink:not(.no-hex-top),
.section--clay:not(.no-hex-top) {
  --hex-cut-x: 110px;
  --hex-cut-y: 36px;
  clip-path: polygon(
    var(--hex-cut-x) 0%,
    calc(100% - var(--hex-cut-x)) 0%,
    100% var(--hex-cut-y),
    100% 100%,
    0% 100%,
    0% var(--hex-cut-y)
  );
}

/* Footer — same chamfered top. A "skirt" pseudo-element paints
   the section-above color into the small triangular slivers
   exposed by the chamfer, so the seam reads as continuous.
   Pages can override --footer-above on the page root. */
:root {
  --footer-above: #2F3B2E; /* forest by default — matches cta-band */
}
/* Footer top uses the same curved-chamfer hex shape as the rfq hero,
   flipped so the bevels sit at the top corners. The chamfer band is
   a fixed 80px stripe; the footer body fills below. */
.footer {
  position: relative;
  --hex-h: 80px;
  background: #243023;
}
.footer::before {
  /* Bleed-through of the section above, visible in chamfer corners */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--hex-h);
  background: var(--footer-above);
  pointer-events: none;
  z-index: 0;
}
.footer::after {
  /* Footer-color overlay, masked to the curved hex top */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--hex-h);
  background: #243023;
  z-index: 1;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 80' preserveAspectRatio='none'><path d='M 0 80 Q 0 72 10 66 L 168 15 Q 182 10 200 10 L 1200 10 Q 1218 10 1232 15 L 1390 66 Q 1400 72 1400 80 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 80' preserveAspectRatio='none'><path d='M 0 80 Q 0 72 10 66 L 168 15 Q 182 10 200 10 L 1200 10 Q 1218 10 1232 15 L 1390 66 Q 1400 72 1400 80 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
}
.footer > * {
  position: relative;
  z-index: 2;
}
.footer__inner-wrap,
.footer__inner {
  position: relative;
  z-index: 2;
}

/* Dark — forest green, rich gradient */
.section--dark {
  background: linear-gradient(148deg, #1a2c1f 0%, #2F3B2E 50%, #2d4835 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 166, 138,0.14) 0%, transparent 68%);
  top: -120px; right: -160px;
  pointer-events: none;
}
.section--dark::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 150, 112,0.10) 0%, transparent 65%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

/* Cream — warm near-white */
.section--cream {
  background: var(--cream);
  color: var(--ink);
  position: relative;
}

/* Sand — warm gold-cream */
.section--sand {
  background: linear-gradient(158deg, var(--sand) 0%, #f5e9b8 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.section--sand::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 115, 92,0.08) 0%, transparent 68%);
  top: -80px; right: -100px;
  pointer-events: none;
}

/* Navy — deep ink */
.section--ink {
  background: var(--ink);
  color: var(--cream);
}

/* CTA band — solid forest (flat so footer chamfer slivers read clean) */
.section--clay {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--clay::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 150, 112,0.12) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #141f16 0%, #2F3B2E 52%, #2d4835 100%);
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 166, 138,0.22) 0%, transparent 65%);
  top: -150px; right: -180px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 150, 112,0.14) 0%, transparent 65%);
  bottom: 60px; left: -100px;
  pointer-events: none;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

/* -------------------- HERO: VIDEO BACKGROUND VARIANT -------------------- */
/*
  .hero--video turns the hero into a full-bleed video canvas.
  Text lives in .hero__content--center, vertically + horizontally centered,
  so it sits in the quiet negative-space at the middle of the frame.
  Pseudo-element gradients from the base .hero are suppressed so the video reads clean.
*/
.hero--video {
  background: #0e150f; /* deep neutral fallback if video + poster both fail */
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  padding-top: calc(var(--nav-h) + 24px);
  text-align: center;
}
.hero--video::before,
.hero--video::after {
  display: none; /* kill the legacy glow blobs — the video is the hero */
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/*
  Overlay: a soft radial vignette that darkens the edges slightly and
  adds a faint centered shadow behind the text for legibility without
  muddying the powder texture. Tune opacity if copy feels too heavy/light.
*/
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* Soft dark halo focused behind the centered text block */
    radial-gradient(ellipse 60% 50% at 50% 56%, rgba(14, 21, 15, 0.55) 0%, rgba(14, 21, 15, 0.28) 50%, rgba(14, 21, 15, 0) 85%),
    /* Subtle edge vignette to settle the videos into the frame */
    radial-gradient(ellipse 120% 110% at 50% 50%, transparent 55%, rgba(14, 21, 15, 0.45) 100%),
    /* Top + bottom fades so the nav and dots have a darker base */
    linear-gradient(180deg, rgba(14, 21, 15, 0.22) 0%, rgba(14, 21, 15, 0) 22%, rgba(14, 21, 15, 0) 78%, rgba(14, 21, 15, 0.28) 100%);
}

.hero__content--center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__content--center .hero__tag {
  color: rgba(238, 234, 225, 0.85);
  margin-bottom: 28px;
}
.hero__content--center .hero__h1 {
  text-align: center;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}
.hero__content--center .hero__sub {
  margin-left: auto;
  margin-right: auto;
  color: rgba(238, 234, 225, 0.88);
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.4);
}
.hero__content--center .hero__actions {
  justify-content: center;
}

/* Scroll cue — small, quiet, sits at the bottom of the hero */
.hero__scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.hero__scroll-label {
  font-family: var(--font-mono, 'DM Mono', monospace);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(238, 234, 225, 0.55);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(238, 234, 225, 0.55), rgba(238, 234, 225, 0));
  animation: scrollCue 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollCue {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: bottom; }
}

/* =================== SCROLL FX (parallax) =================== */
/* Frames that clip a drifting image. The image itself is scaled up in JS so
   its over-scan covers the frame edges through the full drift range. */
[data-parallax-frame] { overflow: hidden; }
[data-parallax-img] {
  transform: scale(1.18);          /* matches JS default; avoids first-paint jump */
  transform-origin: center;
  will-change: transform;
}
[data-parallax] { will-change: transform; }

/* Respect users who ask for reduced motion: freeze video, kill scroll-cue anim,
   and drop every parallax transform back to its resting state. */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero--video { background: #141f16; }
  .hero__scroll-line { animation: none; opacity: 0.4; }
  [data-parallax],
  [data-parallax-img] { transform: none !important; }
}

.hero__tag {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 24px;
}

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.4rem, 7vw, 8rem);
  line-height: 1.02;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero__h1 em {
  font-style: normal;
  color: inherit;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 300;
  color: rgba(238, 234, 225,0.75);
  max-width: 540px;
  line-height: 1.4;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero--inner {
  min-height: 52vh;
  justify-content: flex-end;
  padding-bottom: 68px;
}
.hero--inner .hero__h1 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

/* =================== PILLARS SECTION =================== */
.pillars-section {
  background: linear-gradient(148deg, #141f16 0%, #1f3024 60%, #2a3f2e 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.pillars-section::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 166, 138,0.12) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.pillar {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--glass-dark-shadow);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pillar:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.32);
}

.pillar__num {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  color: var(--sage-light);
}
.pillar__icon {
  width: 36px;
  height: 36px;
  color: var(--caramel);
  margin: 4px 0;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}
.pillar__body {
  font-size: var(--text-sm);
  color: rgba(238, 234, 225,0.72);
  line-height: 1.4;
  font-weight: 300;
}

/* =================== TWO-COL CONTENT =================== */
.section-split { padding: var(--section-v) 0; }

.section-split__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.section-split__inner--reverse { direction: rtl; }
.section-split__inner--reverse > * { direction: ltr; }

.section-split__text h2 {
  font-family: var(--font-headline);
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.022em;
}
.section-split__text h2 em { font-style: normal; }

.section-split__text p {
  font-size: var(--text-lg);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 14px;
  opacity: 0.8;
}
.section-split__text .btn { margin-top: 24px; }

/* Image placeholders — glassmorphic */
.section-split__img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--glass-light-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-light-border);
  box-shadow: var(--glass-light-shadow);
}
.section-split__img--wide { aspect-ratio: 3/2; }

.section--dark .section-split__img,
.section--clay .section-split__img {
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--glass-dark-shadow);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  background-color: #e8e3d8;
  background-image:
    linear-gradient(135deg, rgba(47,59,46,0.035) 25%, transparent 25%),
    linear-gradient(225deg, rgba(47,59,46,0.035) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(47,59,46,0.035) 25%, transparent 25%),
    linear-gradient(315deg, rgba(47,59,46,0.035) 25%, transparent 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  background-repeat: repeat;
  overflow: hidden;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(47,59,46,0.18);
  border-radius: 6px;
  pointer-events: none;
}
.img-placeholder__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.55;
  padding: 6px 14px;
  background: rgba(249,247,243,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  border: 1px solid rgba(47,59,46,0.10);
  white-space: nowrap;
}

/* =================== CTA BAND =================== */
.cta-band { padding: 96px 0; position: relative; }

.cta-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cta-band__text h2 {
  font-family: var(--font-headline);
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: var(--cream);
  margin-bottom: 16px;
}
.cta-band__text h2 em {
  font-style: normal;
  color: inherit;
}
.cta-band__text p {
  font-size: var(--text-lg);
  color: rgba(238, 234, 225,0.7);
  max-width: 440px;
  line-height: 1.5;
  font-weight: 300;
}
.cta-band__action { flex-shrink: 0; }

/* =================== VALUES GRID — GLASSMORPHISM =================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.value-card {
  background: var(--glass-light-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-light-border);
  box-shadow: var(--glass-light-shadow);
  padding: 44px 36px;
  border-radius: 10px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(27, 31, 26,0.1);
  background: rgba(255,255,255,0.78);
}

.value-card__num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--sage-light);
  margin-bottom: 16px;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.2;
}
.value-card__body {
  font-size: var(--text-sm);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 300;
  opacity: 0.78;
}

/* Dark quote card */
.value-card--dark {
  background: rgba(47, 59, 46, 0.88) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(144, 166, 138,0.2) !important;
  box-shadow: 0 8px 36px rgba(0,0,0,0.22) !important;
  display: flex;
  align-items: flex-end;
}

/* =================== PRODUCT TYPES — GLASSMORPHISM =================== */
.product-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 56px 0;
  position: relative;
  z-index: 1;
}

.product-type {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--glass-dark-shadow);
  padding: 52px 40px;
  border-radius: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.product-type:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.36);
}

.product-type__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--caramel);
}
.product-type__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
}
.product-type__body {
  font-size: var(--text-sm);
  line-height: 1.4;
  color: rgba(238, 234, 225,0.72);
  font-weight: 300;
}

/* =================== CERTIFICATIONS =================== */
.certs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.cert-tag {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(144, 166, 138,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(144, 166, 138,0.3);
  color: var(--sage-light);
  transition: background var(--transition);
}
.cert-tag:hover { background: rgba(144, 166, 138,0.22); }

.cert-tag--dark {
  background: rgba(144, 166, 138,0.10);
  border: 1px solid rgba(144, 166, 138,0.25);
  color: rgba(144, 166, 138,0.9);
}
.cert-tag--dark:hover { background: rgba(144, 166, 138,0.18); }

/* =================== PROCESS FLOW — GLASSMORPHISM =================== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 52px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  padding: 36px 40px;
  border-radius: 10px;
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--glass-dark-shadow);
  transition: background var(--transition), transform var(--transition);
  position: relative;
  z-index: 1;
}
.process-step:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

.process-step__num {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  color: var(--caramel);
  padding-top: 5px;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}
.process-step__body {
  font-size: var(--text-sm);
  color: rgba(238, 234, 225,0.72);
  line-height: 1.4;
  font-weight: 300;
  max-width: 560px;
}

/* =================== CHANNELS GRID — GLASSMORPHISM =================== */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 52px 0;
  position: relative;
  z-index: 1;
}

.channel-card {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--glass-dark-shadow);
  padding: 40px 24px;
  text-align: center;
  border-radius: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.channel-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.32);
}

.channel-card__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 18px;
  color: var(--caramel);
}
.channel-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
}

/* =================== REGIONS GRID — GLASSMORPHISM =================== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.region-item {
  background: rgba(144, 166, 138,0.09);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(144, 166, 138,0.18);
  padding: 24px 12px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition);
}
.region-item:hover {
  background: rgba(144, 166, 138,0.18);
  transform: translateY(-2px);
}

/* =================== WHO WE WORK WITH — GLASSMORPHISM =================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.who-card {
  background: var(--glass-light-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-light-border);
  box-shadow: var(--glass-light-shadow);
  padding: 40px 36px;
  border-radius: 10px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(27, 31, 26,0.09);
  background: rgba(255,255,255,0.8);
}

.who-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
}
.who-card__body {
  font-size: var(--text-sm);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 300;
  opacity: 0.78;
}

/* =================== STAT ROW — GLASSMORPHISM =================== */
.stat-row {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--gutter);
}

.stat-item {
  flex: 1;
  padding: 36px 32px;
  border-radius: 10px;
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--glass-dark-shadow);
  transition: background var(--transition), transform var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
}

/* ---- Light variant — for stats on cream/off-white backgrounds ---- */
.stat-row--light {
  padding: 0;
  gap: 20px;
}
.stat-item--light {
  background: rgba(47, 59, 46, 0.03);
  border: 1px solid rgba(47, 59, 46, 0.10);
  box-shadow: 0 2px 12px rgba(27, 31, 26, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: center;
}
.stat-item--light:hover {
  background: rgba(47, 59, 46, 0.05);
  transform: translateY(-3px);
}
.stat-item--light .stat-item__num {
  color: var(--caramel);
}
.stat-item--light .stat-item__label {
  color: var(--sage);
  opacity: 0.9;
}

/* =================== RFQ FORM — GLASSMORPHISM =================== */
.rfq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: var(--section-v) 0;
  align-items: start;
  position: relative;
  z-index: 1;
}
.rfq-info__body {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: rgba(238, 234, 225,0.72);
  font-weight: 300;
  margin-bottom: 40px;
}

.rfq-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.rfq-contact-item__label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  padding-top: 3px;
  width: 72px;
  flex-shrink: 0;
}
.rfq-contact-item__val {
  font-size: var(--text-sm);
  color: rgba(238, 234, 225,0.72);
}

.rfq-form {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--glass-dark-shadow);
  border-radius: 12px;
  padding: 48px 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--cream);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(144, 166, 138,0.2);
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(238, 234, 225,0.25); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(144, 166, 138,0.5);
  background: rgba(255,255,255,0.09);
}
.form-select option { background: var(--forest); color: var(--cream); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px;
  background: var(--caramel);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--caramel);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}
.form-submit:hover {
  background: transparent;
  color: var(--caramel);
}

/* =================== FOOTER =================== */
.footer {
  background: #243023;
  color: rgba(238, 234, 225,0.75);
  padding: 120px 0 40px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(144, 166, 138,0.12);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-mark { display: none; }
.footer__logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.85;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
}
/* Footer wordmark — uses the cream-on-dark variant of the wordmark */
.footer__logo-wordmark {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}
.footer__tagline {
  font-size: var(--text-sm);
  line-height: 1.4;
  opacity: 0.5;
  max-width: 260px;
  font-weight: 300;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 12px; }
.footer__col-link {
  font-size: var(--text-sm);
  font-weight: 300;
  opacity: 0.55;
  transition: opacity var(--transition);
}
.footer__col-link:hover { opacity: 1; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copyright {
  font-size: 0.74rem;
  opacity: 0.3;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
.footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.footer__legal-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
  transition: opacity var(--transition), color var(--transition);
}
.footer__legal-link:hover { opacity: 0.95; }
.footer__legal-link--active {
  opacity: 0.95;
  color: var(--caramel);
}
.footer__legal-sep {
  font-size: 0.7rem;
  opacity: 0.25;
  color: var(--cream);
}
.footer__disclaimer {
  font-size: 0.7rem;
  opacity: 0.25;
  line-height: 1.4;
  margin-top: 24px;
  font-weight: 300;
  max-width: 800px;
}

/* =================== ANIMATION =================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .section-split__inner { gap: 52px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .channels-grid { grid-template-columns: repeat(3, 1fr); }
  .regions-grid { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 calc(50% - 6px); }
}

@media (max-width: 1100px) and (min-width: 769px) {
  /* Fluid clamps above handle the resize; nothing extra needed here */
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .section-split__inner { grid-template-columns: 1fr; gap: 40px; }
  .section-split__inner--reverse { direction: ltr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .values-grid { grid-template-columns: 1fr; }
  .product-types { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(3, 1fr); }
  .rfq-grid { grid-template-columns: 1fr; }
  .rfq-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .stat-row { flex-direction: column; padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 2.8rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   GOING GLOBAL — INTERACTIVE GLOBE SECTION
   ============================================================ */
.globe-section {
  position: relative;
  padding: var(--section-v) 0 calc(var(--section-v) - 24px);
  overflow: hidden;
  background: linear-gradient(to right, #415041 0%, #2F3B2E 100%);
}
.globe-section__intro {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.globe-section__lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.85;
}

.globe-stage {
  position: relative;
  width: 100%;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.globe-stage__canvas-wrap {
  position: relative;
  width: 100%;
  height: clamp(420px, 62vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
}
#protrition-globe {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}
#protrition-globe:active { cursor: grabbing; }

.globe-stage__label {
  position: absolute;
  pointer-events: none;
  padding: 8px 16px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  transform: translate(-50%, -140%);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(27, 31, 26, 0.18);
}
.globe-stage__label::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--forest);
}
.globe-stage__label.is-visible { opacity: 1; }

.globe-stage__legend {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px 12px;
  margin: 32px auto 0;
  max-width: 100%;
  padding: 0 var(--gutter);
  list-style: none;
  white-space: nowrap;
}
.globe-stage__legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(238, 234, 225, 0.06);
  border: 1px solid rgba(238, 234, 225, 0.2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  flex: 0 0 auto;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.globe-stage__legend li:hover,
.globe-stage__legend li.is-active {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--forest);
  transform: translateY(-1px);
}
.globe-stage__legend li:hover .globe-stage__dot,
.globe-stage__legend li.is-active .globe-stage__dot {
  background: var(--caramel);
}
.globe-stage__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--caramel);
  transition: background var(--transition);
}

@media (max-width: 768px) {
  .globe-stage__canvas-wrap { height: 56vh; min-height: 380px; }
  .globe-stage__legend {
    flex-wrap: wrap;
    white-space: normal;
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .globe-stage__canvas-wrap { height: 48vh; min-height: 320px; }
  .globe-stage__legend li { font-size: 0.6rem; padding: 6px 10px; }
}

/* ============================================================
   TABLET + MOBILE POLISH
   Targets: standard breakpoints (1024 / 768 / 480)
   Lead device for QA: iPhone 14 (390×844)
   ============================================================ */

/* ---- Global guardrails: full-bleed breakouts (left: 50%; margin-left: -50vw)
   can produce a horizontal scrollbar on narrow viewports. Cap body overflow
   horizontally so any such breakout is clipped rather than scrolled. ---- */
html, body { overflow-x: clip; }
img, video, svg { max-width: 100%; }

/* =================== TABLET (≤1024px) =================== */
@media (max-width: 1024px) {
  /* Softer hex chamfer at tablet — 110×36 is heavy on smaller widths */
  .section--dark:not(.no-hex-top),
  .section--sand:not(.no-hex-top),
  .section--ink:not(.no-hex-top),
  .section--clay:not(.no-hex-top),
  .hex-top {
    --hex-cut-x: 72px;
    --hex-cut-y: 28px;
  }

  /* Pull the floating intro logomark off tablet entirely. The mark lives
     inline on index.html via an aria-hidden div with a CSS mask; this
     blanket rule catches it without needing to refactor inline styles. */
  [aria-hidden="true"][style*="Logomark Green.png"] { display: none !important; }

  /* Section vertical rhythm */
  .section-split { padding: 80px 0; }
  .cta-band { padding: 72px 0; }

  /* Two-column cta band stacks naturally — center its CTAs */
  .cta-band--two-col .cta-band__inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* =================== MOBILE (≤768px) =================== */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Reset html overflow strategy on small screens — `clip` is universal,
     but we still let the body scroll vertically. */

  /* ---- Nav: tighten the pill so it doesn't crowd ---- */
  .nav { top: 12px; left: 12px; right: 12px; }
  .nav__inner { padding: 0 18px; }
  .nav__logo-img { height: 24px; }

  /* Mobile menu link size — Cormorant 2.6rem can wrap on 390px viewport */
  .nav__mobile-link { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .nav__mobile { gap: 22px; padding: 0 24px; text-align: center; }

  /* ---- HERO ---- */
  /* Display-xl headline is 64–112px on desktop; bring it down to a
     "moderate" ~44–56px floor on mobile (per design call) so a wrapped
     two-line headline still fits without overflow. */
  .hero__h1-wrap {
    font-size: clamp(2.6rem, 8vw, 3.4rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.01em !important;
    white-space: normal !important; /* allow wrapping on mobile */
    max-width: 100%;
  }
  .hero__sub-wrap {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    max-width: 92% !important;
  }
  /* Slides-wrap was tuned for a single nowrap line on desktop. On mobile
     the headline wraps to 2–3 lines + a 22px gap + subhead — give it room. */
  .hero__slides-wrap {
    height: auto !important;
    min-height: 16rem;
    margin-bottom: 24px;
  }
  /* Center the text block vertically with a touch more breathing room. */
  .hero__content--center {
    top: 50% !important;
    padding: 0 24px !important;
  }
  .hero__tag { margin-bottom: 14px !important; font-size: 0.62rem; }
  /* Inner hero (capabilities, etc) — generic .hero__h1 */
  .hero__h1 { font-size: clamp(2.4rem, 8.5vw, 3.4rem); line-height: 1.05; }
  .hero__sub { font-size: 1rem; line-height: 1.4; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { padding: 12px 22px; font-size: 0.72rem; }

  .hero__dots { width: min(280px, 70vw); bottom: 24px; }

  /* ---- Buttons ---- */
  .btn--primary,
  .btn--outline-dark,
  .btn--outline-sand { padding: 12px 24px; font-size: 0.74rem; }

  /* ---- Two-column splits — text first, then image (per design call) ---- */
  .section-split__inner,
  .section-split__inner--reverse {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    gap: 32px !important;
  }
  .section-split__inner > *,
  .section-split__inner--reverse > * { direction: ltr !important; }
  /* Force text first regardless of source order. Source-default places
     .section-split__text first; reverse markup places it second. */
  .section-split__inner > .section-split__text,
  .section-split__inner--reverse > .section-split__text { order: 0; }
  .section-split__inner > .section-split__img,
  .section-split__inner--reverse > .section-split__img { order: 1; }
  /* Images on mobile — taller is fine, but don't crop into a tiny strip */
  .section-split__img { aspect-ratio: 4/3; max-height: 60vh; }

  .section-split__text h2 { font-size: clamp(2.2rem, 7vw, 2.9rem); margin-bottom: 18px; }
  .section-split__text p { font-size: 17px; line-height: 1.4; }

  /* ---- CTA band ---- */
  .cta-band { padding: 56px 0; }
  .cta-band__text h2 { font-size: clamp(2.2rem, 7vw, 2.9rem); }
  .cta-band__text p { font-size: 17px; }
  .cta-band__action { width: 100%; }
  .cta-band__action .btn { width: 100%; justify-content: center; }

  /* ---- Pillars / values / process / channels ---- */
  .pillar { padding: 36px 24px; }
  .pillar__title { font-size: 1.25rem; }

  .value-card { padding: 32px 24px; }
  .value-card__title { font-size: 1.3rem; }

  .product-type { padding: 40px 28px; }
  .product-type__title { font-size: 1.45rem; }

  .process-step {
    grid-template-columns: 56px 1fr;
    gap: 0 18px;
    padding: 26px 24px;
  }
  .process-step__title { font-size: 1.3rem; }

  .channels-grid { gap: 8px; }
  .channel-card { padding: 32px 18px; }

  /* ---- Stats — stack vertically, left aligned on mobile (per design call) ---- */
  .stat-row {
    flex-direction: column;
    align-items: stretch;
    padding: 48px 24px;
    gap: 8px;
  }
  .stat-item { padding: 28px 24px; flex: 1 1 auto; }
  .stat-item__num { font-size: 2.6rem; }

  /* ---- RFQ form: comfortable 32px gutter, rounded edges intact ---- */
  .rfq-grid { gap: 48px; }
  .rfq-form {
    padding: 36px 32px;
    border-radius: 14px;
  }

  /* ---- Footer ---- */
  .footer { padding: 96px 0 36px; }
  .footer__top { gap: 40px; padding-bottom: 40px; }
  .footer__bottom { padding-top: 24px; }
  .footer__disclaimer { font-size: 0.66rem; }

  /* ---- Eyebrow tightening ---- */
  .eyebrow { font-size: 0.62rem; }
  .eyebrow::before { width: 20px; }

  /* ---- Soften hex chamfer further on phone (corners get heavy fast) ---- */
  .section--dark:not(.no-hex-top),
  .section--sand:not(.no-hex-top),
  .section--ink:not(.no-hex-top),
  .section--clay:not(.no-hex-top),
  .hex-top {
    --hex-cut-x: 44px;
    --hex-cut-y: 20px;
  }
  .footer { --hex-h: 56px; }
}

/* =================== SMALL MOBILE (≤480px) =================== */
@media (max-width: 480px) {

  /* Hero headline floor — keep at ~38–44px so longest titles
     ("Nothing Hidden, Nothing Guessed") wrap to two lines, not three. */
  .hero__h1-wrap {
    font-size: clamp(2.2rem, 9.5vw, 2.8rem) !important;
    line-height: 1.06 !important;
  }
  .hero__sub-wrap { font-size: 0.94rem !important; }
  .hero__slides-wrap { min-height: 18rem; }

  .hero__h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .nav { top: 8px; left: 8px; right: 8px; }
  .nav__inner { padding: 0 14px; }

  /* CTA single-column already, just ensure copy fits */
  .cta-band__text h2 { font-size: clamp(2rem, 8vw, 2.7rem); }

  /* Stats stay vertical (set at 768) — drop the inner padding a touch */
  .stat-row { padding: 36px 20px; }
  .stat-item { padding: 24px 20px; }
  .stat-item__num { font-size: 2.2rem; }

  /* Form a hair tighter */
  .rfq-form { padding: 28px 24px; }

  /* Hex chamfer minimum */
  .section--dark:not(.no-hex-top),
  .section--sand:not(.no-hex-top),
  .section--ink:not(.no-hex-top),
  .section--clay:not(.no-hex-top),
  .hex-top {
    --hex-cut-x: 32px;
    --hex-cut-y: 16px;
  }
  .footer { --hex-h: 44px; }
}

/* =================== FOOTER NEWSLETTER — CUSTOM FORM ===================
   Replaces the HubSpot embed; submissions handled by js/hubspot-forms.js.
   Underline style on the dark forest footer. */
.footer__newsletter {
  display: flex;
  gap: 0;
  max-width: 320px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(238, 234, 225, 0.25);
  padding-bottom: 8px;
}
.footer__newsletter input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  padding: 4px 0;
}
.footer__newsletter input[type="email"]::placeholder { color: rgba(238, 234, 225, 0.4); }
.footer__newsletter button {
  background: none;
  border: none;
  color: var(--caramel);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 0 4px 12px;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer__newsletter button:hover { color: var(--cream); }
.footer__newsletter button:disabled { color: rgba(238, 234, 225, 0.5); cursor: default; }
.footer__newsletter-status {
  font-size: 0.7rem;
  line-height: 1.4;
  color: rgba(238, 234, 225, 0.6);
  font-weight: 300;
  margin-top: 10px;
  max-width: 320px;
  min-height: 1em;
}
.footer__newsletter-status.is-error { color: #e8a99f; }
/* Visually-hidden honeypot — off-screen, not display:none so bots still fill it. */
.hs-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
