/* ============================================================
   Fulgenix — fulgenix-base.css
   Brand token system + base + nav + footer + section styles
   Source of truth. Identical class names to Shopify build.
   Background images are set via ACF inline styles in template-parts.
   WordPress theme | May 2026
============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES — BRAND TOKEN SYSTEM
============================================================ */
:root {
  /* Colours (brand tokens) */
  --color-gold:          #E7BE20;
  --color-gold-light:    #F0D47F;
  --color-bg-primary:    #F8F8F8;
  --color-bg-secondary:  #FFFFFF;
  --color-text-dark:     #403E3A;
  --color-text-muted:    #877C7D;
  --color-border:        #E8E4DC;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --weight-black:    800;
  --weight-semibold: 600;
  --weight-regular:  400;
  --weight-light:    300;

  /* Type scale (fluid) */
  --text-h1:   clamp(42px, 5vw, 64px);
  --text-h2:   clamp(28px, 3.5vw, 42px);
  --text-h3:   clamp(20px, 2vw, 28px);
  --text-sub:  clamp(16px, 1.5vw, 20px);
  --text-body: clamp(16px, 1.2vw, 18px);
  --text-cap:  13px;

  /* Spacing */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   48px;
  --space-xl:   80px;
  --space-2xl:  120px;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 48px;
  --section-gap:   80px;

  /* UI */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --transition: 180ms ease;

  /* Aliases (nav/footer CSS) */
  --bg-primary:   #F8F8F8;
  --bg-white:     #FFFFFF;
  --bg-dark:      #403E3A;
  --bg-footer:    #21211D;
  --text-primary: #403E3A;
  --text-muted:   #877C7D;
  --gold:         #E7BE20;
  --gold-light:   #F0D47F;
  --border:       #E8E4DC;
  --max-width:    1200px;
}


/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--color-text-dark);
  background: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }


/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.subheadline {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-top: 0;
  margin-bottom: 24px;
}

/* HP-01 only */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.caption {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.section-anchor {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  text-align: center;
  margin-top: var(--space-lg);
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-cap);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}


/* ============================================================
   TYPOGRAPHY BASE
============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  color: var(--color-text-dark);
  line-height: 1.15;
}

h1 { font-size: var(--text-h1); line-height: 1.1; }
h2 { font-size: var(--text-h2); line-height: 1.2; margin-bottom: 12px; }
h3 { font-size: var(--text-h3); line-height: 1.3; }

p { line-height: 1.7; }


/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

section {
  padding: var(--section-gap) 0;
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition);
  line-height: 1;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-text-dark);
  border-color: var(--color-gold);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--color-text-dark);
  border: 1.5px solid var(--color-text-dark);
}

.btn-ghost-dark:hover {
  background: var(--color-text-dark);
  color: #F8F8F8;
  opacity: 1;
  transform: translateY(-1px);
}

.btn-ghost-light {
  background: transparent;
  color: #F0EDE8;
  border: 1.5px solid rgba(240,237,232,0.40);
}

.btn-ghost-light:hover {
  background: rgba(240,237,232,0.09);
  border-color: rgba(240,237,232,0.65);
  opacity: 1;
  transform: translateY(-1px);
}

.btn-soft-gold {
  background: var(--color-gold-light);
  color: var(--color-text-dark);
  border-color: transparent;
}

.btn-compact {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* ============================================================
   NAV
============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  width: 100%;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #403E3A;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #403E3A;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: var(--transition);
}


/* ============================================================
   HP-01 — HERO
============================================================ */
.section-hero {
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-color: var(--color-bg-primary);
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.section-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  align-items: center;
}

.section-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  z-index: 1;
}

.section-hero__h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-hero__h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section-hero__subhead { margin-bottom: 32px; }

.section-hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section-hero__mobile-img-placeholder { display: none; }


/* ============================================================
   HP-02 — PROBLEM / REFRAME
============================================================ */
.section-problem {
  background: var(--color-bg-primary);
  padding: 0;
}

.section-problem__grid {
  display: grid;
  grid-template-columns: 33% 67%;
  align-items: stretch;
  min-height: 560px;
}

.section-problem__img-col {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 560px;
}

.section-problem__content {
  padding: 64px 56px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F8F8F8;
}

.section-problem .section-anchor {
  display: block;
  margin-top: 32px;
}

.section-problem__symptom-list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 var(--space-md);
}

.section-problem__symptom-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-dark);
  padding: 9px 0;
  border: none;
}

.section-problem__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-gold);
}


/* ============================================================
   HP-04 — THESIS BRIDGE
============================================================ */
.section-thesis-bridge {
  background-color: #403E3A;
  padding: 100px 24px;
  width: 100%;
  position: relative;
  overflow: visible;
}

.thesis-bridge__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.thesis-bridge__statement {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #F8F8F8;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.thesis-bridge__accent { color: #E7BE20; }

.thesis-bridge__attribution {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #877C7D;
  position: relative;
  z-index: 2;
}


/* ============================================================
   HP-05 — CATEGORY SHIFT
============================================================ */
.section-category {
  background: var(--color-bg-secondary);
  text-align: center;
}

.section-category__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.1;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  text-align: center;
}

.section-category__subhead {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.section-category__ladder {
  display: flex;
  align-items: flex-end;
  gap: var(--space-sm);
  margin: 0 auto var(--space-lg);
  max-width: 960px;
}

.section-category__ladder .section-category__card { flex: 1; }

.category-connector {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  flex-shrink: 0;
  align-self: center;
}

.section-category__card {
  background: var(--color-bg-secondary);
  border: 0.5px solid #D8D4CC;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 175px;
}

.section-category__card--active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  min-height: 225px;
}

.section-category__card--active h3,
.section-category__card--active .subheadline { color: var(--color-text-dark); }

.section-category__body {
  max-width: 680px;
  margin: 0 auto var(--space-sm);
  text-align: center;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-dark);
}


/* ============================================================
   HP-06 — HOW IT WORKS
============================================================ */
.section-how {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-how__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.section-how__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 70% at 50% 45%, rgba(32,26,18,0.60) 0%, rgba(20,16,10,0.82) 100%);
}

.section-how__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 55% 45% at 50% 35%, rgba(231,190,32,0.09) 0%, transparent 65%);
}

.section-how .container {
  position: relative;
  z-index: 10;
}

.section-how__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.section-how__headline { color: #F0EDE8; margin-bottom: var(--space-sm); }
.section-how__subhead  { font-size: var(--text-sub); color: #B8AA96; line-height: 1.6; }

.section-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.section-how__card {
  position: relative;
  overflow: hidden;
  background: rgba(248,248,244,0.28);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(240,212,127,0.22);
  border-radius: 10px;
  padding: 40px 32px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.section-how__card:hover {
  background: rgba(248,248,244,0.36);
  border-color: rgba(231,190,32,0.40);
  transform: translateY(-3px);
}

.section-how__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #E7BE20;
  border-radius: 10px 10px 0 0;
}

.section-how__card-icon { margin-bottom: var(--space-md); }

.section-how__card-title {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: 20px;
  color: #F0EDE8;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.section-how__card-body { font-family: var(--font-body); font-size: 16px; color: rgba(192,182,164,0.92); line-height: 1.7; }
.section-how__card .subheadline { color: #F0EDE8; }

.section-how__cta-wrap { text-align: center; margin-top: var(--space-lg); }


/* ============================================================
   HP-07 — COMPARISON TABLE
============================================================ */
.section-compare { background: var(--color-bg-secondary); }

.section-compare__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-compare__subhead { font-size: var(--text-sub); color: var(--color-text-muted); line-height: 1.6; }

.section-compare__wrap {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.section-compare__table { width: 100%; border-collapse: collapse; }

.section-compare__table th {
  padding: 20px 28px;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: 16px;
  text-align: left;
}

.section-compare__th--fulgenix    { background: var(--color-gold); color: var(--color-text-dark); width: 50%; }
.section-compare__th--traditional { background: var(--color-text-dark); color: #F8F8F8; width: 50%; font-family: var(--font-body); font-weight: var(--weight-regular); }

.section-compare__table td {
  padding: 16px 28px;
  height: 52px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
  border-top: 1px solid var(--color-border);
}

.section-compare__table tr:nth-child(odd)  td:first-child { background: rgba(231,190,32,0.15); }
.section-compare__table tr:nth-child(even) td:first-child { background: #FFFFFF; }
.section-compare__table tr:nth-child(odd)  td:last-child  { background: rgba(64,62,58,0.08); }
.section-compare__table tr:nth-child(even) td:last-child  { background: #FFFFFF; }
.section-compare__table td:first-child { color: var(--color-text-dark); border-right: 1px solid var(--color-border); }
.section-compare__table td:last-child  { color: var(--color-text-muted); }

.section-compare__cta { text-align: center; margin-top: var(--space-lg); }


/* ============================================================
   HP-08 — PRODUCT FEATURE
============================================================ */
.section-product {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.section-hp08__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: 0;
}

.section-hp08__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(215,209,197,0.55) 0%, rgba(215,209,197,0.20) 48%, transparent 62%);
  z-index: 1;
}

.section-hp08__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 620px;
}

.section-hp08__right {
  display: flex;
  align-items: center;
  padding: 72px 56px 72px 36px;
}

.section-hp08__content { width: 100%; }

.feature-list { list-style: none; margin-bottom: var(--space-lg); }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='8' stroke='%23E7BE20' stroke-width='1.5'/%3E%3Cpath d='M7 10.5l2 2 4-4' stroke='%23E7BE20' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.dosing-guide {
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.dosing-guide__label {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-md);
}

.dosing-guide__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  border-bottom: 1px solid var(--color-border);
}

.dosing-guide__row:last-child { border-bottom: none; padding-bottom: 0; }
.dosing-guide__weight { color: var(--color-text-muted); }
.dosing-guide__dose   { color: var(--color-text-dark); font-weight: 500; }

.vhp-badge { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); margin-top: var(--space-sm); }


/* ============================================================
   HP-09 — SOCIAL PROOF
============================================================ */
.section-proof { background: var(--color-bg-secondary); }

.section-proof__header { text-align: center; margin-bottom: var(--space-xl); }

.section-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.section-proof__card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
}

.section-proof__quote-mark {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: 80px;
  line-height: 0.7;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  user-select: none;
}

.section-proof__quote-text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  flex: 1;
}

.section-proof__stars { font-size: 18px; color: var(--color-text-dark); letter-spacing: 2px; margin-bottom: var(--space-sm); }
.section-proof__attribution { font-family: var(--font-body); font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }


/* ============================================================
   HP-10 — EDUCATION HUB
============================================================ */
.section-edu { background: var(--color-bg-secondary); }

.section-edu__header {
  text-align: left;
  max-width: 700px;
  margin: 0 0 var(--space-xl);
}

.section-edu__headline { margin-bottom: var(--space-sm); }
.section-edu__subhead  { font-size: var(--text-sub); color: var(--color-text-muted); line-height: 1.6; }

.section-edu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.section-edu__card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.section-edu__card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-primary);
  background-size: cover;
  background-position: center;
  display: block;
}

.section-edu__card-body { padding: var(--space-md); }

.section-edu__card-title {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.section-edu__card-link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gold);
  transition: opacity var(--transition);
}

.section-edu__card-link:hover { opacity: 0.75; }
.section-edu__cta { text-align: center; }


/* ============================================================
   HP-11 — FINAL CTA
============================================================ */
.section-final {
  background: var(--color-text-dark);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.section-final__inner { max-width: 720px; margin: 0 auto; }
.section-final__headline { color: #F8F8F8; margin-bottom: var(--space-md); }

.section-final__subhead {
  font-family: var(--font-body);
  font-size: var(--text-sub);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.section-final__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.section-final__trust {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.03em;
}


/* ============================================================
   HP-02 — TRUST STRIP
============================================================ */
.section-trust { background: var(--color-gold-light); padding: var(--space-lg) 0; }

.section-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  align-items: start;
}

.section-trust__item { display: flex; align-items: flex-start; gap: 14px; }
.section-trust__icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--color-text-dark); margin-top: 2px; }

.section-trust__label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0 0 4px 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-trust .caption { display: block; }


/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--bg-footer); padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

.footer-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #F8F8F8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F8F8F8;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: #F8F8F8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-muted); }

.social-row { display: flex; gap: 12px; }

.social-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}

.social-btn:hover { border-color: rgba(255,255,255,0.4); }
.social-btn svg { opacity: 0.55; transition: opacity 0.15s; }
.social-btn:hover svg { opacity: 1; }

/* Klaviyo form colour override for dark footer */
.site-footer .klaviyo-form input[type="email"] {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #F8F8F8;
}

.site-footer .klaviyo-form input[type="email"]::placeholder { color: var(--text-muted); }


/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
  :root { --container-pad: 32px; }
}


/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  :root { --section-gap: 60px; --container-pad: 20px; }

  .section-problem { max-height: none; overflow: visible; }
  .section-problem__grid { grid-template-columns: 1fr; min-height: auto; }
  .section-problem__img-col { height: 280px; min-height: 280px; }
  .section-problem__content { padding: var(--space-lg) var(--container-pad); }

  .section-trust__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }

  .section-how { padding: 72px 20px; }
  .section-how__bg { background-position: 60% 40%; }
  .section-how__header { margin-bottom: 44px; }
  .section-how__grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 44px; }
  .section-how__card { padding: 28px 22px 32px; }

  .section-edu__grid { grid-template-columns: 1fr 1fr; }
  .section-edu__header { margin-bottom: 40px; }

  .section-proof__grid { grid-template-columns: 1fr; }

  .section-compare__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .section-compare__table { min-width: 560px; }

  .section-category__ladder { flex-direction: column; align-items: center; max-width: 400px; margin-left: auto; margin-right: auto; }
  .section-category__ladder .section-category__card { width: 100%; }
  .category-connector { transform: rotate(90deg); margin: 4px 0; }
  .section-category__headline { font-size: 30px; }

  .site-nav .container { display: flex; align-items: center; }
  .nav-toggle { display: flex; order: 1; }
  .nav-wordmark { order: 2; flex: 1; text-align: center; }
  .site-nav .btn { display: inline-flex; order: 3; }

  .nav-links {
    order: 4;
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--color-bg-primary);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
    z-index: 99;
  }

  .nav-links--open { display: flex; }
  .nav-links a { padding: 12px var(--container-pad); width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .thesis-bridge__statement { font-size: 22px; }
  .section-thesis-bridge { padding: 64px 24px; }
}


/* ============================================================
   RESPONSIVE — 600px
============================================================ */
@media (max-width: 600px) {
  .section-hero { min-height: auto; }

  .section-product { min-height: auto; }
  .section-hp08__inner { grid-template-columns: 1fr; }
  .section-hp08__left { display: none; }
  .section-hp08__right { padding: 56px 24px; background: rgba(230,225,214,0.88); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .section-hp08__content .btn-row { flex-direction: column; align-items: stretch; }
  .section-hp08__content .btn-row .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  :root { --section-gap: 48px; }

  .site-nav .btn { display: none; }

  .section-edu__grid { grid-template-columns: 1fr; }

  .section-hero__left { padding: 48px 20px; }
  .section-hero__cta-row { flex-direction: column; align-items: flex-start; }
  .section-hero__cta-row .btn { width: 100%; justify-content: center; }

  .section-trust__grid { grid-template-columns: 1fr; }

  .section-how { padding: 48px 20px; }
  .section-how__header { margin-bottom: 28px; }

  .section-compare__cta .btn { width: 100%; white-space: normal; text-align: center; }

  .section-proof__card { padding: 24px 20px; }

  .section-final { padding: var(--space-xl) 0; }
  .section-final__cta-row { flex-direction: column; align-items: center; }
  .section-final__cta-row .btn { width: 100%; max-width: 320px; justify-content: center; }

  .site-footer { padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   RESPONSIVE — 390px
============================================================ */
@media (max-width: 390px) {
  .section-hero__left { padding: 40px 20px; }
  .section-thesis-bridge { padding: 48px 20px; }
  .thesis-bridge__statement { font-size: 20px; }
  .section-category__headline { font-size: 26px; }
  .section-how { padding: 40px 20px; }
  .section-hp08__right { padding: 40px 20px; }
}


/* ============================================================
   WORDPRESS — entry content typography
============================================================ */
.entry-content h2 { margin-top: 2rem; margin-bottom: 0.5rem; }
.entry-content h3 { margin-top: 1.75rem; margin-bottom: 0.4rem; }
.entry-content p  { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-text-muted);
}
