@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --navy-900: #060e1a;
  --navy-800: #0b1929;
  --navy-700: #0f2240;
  --navy-600: #163256;
  --navy-500: #1e4578;
  --slate-600: #4a5d72;
  --slate-400: #6b7b8d;
  --slate-300: #94a3b8;
  --slate-200: #c8d4e0;
  --slate-100: #edf2f7;
  --off-white: #f8fafc;
  --pure-white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #e0bc6e;
  --gold-dim: rgba(201, 168, 76, 0.12);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-pill: 100px;

  /* Diffused ambient shadows – no harsh dark drops */
  --shadow-xs: 0 1px 3px rgba(11, 25, 41, 0.06), 0 1px 2px rgba(11, 25, 41, 0.04);
  --shadow-card: 0 4px 24px rgba(11, 25, 41, 0.08), 0 1px 4px rgba(11, 25, 41, 0.04);
  --shadow-lg: 0 20px 60px rgba(11, 25, 41, 0.12), 0 4px 16px rgba(11, 25, 41, 0.06);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.22);

  /* Premium spring easing – no ease-in-out, no linear */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  --t-fast: 0.2s var(--ease);
  --t-base: 0.45s var(--ease);
  --t-slow: 0.75s var(--ease);

  --container-max: 1200px;
  --pad-section: clamp(100px, 11vw, 156px);
  --pad-section-sm: clamp(64px, 7vw, 96px);
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--navy-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── Typography ─────────────────────────────────────────────── */
.display-xl {
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.display-lg {
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.display-md {
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.18;
}
.heading-lg {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.heading-md {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.body-lg { font-size: clamp(1rem, 1.1vw, 1.1rem); line-height: 1.72; }
.body-md { font-size: 0.975rem; line-height: 1.68; }
.body-sm { font-size: 0.85rem; line-height: 1.6; }

/* Pill eyebrow badge – premium label treatment */
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: var(--pad-section) 0; }
.section-sm { padding: var(--pad-section-sm) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }

/* ─── Floating Pill Navigation ───────────────────────────────── */
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--container-max));
  z-index: 100;
  background: rgba(8, 20, 42, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-pill);
  padding: 10px 12px 10px 24px;
  transition: background var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
}
.site-nav.scrolled {
  background: rgba(6, 14, 26, 0.96);
  box-shadow: 0 8px 40px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.825rem;
  font-weight: 400;
  color: var(--slate-300);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--pure-white); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 0;
}
.lang-toggle [data-lang] {
  padding: 4px 11px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--t-fast);
}
.lang-toggle [data-lang].active {
  background: var(--pure-white);
  color: var(--navy-800);
}
.lang-toggle [data-lang]:hover:not(.active) { color: var(--pure-white); }

/* Hamburger / Mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--pure-white);
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 26, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--pure-white);
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.3rem;
  color: var(--slate-400);
  cursor: pointer;
  transition: color var(--t-fast);
}
.mobile-menu-close:hover { color: var(--pure-white); }

/* ─── Buttons ────────────────────────────────────────────────── */
/* Pill shape, zero translateY on hover – only color changes */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 13px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
/* Button-in-button icon circle */
.btn-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
  margin-left: 10px;
  font-size: 0.8rem;
  line-height: 1;
}
.btn-ghost .btn-icon-wrap,
.btn-outline-dark .btn-icon-wrap { background: rgba(255,255,255,0.12); }

.btn-primary {
  background: var(--pure-white);
  color: var(--navy-900);
  padding-right: 16px;
}
.btn-primary:hover { background: var(--gold); }
.btn-primary .btn-icon-wrap { background: rgba(11, 25, 41, 0.1); }
.btn-primary:hover .btn-icon-wrap { background: rgba(0,0,0,0.12); }

.btn-ghost {
  background: transparent;
  color: var(--pure-white);
  border: 1px solid rgba(255,255,255,0.22);
  padding-right: 16px;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost .btn-icon-wrap { background: rgba(255,255,255,0.1); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  padding-right: 16px;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-gold .btn-icon-wrap { background: rgba(0,0,0,0.12); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy-800);
  border: 1px solid var(--slate-200);
  padding-right: 16px;
}
.btn-outline-dark:hover {
  border-color: var(--navy-700);
  background: var(--navy-800);
  color: var(--pure-white);
}

/* Active press physics */
.btn:active { transform: scale(0.98); }

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-bg {
  position: absolute;
  inset: -15%;
  will-change: transform;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(6,14,26,0.90) 0%,
    rgba(11,25,41,0.55) 55%,
    rgba(6,14,26,0.80) 100%);
  z-index: 1;
}
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 130px 0 80px;
}
.hero-content .eyebrow { margin-bottom: 22px; }
.hero-headline {
  color: var(--pure-white);
  margin-bottom: 28px;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  animation: heroWordReveal 0.65s var(--ease) both;
}
@keyframes heroWordReveal {
  to { opacity: 1; transform: none; filter: none; }
}
.hero-sub {
  color: var(--slate-200);
  margin-bottom: 44px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--slate-400));
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
.hero-scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-400);
  writing-mode: vertical-rl;
  margin-top: 6px;
}

/* ─── Pillars – Asymmetric Bento Grid ───────────────────────── */
/* Rule: 3 equal columns are banned. Use 2-column bento. */
.pillars { background: var(--off-white); }
.pillars-header {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 88px);
}
.pillars-header .eyebrow { margin-bottom: 18px; }
.pillars-header .display-md { margin-bottom: 18px; }

.pillars-bento {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
/* grid-row span now handled by .pillar-card-hero class */

/* Double-Bezel card outer shell */
.card-shell {
  padding: 2px;
  background: rgba(11, 25, 41, 0.04);
  border: 1px solid rgba(11, 25, 41, 0.08);
  border-radius: calc(var(--radius-lg) + 2px);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.card-shell:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 24px 56px rgba(11, 25, 41, 0.12);
}

/* Inner card – the actual content */
.pillar-card {
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.pillar-card-img {
  overflow: hidden;
  flex-shrink: 0;
}
/* Image aspect ratios handled per card variant */
.pillar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.card-shell:hover .pillar-card-img img { transform: scale(1.04); }
.pillar-card-body {
  padding: clamp(24px, 2.8vw, 36px);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pillar-card-body .eyebrow { margin-bottom: 12px; }
.pillar-card-body .heading-md {
  color: var(--pure-white);
  margin-bottom: 14px;
}
.pillar-card-body .body-md {
  color: var(--slate-300);
  flex: 1;
  margin-bottom: 24px;
}
.pillar-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t-fast);
}
.pillar-card-link::after { content: '→'; }
.card-shell:hover .pillar-card-link { gap: 13px; }

/* Text-only pillar card variant (no image) */
.pillar-card-text {
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.pillar-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.6;
}
.pillar-card-accent--blue {
  background: linear-gradient(90deg, var(--navy-500), transparent);
  opacity: 0.8;
}
.pillar-card-text .pillar-card-body {
  padding: clamp(32px, 3.5vw, 44px);
}
/* Hero card (pillar 1): keep image, lock first card to span 2 rows */
.pillar-card-hero { grid-row: 1 / 3; }
.pillar-card-hero .pillar-card-img { aspect-ratio: 3 / 2; }

/* ─── Stats ───────────────────────────────────────────────────── */
.stats-section {
  background: var(--navy-800);
  padding: var(--pad-section) 0;
}
.stats-eyebrow {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stat-item {
  padding: clamp(36px, 4vw, 56px) clamp(24px, 3vw, 40px);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--pure-white);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-400);
}

/* ─── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: clamp(80px, 10vw, 120px) 0;
}
.cta-content .eyebrow { margin-bottom: 18px; }
.cta-content .display-md {
  color: var(--pure-white);
  margin-bottom: 20px;
}
.cta-content .body-lg { color: var(--slate-200); max-width: 520px; }
.cta-action { flex-shrink: 0; text-align: center; }
.cta-url {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-top: 12px;
}

/* ─── Trust Section ───────────────────────────────────────────── */
.trust-section {
  background: var(--slate-100);
  padding: var(--pad-section) 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
}
.trust-content .eyebrow { margin-bottom: 18px; }
.trust-content .display-md { margin-bottom: 20px; }
.trust-content .body-lg { color: var(--slate-600); }
.trust-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--slate-200);
  padding-left: 0;
}
.trust-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: relative;
  padding-bottom: 28px;
}
.trust-item:last-child { padding-bottom: 0; }
.trust-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--slate-100);
}
.trust-item-year {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 3px;
  padding-left: 16px;
}
.trust-item-text {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.65;
  padding-left: 16px;
  padding-right: 8px;
}

/* ─── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--navy-800);
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero .display-lg { color: var(--pure-white); margin-bottom: 18px; }
.page-hero .body-lg { color: var(--slate-200); }

/* ─── Research Area Cards ─────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.area-card {
  padding: clamp(28px, 3vw, 40px);
  background: var(--pure-white);
  border: 1px solid rgba(11, 25, 41, 0.07);
  border-radius: var(--radius-xl);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--shadow-xs);
}
.area-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-card);
}
.area-card-icon {
  width: 44px;
  height: 44px;
  background: var(--navy-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.area-card-icon svg { width: 20px; height: 20px; }
.area-card .heading-md { margin-bottom: 10px; }
.area-card .body-md { color: var(--slate-400); }

/* ─── Ingredient Cards ────────────────────────────────────────── */
.fairway-cta-block {
  background: var(--navy-800);
  border-radius: 24px;
  padding: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ingredient-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  background: var(--navy-800);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: border-color var(--t-base);
}
.ingredient-card:hover { border-color: rgba(201, 168, 76, 0.25); }
.ingredient-card .heading-md { color: var(--pure-white); margin-bottom: 10px; }
.ingredient-card .body-md { color: var(--slate-300); }
.ingredient-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ─── Licensing Model Cards ───────────────────────────────────── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.model-card {
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--radius-xl);
  background: var(--pure-white);
  border: 1px solid rgba(11, 25, 41, 0.07);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.model-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy-600), var(--gold));
  opacity: 0;
  transition: opacity var(--t-base);
}
.model-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow-card);
}
.model-card:hover::before { opacity: 1; }
.model-number {
  font-size: 3.2rem;
  font-weight: 200;
  color: var(--slate-100);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 20px;
}
.model-card .heading-lg { margin-bottom: 12px; }
.model-card .body-md { color: var(--slate-400); }

/* ─── Fairway Bridge Section ──────────────────────────────────── */
.fairway-section {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  padding: var(--pad-section) 0;
  position: relative;
  overflow: hidden;
}
.fairway-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.fairway-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: center;
}
.fairway-content .eyebrow { margin-bottom: 18px; }
.fairway-content .display-md { color: var(--pure-white); margin-bottom: 20px; }
.fairway-content .body-lg { color: var(--slate-200); max-width: 500px; margin-bottom: 0; }

/* ─── Contact Page (info-only layout) ────────────────────────── */
.contact-section { background: var(--off-white); }
.contact-info-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.contact-intro .display-md { margin-bottom: 20px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 32px; }
.contact-detail {}
.contact-detail-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-detail-value { font-size: 0.95rem; color: var(--navy-800); line-height: 1.6; }
.contact-detail-link {
  color: var(--navy-800);
  transition: color var(--t-fast);
  text-decoration: none;
}
.contact-detail-link:hover { color: var(--gold); }

/* Person card */
.contact-person-card {
  background: var(--navy-800);
  border-radius: var(--radius-2xl);
  padding: clamp(32px, 3.5vw, 44px);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), var(--shadow-lg);
  position: sticky;
  top: 90px;
}
.contact-person-role {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-person-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--pure-white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.contact-person-title {
  font-size: 0.82rem;
  color: var(--slate-400);
  line-height: 1.55;
}
.contact-person-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 24px 0;
}
.contact-person-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pure-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--t-fast);
  text-decoration: none;
}
.contact-person-cta:last-child { border-bottom: none; }
.contact-person-cta:hover { color: var(--gold); }
.contact-partner-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pure-white);
  transition: color var(--t-fast);
  text-decoration: none;
}
.contact-partner-link:hover { color: var(--gold); }

/* footer legal separator */
.footer-legal-sep { color: var(--slate-600); margin: 0 8px; }

/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-900);
  padding: clamp(64px, 8vw, 100px) 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(48px, 6vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 36px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 0.78rem; color: var(--slate-400); letter-spacing: 0.05em; margin-bottom: 14px; }
.footer-desc {
  font-size: 0.8rem;
  color: var(--slate-600);
  line-height: 1.75;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-founder-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 6px;
}
.footer-founder-role {
  font-size: 0.78rem;
  color: var(--slate-400);
  line-height: 1.6;
  margin-bottom: 2px;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--slate-300);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--pure-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.78rem; color: var(--slate-400); }
.footer-legal a {
  font-size: 0.78rem;
  color: var(--slate-400);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--pure-white); }

/* ─── Scroll-Reveal Animations ────────────────────────────────── */
/* Blur-fade: GPU-safe (transform + opacity + filter only) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  filter: blur(4px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  filter: blur(4px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  filter: blur(4px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
}
.stagger-child {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    filter 0.65s var(--ease);
}
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed,
.stagger-child.revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.45s; }

/* ─── Performance Line ───────────────────────────────────────── */
.perf-line { background: var(--off-white); }
.perf-line-header { max-width: 600px; margin-bottom: clamp(56px, 7vw, 88px); }
.perf-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}
.perf-showcase--reverse { direction: ltr; }
.perf-showcase--reverse .perf-visual { order: 2; }
.perf-showcase--reverse .perf-details { order: 1; }
.perf-divider {
  border: none;
  border-top: 1px solid var(--slate-200);
  margin: clamp(64px, 8vw, 112px) 0;
}
.perf-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.perf-bottle-wrap {
  position: relative;
  width: min(340px, 100%);
  transform: rotate(0deg);
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1);
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.10)) drop-shadow(0 8px 20px rgba(0,0,0,0.06));
}
.perf-bottle-wrap:hover { transform: scale(1.02); }
.perf-bottle-wrap img { width: 100%; border-radius: 16px; display: block; }
.perf-pga-float {
  position: absolute;
  bottom: 12px;
  right: 12px;
  top: auto;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}
.perf-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.perf-collab-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.perf-product-name {
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.perf-product-name-bold {
  font-weight: 500;
  color: var(--navy-800);
}
.perf-meta-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin: 24px 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--slate-200);
}
.perf-price {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--navy-800);
}
.perf-caps-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.perf-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}
.perf-benefit-pill {
  padding: 5px 13px;
  border: 1px solid var(--slate-200);
  border-radius: 100px;
  font-size: 0.68rem;
  color: var(--slate-400);
  letter-spacing: 0.03em;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.perf-benefit-pill:hover { border-color: var(--gold); color: var(--navy-800); }
.perf-pga-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  background: rgba(201,168,76,0.04);
  margin-bottom: 28px;
}
.perf-pga-bar-icon { width: 36px; height: 36px; flex-shrink: 0; object-fit: contain; }
.perf-pga-bar-text { font-size: 0.68rem; color: var(--slate-600); line-height: 1.5; }
.perf-pga-bar-text strong {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.perf-ingredients-block { margin-bottom: 32px; }
.perf-ingredients-label {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 8px;
}
.perf-ingredients-text {
  font-size: 0.72rem;
  line-height: 1.9;
  color: var(--slate-400);
}
.perf-fairway-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.perf-fairway-link:hover { color: var(--navy-800); }

/* ─── Footer network + PGA ───────────────────────────────────── */
.footer-network {
  font-size: 0.67rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-network a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}
.footer-network a:hover { color: var(--pure-white); }
.footer-pga-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.footer-pga-icon {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  flex-shrink: 0;
  object-fit: contain;
  display: block !important;
  overflow: hidden;
}
.footer-pga-label {
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-300);
  line-height: 1.6;
}

/* ─── Audience Section ───────────────────────────────────────── */
.audience-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.audience-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.audience-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.audience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,14,26,0.72) 0%,
    rgba(6,14,26,0.55) 40%,
    rgba(6,14,26,0.82) 100%
  );
  pointer-events: none;
}
@media (max-width: 768px) {
  .audience-overlay {
    background: rgba(6,14,26,0.82);
  }
}
.audience-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.audience-header { max-width: 640px; margin-bottom: clamp(56px, 7vw, 88px); position: relative; z-index: 1; }
.audience-grid { position: relative; z-index: 1; }
.audience-header-headline {
  color: var(--pure-white);
  margin-top: 14px;
  line-height: 1.08;
}
.audience-header-divider {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
  border-radius: 2px;
}
.audience-header-sub {
  color: var(--slate-300);
  max-width: 520px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.audience-col {
  padding-right: clamp(28px, 4vw, 56px);
  padding-left: clamp(28px, 4vw, 56px);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.audience-col:first-child {
  padding-left: 0;
  border-left: none;
}
.audience-col:last-child { padding-right: 0; }
.audience-col-meta { margin-bottom: 24px; }
.audience-col-count {
  display: block;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.audience-col-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.audience-col-desc {
  font-size: 0.78rem;
  color: var(--slate-400);
  line-height: 1.6;
  max-width: 220px;
}
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.audience-tag {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.73rem;
  color: var(--slate-300);
  letter-spacing: 0.02em;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
  cursor: default;
}
.audience-tag:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,168,76,0.06); }

/* ─── Homepage Product Showcase ──────────────────────────────── */
.home-products { background: var(--off-white); }
.home-products-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.home-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}
.home-product-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.home-product-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}
.home-product-img-wrap {
  background: var(--off-white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  position: relative;
}
.home-product-img-wrap img.home-product-img {
  width: min(220px, 70%);
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.10)) drop-shadow(0 4px 12px rgba(0,0,0,0.06));
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.home-product-card:hover .home-product-img { transform: scale(1.03); }
.home-product-pga-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.14));
}
.home-product-body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.home-product-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.home-product-name {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.home-product-name strong {
  font-weight: 800;
  display: block;
}
.home-product-type {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 20px;
}
.home-product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.home-product-pill {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--slate-600);
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 99px;
  padding: 4px 12px;
}
.home-product-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.home-product-pga-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-product-pga-row img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.home-product-pga-row span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.3;
}
.home-product-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy-900);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.home-product-link:hover { color: var(--gold); }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .pillar-card-hero { grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-content .body-lg { margin: 0 auto; }
  .fairway-inner { grid-template-columns: 1fr; text-align: center; }
  .fairway-content .body-lg { margin: 0 auto; }
  .contact-info-layout { grid-template-columns: 1fr; }
  .contact-person-card { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-col { padding-left: 24px; padding-right: 24px; }
  .audience-col:first-child { padding-left: 0; }
  .home-products-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .grid-2, .trust-inner { grid-template-columns: 1fr; }
  .pillars-bento { grid-template-columns: 1fr; }
  .pillar-card-hero .pillar-card-img { aspect-ratio: 16/9; }
  .areas-grid, .models-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .lang-toggle { display: flex; }
  .lang-toggle [data-lang] { padding: 4px 9px; font-size: 0.65rem; }
  .nav-right { margin-left: auto; }
  .nav-hamburger { margin-left: 8px; }
  .site-nav { padding: 10px 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 120px 0 60px; }
  .site-nav { top: 12px; width: calc(100% - 40px); }
  .ingredients-grid { grid-template-columns: 1fr; }
  .fairway-cta-block { grid-template-columns: 1fr; }
  .fairway-cta-block > div:last-child { text-align: center; }
  .perf-showcase { grid-template-columns: 1fr; }
  .perf-showcase--reverse .perf-visual { order: -1; }
  .perf-showcase--reverse .perf-details { order: 0; }
  .perf-visual { justify-content: flex-start; }
  .perf-bottle-wrap { max-width: 260px; transform: rotate(0); }
  .perf-pga-float { width: 56px; height: 56px; bottom: 8px; right: 8px; }
  .audience-grid { grid-template-columns: 1fr; gap: 0; }
  .audience-col { padding: 28px 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .audience-col:first-child { padding-top: 0; border-top: none; }
  .home-products-grid { grid-template-columns: 1fr; gap: 20px; }
  .home-product-img-wrap img.home-product-img { width: min(180px, 65%); }
  .home-product-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .home-product-link { white-space: normal; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Utility ─────────────────────────────────────────────────── */
.text-white { color: var(--pure-white) !important; }
.text-gold { color: var(--gold) !important; }
.text-slate { color: var(--slate-400) !important; }
.bg-navy { background: var(--navy-800); }
.bg-dark { background: var(--navy-900); }
.bg-light { background: var(--slate-100); }
.mt-sm { margin-top: 14px; }
.mt-md { margin-top: 28px; }
.mb-sm { margin-bottom: 14px; }
.mb-md { margin-bottom: 28px; }
.mb-lg { margin-bottom: 56px; }
.text-center { text-align: center; }
.max-prose { max-width: 640px; }
.max-prose-center { max-width: 620px; margin: 0 auto; }
