/* ============================================================
   DARTEE GOLF, Landing Page
   Design system: deep green + cream + gold, bold × premium
   ============================================================ */

:root {
  /* Teal (brand primary #159487), mapped onto the old green-* token names */
  --green-900: #0A4A43;
  --green-800: #0E6B61;
  --green-700: #159487;
  --green-600: #1AAE9F;
  /* Neutrals / paper */
  --cream:     #E6F1EF;
  --cream-50:  #F7FBFA;
  --cream-100: #EDF5F3;
  --paper:     #FFFFFF;
  --ink:       #11201E;
  --ink-soft:  #3C4F4C;
  --line:      #D4E5E2;
  /* Pink (brand accent #e85190), mapped onto the old gold-* token names */
  --gold:      #E85190;
  --gold-600:  #C73370;
  --gold-100:  #F9C4DB;

  --maxw: 1200px;
  --shadow-sm: 0 1px 2px rgba(24,22,15,.06), 0 2px 8px rgba(24,22,15,.05);
  --shadow-md: 0 10px 30px rgba(24,22,15,.10);
  --shadow-lg: 0 24px 60px rgba(10,74,67,.22);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --ff-display: "Anton", "Archivo", sans-serif;
  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Archivo", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream-50);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow--center { justify-content: center; }

.display {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0;
}
h1.display { font-size: clamp(48px, 8vw, 104px); }
h2.display { font-size: clamp(38px, 5.4vw, 72px); }
h3.display { font-size: clamp(26px, 3.2vw, 40px); }

.serif { font-family: var(--ff-serif); }
.lead {
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
}

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 8px 22px rgba(232,81,144,.35); }
.btn--gold:hover { background: #F2649E; box-shadow: 0 12px 30px rgba(232,81,144,.45); transform: translateY(-2px); }
.btn--green { background: var(--green-800); color: var(--cream-50); }
.btn--green:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--ghost { border: 2px solid currentColor; }
.btn--ghost:hover { background: rgba(0,0,0,.05); }
.btn--block { width: 100%; }
.btn--lg { padding: 20px 40px; font-size: 16px; }

/* ---------- Stars ---------- */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.rating-row { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rating-row .meta { font-weight: 600; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Placeholder media ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(21,148,135,.06) 0 14px, rgba(21,148,135,0) 14px 28px),
    linear-gradient(160deg, var(--cream-100), #D8E9E6);
  border: 1px dashed #A9CCC6;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  overflow: hidden;
}
.ph__inner { text-align: center; padding: 18px; max-width: 80%; }
.ph__icon { width: 40px; height: 40px; margin: 0 auto 12px; opacity: .8; }
.ph__label {
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); line-height: 1.45;
}
.ph--dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 14px, rgba(255,255,255,0) 14px 28px),
    linear-gradient(160deg, var(--green-700), var(--green-900));
  border-color: rgba(249,196,219,.4);
  color: var(--gold-100);
}
.ph--dark .ph__label { color: rgba(247,241,226,.8); }
.ph--filled { border: none !important; background: #0e2c25 !important; }
.ph--filled .shot { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Let feature + story photos keep their natural orientation (no forced crop) */
.feature-row__media .ph--filled,
.story__media .ph--filled { aspect-ratio: auto !important; box-shadow: var(--shadow-md); }
.feature-row__media .ph--filled .shot,
.story__media .ph--filled .shot { height: auto; }
/* ============================================================
   "Engineered to Perform", feature photos blend into the section
   ============================================================ */
.features .feature-row__media .ph--filled { box-shadow: none !important; background: transparent !important; border-radius: 0 !important; }
.features .feature-row__media .ph--filled .shot { mix-blend-mode: multiply; }
.story__media .ph--filled { border-radius: var(--r-md); overflow: hidden; }

/* ============================================================
   "Every Detail, Dialed In", Ridge-style technical showcase
   ============================================================ */
.features { background: #fff; padding: 0 !important; }
/* A, spec hero: full-bleed leather band with text on the image */
.spec-hero { position: relative; min-height: 80vh; display: flex; align-items: center; padding: 0; overflow: hidden;
  background-image: url("assets/photos/onebelt.webp"); background-size: cover; background-position: center; }
.spec-hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(9,32,27,.86) 0%, rgba(9,32,27,.55) 42%, rgba(9,32,27,.06) 100%),
  linear-gradient(180deg, rgba(9,32,27,0) 55%, rgba(9,32,27,.55) 85%, rgba(9,32,27,1) 100%); }
.spec-hero__content { position: relative; z-index: 1; width: 100%; max-width: 1180px; margin: 0 auto; padding: 88px 24px; }
.spec-ghost { display: block; font-family: var(--ff-display); font-size: clamp(58px, 9vw, 132px); line-height: .82; color: rgba(255,255,255,.2); letter-spacing: .02em; }
.spec-hero__title { font-family: var(--ff-display); font-size: clamp(40px, 7vw, 88px); color: #fff; margin: 8px 0 0; text-transform: uppercase; line-height: .94; }
.spec-hero__sub { max-width: 46ch; margin: 18px 0 0; color: rgba(255,255,255,.86); font-size: 18px; }
@media (max-width: 700px){ .spec-hero__scrim { background: linear-gradient(180deg, rgba(9,32,27,.78), rgba(9,32,27,.62)); } }
/* B, built for the course: full-bleed photo with text on image */
.exploded { position: relative; min-height: 80vh; display: flex; align-items: center; padding: 0; overflow: hidden; color: #fff;
  background-image: url("assets/photos/course.webp"); background-size: cover; background-position: center; }
.exploded__scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(9,32,27,.8) 0%, rgba(9,32,27,.46) 44%, rgba(9,32,27,.02) 100%),
  linear-gradient(180deg, rgba(9,32,27,1) 0%, rgba(9,32,27,.5) 18%, rgba(9,32,27,0) 38%); }
.exploded__inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; width: 100%; padding: 84px 24px; }
.exploded__title { font-family: var(--ff-display); font-size: clamp(44px, 8vw, 104px); line-height: .9; text-transform: uppercase; margin: 0 0 18px; }
.exploded__title .gold { color: var(--gold); }
.exploded__sub { font-size: clamp(18px, 2.2vw, 24px); line-height: 1.45; max-width: 640px; margin: 0 0 42px; color: #fff; opacity: .92; }
.exploded__feats { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; max-width: 680px; }
.exploded__media { position: relative; }
.exploded__media img { width: 100%; height: auto; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.callcol { display: grid; gap: 42px; }
.callout { display: flex; gap: 14px; align-items: flex-start; }
.callcol--r .callout { flex-direction: row-reverse; text-align: right; }
.callout__hex { width: 50px; height: 50px; flex: none; color: var(--gold-100); }
.callout__hex svg { width: 50px; height: 50px; }
.callout b { display: block; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin-bottom: 3px; }
.callout span { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.45; display: block; }
/* C, dialed-in: full-bleed photo with text on image */
.dialed { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden;
  background-image: url("assets/photos/holders.webp"); background-size: cover; background-position: center; }
.dialed__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,32,27,.8) 0%, rgba(9,32,27,.45) 44%, rgba(9,32,27,.02) 100%); }
.dialed__copy { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; width: 100%; padding: 84px 24px; display: flex; flex-direction: column; }
.dialed__copy h2 { font-family: var(--ff-display); font-size: clamp(34px,5vw,58px); text-transform: uppercase; color: #fff; margin: 0; line-height: .98; }
.dialed__copy > p { color: rgba(255,255,255,.86); font-size: 18px; max-width: 42ch; margin: 16px 0 0; }
.hexrow { display: flex; gap: 22px; flex-wrap: wrap; margin: 32px 0 34px; }
.hexrow__item { text-align: center; width: 88px; }
.hexrow__item .callout__hex { width: 56px; height: 56px; color: var(--gold-100); margin: 0 auto; }
.hexrow__item .callout__hex svg { width: 56px; height: 56px; }
.hexrow__item span { display: block; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #fff; margin-top: 9px; line-height: 1.3; }
.dialed__media { background: #eef2f0; min-height: 420px; }
.dialed__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 880px){
  .exploded__feats { grid-template-columns: 1fr; }
  .exploded__scrim { background: linear-gradient(180deg, rgba(9,32,27,.84), rgba(9,32,27,.66)); }
  .exploded__stage { grid-template-columns: 1fr; gap: 30px; }
  .exploded__media { order: -1; max-width: 380px; margin: 0 auto; }
  .callcol--r .callout { flex-direction: row; text-align: left; }
  .dialed { grid-template-columns: 1fr; }
  .dialed__media { min-height: 300px; }
}

/* ============================================================
   Full-bleed parallax band
   ============================================================ */
.band { position: relative; min-height: 60vh; display: flex; align-items: center;
  background-image: url("assets/photos/markers.webp"); background-size: cover;
  background-position: center 62%; background-attachment: fixed; }
.band__scrim { position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,60,53,.95) 0%, rgba(8,60,53,.7) 42%, rgba(8,60,53,.18) 100%); }
.band__inner { position: relative; z-index: 2; max-width: 600px; padding: 100px 0; }
.band .eyebrow { color: var(--gold-100); }
.band h2 { color: var(--cream-50); }
.band .lead { color: rgba(244,251,250,.88); }
.band .btn { margin-top: 30px; }

/* Hero photo: blend into the teal hero instead of sitting on a hard card */
.hero__media .ph--filled {
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  -webkit-mask-image: radial-gradient(128% 116% at 60% 42%, #000 56%, rgba(0,0,0,0) 95%);
          mask-image: radial-gradient(128% 116% at 60% 42%, #000 56%, rgba(0,0,0,0) 95%);
}

/* ============================================================
   Product video (Feature 1)
   ============================================================ */
.video-wrap { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; background: #0e2c25; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(11,50,37,.8); color: var(--gold-100); font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; display: flex; align-items: center; gap: 7px; }
.video-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }

/* ============================================================
   Payment / trust badges (buy box)
   ============================================================ */
.paybadges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(249,196,219,.22); }
.paybadges .lock { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: rgba(244,251,250,.78); margin-right: 4px; }
.paybadges .lock svg { width: 14px; height: 14px; color: var(--gold-100); }
.paybadges .pill { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: var(--cream-50); padding: 4px 9px; border-radius: 6px; font-size: 10.5px; font-weight: 800; letter-spacing: .04em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-50); }
.faq__list { max-width: 840px; margin: 46px auto 0; display: grid; gap: 14px; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 26px; font-family: var(--ff-sans); font-weight: 800; font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); transition: color .15s; }
.faq__item summary:hover { color: var(--green-700); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-weight: 700; font-size: 26px; line-height: 1; color: var(--gold-600); transition: transform .2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin: 0; padding: 0 26px 24px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.62; max-width: 70ch; }

/* ============================================================
   Quick-add on colorway tiles
   ============================================================ */
.cw-add { margin-top: 14px; width: 100%; border: 1.5px solid rgba(249,196,219,.5); background: rgba(255,255,255,.06);
  color: var(--cream-50); font-family: var(--ff-sans); font-weight: 800; font-size: 12.5px; letter-spacing: .06em;
  text-transform: uppercase; padding: 11px; border-radius: 999px; transition: background .15s, border-color .15s, transform .12s; }
.cw-add:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.cw-add.added { background: var(--green-600); border-color: var(--green-600); color: #fff; }
.cw-add.added::after { content: " \2713"; }

/* ============================================================
   Bundle builder
   ============================================================ */
.builder { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; margin-top: 46px; align-items: start; }
.builder__step { font-family: var(--ff-display); font-size: 21px; text-transform: uppercase; color: var(--green-900); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.builder__hint { font-family: var(--ff-sans); font-size: 13px; font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--ink-soft); }
.builder__count { background: var(--gold); color: #fff; font-family: var(--ff-sans); font-size: 13px; font-weight: 800; border-radius: 999px; min-width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; padding: 0 7px; }
.builder__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.bchip { display: flex; align-items: center; gap: 11px; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 13px 15px; text-align: left; cursor: pointer; transition: border-color .15s, transform .12s, box-shadow .15s; }
.bchip:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.bchip.added { border-color: var(--green-600); }
.bchip__dot { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0,0,0,.14); flex: none; }
.bchip__name { font-weight: 700; font-size: 14px; color: var(--ink); flex: 1; }
.bchip__price { font-weight: 800; font-size: 13.5px; color: var(--green-700); }
.bchip__add { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-600); background: var(--gold-100); padding: 4px 9px; border-radius: 999px; }
.bchip.added .bchip__add { background: var(--green-600); color: #fff; }
.builder__cart { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-md); position: sticky; top: 88px; }
.builder__ship { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; }
.builder__ship strong { color: var(--green-700); }
.builder__ship .bar, .cartdrawer__ship .bar { display: block; height: 7px; border-radius: 999px; background: var(--cream); margin-top: 9px; overflow: hidden; }
.builder__ship .bar__fill, .cartdrawer__ship .bar__fill { display: block; height: 100%; background: linear-gradient(90deg, var(--green-700), var(--gold)); transition: width .35s ease; }
.builder__total { display: flex; justify-content: space-between; align-items: baseline; font-weight: 800; margin-bottom: 16px; }
.builder__total span:last-child { font-family: var(--ff-display); font-size: 28px; color: var(--green-900); }
.builder__note { font-size: 12px; color: var(--ink-soft); margin: 14px 0 0; text-align: center; line-height: 1.5; }
.builder .btn[disabled], .cartdrawer .btn[disabled] { opacity: .5; pointer-events: none; }

/* payment badges, light variant for cream sections */
.paybadges--light { border-top-color: var(--line); }
.paybadges--light .lock { color: var(--ink-soft); }
.paybadges--light .pill { background: var(--cream); border-color: var(--line); color: var(--ink); }

/* product thumbnails (builder chips, cart items, set preview) */
.thumb { display: block; border-radius: 8px; flex: none; object-fit: cover; }
.thumb--swatch { border: 1px solid rgba(0,0,0,.12); }
.thumb--chip { width: 36px; height: 36px; }
.thumb--sm { width: 52px; height: 52px; }
.thumb--preview { width: 100%; height: 158px; border-radius: var(--r-md); margin-bottom: 12px; }
.builder__preview { margin-bottom: 16px; }
.builder__preview-empty { height: 130px; border: 1.5px dashed var(--line); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: 13px; text-align: center; padding: 12px; }
.builder__preview-meta { display: flex; flex-direction: column; gap: 1px; }
.builder__preview-name { font-weight: 800; font-size: 16px; color: var(--ink); }
.builder__preview-price { font-weight: 800; font-size: 14.5px; color: var(--green-700); }
.builder__preview-count { font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; }

/* Photo-background section (e.g. "More than a belt") */
.section--photobg { position: relative; color: var(--cream-50);
  background-image: linear-gradient(rgba(8,60,53,.9), rgba(8,60,53,.93)), url("assets/photos/hero-grass.webp");
  background-size: cover; background-position: center; }
.section--photobg .eyebrow { color: var(--gold-100); }
.section--photobg h2.display { color: var(--cream-50); }
.section--photobg .lead { color: rgba(244,251,250,.86); }

/* White header with brand stripes (teal top, pink bottom) */
.header .nav a { color: var(--ink-soft); }
.header .nav a:hover { color: var(--green-700); }
.header .icon-btn { color: var(--green-900); }
.header .adheader__trust { color: var(--green-700); }
.header .adheader__trust svg { color: var(--gold); }

/* ---- Shop dropdown (multi-category nav) ---- */
.nav { align-items: center; }
.nav__item--has { position: relative; display: inline-flex; align-items: center; }
.nav__item--has::after { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 16px; }
.nav__shop { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-sans); font-weight: 600; font-size: 14.5px; color: var(--ink-soft); cursor: pointer; background: none; border: none; padding: 0; }
.nav__shop svg { width: 13px; height: 13px; transition: transform .2s; }
.nav__item--has:hover .nav__shop, .nav__item--has:focus-within .nav__shop { color: var(--green-700); }
.nav__item--has:hover .nav__shop svg, .nav__item--has:focus-within .nav__shop svg { transform: rotate(180deg); }
.nav__mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); min-width: 244px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: 10px; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 80; }
.nav__item--has:hover .nav__mega, .nav__item--has:focus-within .nav__mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(6px); }
.nav__mega a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 14px; border-radius: 10px; font-weight: 700; font-size: 14.5px; color: var(--green-900); }
.nav__mega a:hover { background: var(--cream); }
.nav__mega a.soon { color: var(--ink-soft); }
.soon-tag { font-size: 9.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-600); background: var(--gold-100); padding: 3px 8px; border-radius: 999px; }
/* chip count badge */
.col-chip__n { font-size: 11px; font-weight: 800; color: var(--gold-600); margin-left: 2px; }
.col-chip.active .col-chip__n { color: var(--cream-50); opacity: .85; }
/* two-column mega menu */
.nav__mega--wide { min-width: 430px; padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.nav__mega--wide .nav__mega-h { grid-column: span 1; font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); padding: 4px 14px 6px; }
.nav__mega--wide .nav__col { display: flex; flex-direction: column; }
.nav__mega--wide a { padding: 9px 14px; }
.nav__mega-sub { font-size: 11.5px; color: var(--ink-soft); font-weight: 600; }
/* mobile menu category group */
.mobmenu__group { font-family: var(--ff-sans); font-weight: 800; font-size: 11px; letter-spacing: .14em; color: var(--gold); padding: 16px 0 4px; }
.mobmenu__nav a.soon { color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }

/* ============================================================
   Cart drawer + floating button
   ============================================================ */
.cartfab { position: fixed; right: 20px; bottom: 20px; z-index: 65; width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-800); color: var(--cream-50); box-shadow: var(--shadow-lg); display: none; align-items: center; justify-content: center;
  transform: scale(.6); opacity: 0; transition: transform .2s ease, opacity .2s ease, background .15s; }
.cartfab.show { display: flex; transform: scale(1); opacity: 1; }
.cartfab:hover { background: var(--green-700); }
.cartfab svg { width: 24px; height: 24px; }
.cartfab__count { position: absolute; top: -4px; right: -4px; background: var(--gold); color: #fff; }
.cartdrawer { position: fixed; inset: 0; z-index: 90; visibility: hidden; }
.cartdrawer.open { visibility: visible; }
.cartdrawer__scrim { position: absolute; inset: 0; background: rgba(10,30,26,.5); opacity: 0; transition: opacity .3s ease; }
.cartdrawer.open .cartdrawer__scrim { opacity: 1; }
.cartdrawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw; background: var(--cream-50);
  display: flex; flex-direction: column; box-shadow: -16px 0 50px rgba(0,0,0,.22); transform: translateX(100%); transition: transform .32s cubic-bezier(.2,.8,.2,1); }
.cartdrawer.open .cartdrawer__panel { transform: none; }
.cartdrawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); font-family: var(--ff-display); font-size: 22px; text-transform: uppercase; color: var(--green-900); }
.cartdrawer__x { font-size: 30px; line-height: 1; color: var(--ink-soft); width: 36px; height: 36px; }
.cartdrawer__x:hover { color: var(--green-800); }
.cartdrawer__scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; }
.cartdrawer__items { padding: 12px 24px 4px; }
.cartdrawer__empty { color: var(--ink-soft); font-size: 14.5px; text-align: center; margin-top: 40px; line-height: 1.6; }
.citem { display: flex; align-items: center; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.citem__name { flex: 1; font-weight: 800; font-size: 15px; color: var(--green-900); line-height: 1.25; }
.citem__price { font-weight: 800; font-size: 14.5px; color: var(--green-900); }
.citem__rm { width: 24px; height: 24px; border-radius: 50%; background: var(--cream); color: var(--ink-soft); font-size: 17px; line-height: 1; display: flex; align-items: center; justify-content: center; flex: none; }
.citem__rm:hover { background: #f0d9e2; color: var(--gold-600); }
.cd-qty { display: inline-flex; align-items: center; gap: 4px; background: var(--cream); border-radius: 999px; padding: 3px 4px; flex: none; }
.cd-qty__btn { width: 24px; height: 24px; border-radius: 50%; border: none; background: var(--paper); color: var(--green-900); font-size: 15px; font-weight: 700; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.cd-qty__btn:hover { background: var(--green-700); color: var(--paper); }
.cd-qty__val { min-width: 20px; text-align: center; font-weight: 800; font-size: 13px; color: var(--green-900); }
.cartdrawer__foot { border-top: 1px solid var(--line); padding: 20px 24px 24px; }
.cartdrawer__ship { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; }
.cartdrawer__ship strong { color: var(--green-700); }
.cartdrawer__total { display: flex; justify-content: space-between; align-items: baseline; font-weight: 800; margin-bottom: 16px; }
.cartdrawer__sum { font-family: var(--ff-display); font-size: 27px; color: var(--green-900); }
.cartdrawer__note { font-size: 12px; color: var(--ink-soft); text-align: center; margin: 13px 0 0; }
@media (max-width: 860px){ .builder { grid-template-columns: 1fr; } .builder__cart { position: static; } }
@media (max-width: 480px){ .builder__grid { grid-template-columns: 1fr; } }
@media (max-width: 768px){
  .band { background-attachment: scroll; min-height: 0; background-position: center; }
  .band__inner { padding: 64px 0; }
  .band__scrim { background: linear-gradient(180deg, rgba(8,60,53,.86), rgba(8,60,53,.72)); }
}

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background-color: var(--green-900);
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 2px, rgba(255,255,255,0) 2px 46px);
  color: var(--cream-50);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  padding: 9px 16px;
  overflow: hidden;
}

.announce__track { display: flex; align-items: center; justify-content: center; gap: 10px; }
.announce b { color: var(--gold); font-weight: 800; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background-color: #ffffff;
  background-image: repeating-linear-gradient(90deg, rgba(17,84,62,.05) 0 2px, rgba(17,84,62,0) 2px 46px);
  border-top: 4px solid var(--green-700);
  border-bottom: 3px solid var(--gold);
}
.header__bar { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.nav { display: flex; gap: 30px; }
.nav a { font-weight: 600; font-size: 14.5px; color: var(--ink-soft); transition: color .15s; }
.nav a:hover { color: var(--green-800); }
.header__actions { display: flex; align-items: center; gap: 16px; }
.icon-btn { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--green-900); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  background: var(--gold); color: var(--green-900);
  font-size: 11px; font-weight: 800; border-radius: 999px;
  min-width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
}

/* Logo wordmark */
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo__img { height: 42px; width: auto; display: block; }
.footer__logo .logo__img { height: 50px; }
.logo__mark { font-family: var(--ff-display); font-size: 27px; letter-spacing: .02em; color: var(--green-900); text-transform: uppercase; line-height: 1; }
.logo__sub { font-family: var(--ff-sans); font-weight: 800; font-size: 11px; letter-spacing: .42em; color: var(--gold-600); text-transform: uppercase; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(120% 130% at 80% 0%, var(--green-700) 0%, var(--green-900) 60%);
  color: var(--cream-50);
  overflow: hidden;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.35fr .85fr; gap: 40px; align-items: center;
  padding: 84px 0 88px;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(232,81,144,.18); border: 1px solid rgba(232,81,144,.45);
  color: var(--gold-100); font-weight: 700; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { color: var(--cream-50); font-size: clamp(36px, 4.6vw, 64px); line-height: 1; max-width: none; }
.hero h1 .gold { color: var(--gold); }
.hero__rotate {
  display: inline-block;
  position: relative;
  text-align: center;
  vertical-align: bottom;
}
.hero__rotate-sizer {
  visibility: hidden;
  white-space: nowrap;
  pointer-events: none;
}
.hero__rotate-word {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transition: opacity .25s ease, transform .25s ease;
  white-space: nowrap;
}
.hero__rotate-word.is-out {
  opacity: 0;
  transform: translateY(-10px);
}
.hero__lead { color: rgba(244,251,250,.82); margin: 24px 0 0; font-size: clamp(17px,1.9vw,20px); max-width: 60ch; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 26px; }
.hero__rating { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: rgba(244,251,250,.9); }
.hero__rating .meta { color: rgba(244,251,250,.85); }
.hero__media { position: relative; }
.hero__media .ph { aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.hero__badge {
  position: absolute; right: -14px; bottom: 26px;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--gold); color: var(--green-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  font-weight: 800; box-shadow: var(--shadow-md); transform: rotate(-8deg);
  border: 3px solid var(--cream-50);
}
.hero__badge .big { font-family: var(--ff-display); font-size: 30px; line-height: .9; }
.hero__badge .sm { font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }

/* trust strip under hero */
.trustbar { background: var(--green-900); color: var(--cream-50); border-top: 1px solid rgba(249,196,219,.18); }
.trustbar__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; flex-wrap: wrap; }
.trustbar__item { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 14.5px; color: rgba(244,251,250,.92); }
.trustbar__item svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* ============================================================
   Benefits
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 50px; }
.benefit {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit__icon {
  width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: var(--green-800); color: var(--gold); margin-bottom: 18px;
}
.benefit__icon svg { width: 27px; height: 27px; }
.benefit h4 { font-family: var(--ff-sans); font-weight: 800; font-size: 18px; margin: 0 0 8px; letter-spacing: -.01em; }
.benefit p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================
   Feature breakdown
   ============================================================ */
.features { background: var(--cream); }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 46px 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row.reverse .feature-row__media { order: -1; }
.feature-row__media .ph { aspect-ratio: 5/4; }
.feature-num { font-family: var(--ff-display); font-size: 16px; color: var(--gold-600); letter-spacing: .1em; }
.feature-row h3 { margin: 12px 0 14px; letter-spacing: -.01em; }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.feature-list svg { width: 20px; height: 20px; color: var(--green-600); flex: none; margin-top: 2px; }

/* ============================================================
   Colorways
   ============================================================ */
.colorways { background: var(--green-900); color: var(--cream-50); }
.colorways .eyebrow { color: var(--gold-100); }
.colorways h2 { color: var(--cream-50); }
.colorways .lead { color: rgba(244,251,250,.78); }
.cw-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 48px; }
.cw-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(249,196,219,.16);
  border-radius: var(--r-md); overflow: hidden; transition: transform .18s ease, border-color .18s;
}
.cw-card:hover { transform: translateY(-5px); border-color: rgba(232,81,144,.55); }
.cw-card .ph { aspect-ratio: 1/1; border: none; border-radius: 0; }
.cw-card__body { padding: 18px 18px 22px; }
.cw-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cw-card h4 { font-family: var(--ff-sans); font-weight: 800; font-size: 16.5px; margin: 0; color: var(--cream-50); }
.cw-card .price { font-weight: 800; color: var(--gold); font-size: 16px; }
.cw-card .swatch-note { font-size: 13px; color: rgba(244,251,250,.6); margin: 5px 0 0; }
.cw-tag { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--green-900); background: var(--gold); padding: 3px 9px; border-radius: 999px; }

/* ============================================================
   Comparison table
   ============================================================ */
.compare-table {
  margin-top: 48px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.compare-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: stretch; }
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-row > div { padding: 18px 24px; display: flex; align-items: center; gap: 10px; font-size: 15.5px; }
.compare-row__feat { font-weight: 700; color: var(--ink); }
.compare-head > div { padding: 22px 24px; }
.compare-head .col-dartee { background: var(--green-800); color: var(--cream-50); text-align:center; }
.compare-head .col-other { background: var(--cream); color: var(--ink-soft); text-align:center; }
.compare-head .col-dartee > div, .compare-head .col-other > div { margin: 0 auto; }
.compare-col-title { font-family: var(--ff-display); font-size: 21px; text-transform: uppercase; letter-spacing: .02em; }
.compare-col-sub { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.col-dartee { background: rgba(21,148,135,.06); justify-content: center; }
.col-other { justify-content: center; color: var(--ink-soft); }
.tick { color: var(--green-700); } .cross { color: #C0506E; }
.compare-row > div svg { width: 22px; height: 22px; }

/* ============================================================
   Founders message
   ============================================================ */
.founders { background: var(--cream-50); }

/* ============================================================
   Flow from comparison into founders message
   ============================================================ */
#compare + .founders { padding-top: 48px; }

.founders-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: 52px; display: grid; grid-template-columns: 160px 1fr; gap: 42px; align-items: center;
}
.founders__badge { width: 160px; height: 160px; flex: none; }
.founders__badge > * { width: 100%; height: 100%; display: block; }
.founders__badge img { object-fit: contain; }
.founders__patch { filter: drop-shadow(0 10px 24px rgba(10,74,67,.18)); }
.founders__copy h2 { font-size: clamp(34px, 5vw, 58px); margin: 0 0 18px; color: var(--ink); }
.founders__copy p { margin: 0 0 16px; color: var(--ink-soft); font-size: 16.5px; line-height: 1.55; max-width: 66ch; }
.founders__copy p:last-of-type { margin-bottom: 22px; }
.founders__sign {
  font-family: var(--ff-serif); font-size: clamp(22px, 2.6vw, 30px); font-style: italic;
  color: var(--green-800); line-height: 1.3;
}

/* ============================================================
   Bundles
   ============================================================ */
.bundles { background: var(--cream); }
.bundle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; align-items: stretch; }
.bundle {
  position: relative; background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--r-lg); padding: 34px 28px 30px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s, border-color .18s;
}
.bundle:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bundle--featured { border-color: var(--gold); box-shadow: 0 18px 44px rgba(232,81,144,.28); transform: scale(1.03); }
.bundle--featured:hover { transform: scale(1.03) translateY(-5px); }
.bundle__flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--green-900); font-weight: 800; font-size: 11.5px;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.bundle__qty { font-family: var(--ff-display); font-size: 22px; text-transform: uppercase; color: var(--green-900); }
.bundle__save { display: inline-block; margin-left: 8px; font-size: 12px; font-weight: 800; color: var(--gold-600); background: var(--gold-100); padding: 3px 9px; border-radius: 999px; vertical-align: middle; }
.bundle__media .ph { aspect-ratio: 16/10; margin: 18px 0 20px; }
.bundle__price { display: flex; align-items: baseline; gap: 10px; }
.bundle__now { font-family: var(--ff-display); font-size: 40px; color: var(--green-900); }
.bundle__was { font-size: 17px; color: #93A6A2; text-decoration: line-through; }
.bundle__per { font-size: 13.5px; color: var(--ink-soft); margin: 4px 0 18px; }
.bundle ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.bundle li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.bundle li svg { width: 18px; height: 18px; color: var(--green-600); flex: none; }
.bundle .btn { margin-top: auto; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.reviews-summary { display: flex; align-items: center; gap: 16px; }
.reviews-summary .num { font-family: var(--ff-display); font-size: 56px; color: var(--green-900); line-height: 1; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 13px;
}
.review__media .ph { aspect-ratio: 4/3; margin-bottom: 4px; }
.review p { margin: 0; font-size: 15px; color: var(--ink); line-height: 1.55; }
.review__author { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.review__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green-800); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex: none; }
.review__name { font-weight: 700; font-size: 14.5px; }
.review__verified { font-size: 12px; color: var(--green-600); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.review__verified svg { width: 13px; height: 13px; }

/* ============================================================
   Founder story
   ============================================================ */
.story { background: var(--green-900); color: var(--cream-50); overflow: hidden; }
.story__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.story .eyebrow { color: var(--gold-100); }
.story__media .ph { aspect-ratio: 4/5; }
.story h2 { color: var(--cream-50); }
.story__quote { font-family: var(--ff-serif); font-size: clamp(24px,3vw,34px); line-height: 1.35; font-style: italic; color: var(--cream-50); margin: 0 0 24px; }
.story__body { color: rgba(244,251,250,.82); font-size: 16.5px; }
.story__sign { margin-top: 22px; font-family: var(--ff-serif); font-size: 26px; font-style: italic; color: var(--gold-100); }
.story__role { font-family: var(--ff-sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(244,251,250,.6); font-style: normal; margin-top: 3px; }

/* ============================================================
   Guarantee
   ============================================================ */
.guarantee { background: var(--cream-50); }
.guarantee__card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: 52px; display: grid; grid-template-columns: 160px 1fr; gap: 40px; align-items: center;
}
.guarantee__seal {
  width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.guarantee__seal svg { width: 100%; height: 100%; display: block; overflow: visible; }
.guarantee__seal .seal__arc {
  font-family: var(--ff-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--green-800);
}
.guarantee__seal .seal__arc--top { dominant-baseline: auto; }
.guarantee__seal .seal__arc--bottom { dominant-baseline: hanging; }
.guarantee__seal .seal__ribbon {
  font-family: var(--ff-sans);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  fill: #fff;
  dominant-baseline: middle;
}
.guarantee h2 { margin: 0 0 12px; }
.guarantee p { margin: 0; color: var(--ink-soft); max-width: 60ch; }
.guarantee__points { display: flex; gap: 28px; margin-top: 18px; flex-wrap: wrap; }
.guarantee__points span { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; }
.guarantee__points svg { width: 19px; height: 19px; color: var(--green-600); }

/* ============================================================
   Final CTA
   ============================================================ */
.finale {
  background: radial-gradient(120% 140% at 50% -10%, var(--green-700), var(--green-900) 65%);
  color: var(--cream-50); text-align: center; position: relative; overflow: hidden;
}
.finale::after { content:""; position:absolute; inset:0; background: repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 2px, transparent 2px 9px); }
.finale__inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; padding: 0 16px; }
.finale h2 { color: var(--cream-50); text-align: center; margin: 28px auto 0; margin-left: auto; margin-right: auto; max-width: 14ch; line-height: 1.1; }
.finale h2 .gold { color: var(--gold); }
.finale .lead { color: rgba(244,251,250,.82); text-align: center; margin: 26px auto 0; max-width: 52ch; }
.finale .eyebrow { color: var(--gold-100); font-size: 13px; letter-spacing: .22em; justify-content: center; margin-bottom: 0; }
.finale .eyebrow::before { display: none; }
.finale__cta { display: flex; gap: 14px; justify-content: center; align-items: center; margin-top: 32px; flex-wrap: wrap; }
.finale__cta .btn { min-width: 240px; }
.finale .cta-trust { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 28px; }
.finale .cta-trust span { display: inline-flex; align-items: center; gap: 10px; justify-content: flex-start; min-width: 240px; }
@media (min-width: 720px){
  .finale .cta-trust { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 14px 28px; }
  .finale .cta-trust span { min-width: 0; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: rgba(244,251,250,.7); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .logo__mark { color: var(--cream-50); }
.footer h5 { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-100); margin: 0 0 16px; font-weight: 800; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { font-size: 14.5px; color: rgba(244,251,250,.7); transition: color .15s; }
.footer a:hover { color: var(--gold); }
.footer__tag { font-size: 16px; line-height: 1.55; max-width: 34ch; margin: 16px 0 0; color: rgba(244,251,250,.92); }
.footer__bottom { border-top: 1px solid rgba(244,251,250,.12); margin-top: 46px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }

/* ============================================================
   Sticky add-to-cart
   ============================================================ */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(10,74,67,.97); backdrop-filter: blur(8px); color: var(--cream-50);
  border-top: 1px solid rgba(249,196,219,.25);
  transform: translateY(110%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 -10px 30px rgba(0,0,0,.25);
}
.stickybar.show { transform: translateY(0); }
.stickybar__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; }
.stickybar__left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.stickybar__thumb { width: 50px; height: 50px; border-radius: 10px; background: var(--cream-50); border: 1px solid rgba(249,196,219,.3); flex: none; display:flex;align-items:center;justify-content:center; color: var(--gold-100); overflow: hidden; padding: 5px; }
.stickybar__thumb img { width: 100%; height: 100%; object-fit: contain; }
.stickybar__info { min-width: 0; }
.stickybar__name { font-weight: 800; font-size: 15.5px; }
.stickybar__sub { font-size: 13px; color: rgba(244,251,250,.7); display: flex; align-items: center; gap: 8px; }
.stickybar__right { display: flex; align-items: center; gap: 18px; }
.stickybar__price { font-family: var(--ff-display); font-size: 26px; color: var(--gold); }

/* ============================================================
   Reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(12px); transition: opacity .35s ease, transform .35s ease; will-change: opacity, transform; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 64px; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .feature-row.reverse .feature-row__media { order: 0; }
  .cw-grid { grid-template-columns: repeat(2,1fr); }
  .bundle-grid { grid-template-columns: 1fr; }
  .bundle--featured { transform: none; }
  .bundle--featured:hover { transform: translateY(-5px); }
  .review-grid { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; gap: 36px; }
  .story__media { order: -1; }
  .guarantee__card { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 36px 26px; }
  .guarantee__seal { width: 140px; height: 140px; }
  .founders-card { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 42px 30px; gap: 28px; }
  .founders__copy p { margin-left: auto; margin-right: auto; }
  .compare-col-sub { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stickybar__sub { display: none; }
  .section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .benefits-grid, .cw-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: minmax(0, 1fr) 88px 108px; }
  .compare-row > div { min-width: 0; padding: 14px 12px; font-size: 13.5px; }
  .compare-head > div { padding: 16px 6px; }
  .compare-head .col-dartee,
  .compare-head .col-other,
  .compare-row .col-dartee,
  .compare-row .col-other { justify-content: center; text-align: center; }
  .compare-head .compare-col-title { font-size: 14px !important; line-height: 1.18; max-width: 100%; }
  .compare-head .col-other .compare-col-title { font-size: 13px !important; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { padding: 15px 24px; }
  .stickybar__row { gap: 10px; padding: 10px 0; }
  .stickybar__thumb { display: none; }
  .stickybar__left { gap: 0; flex: 1 1 auto; min-width: 0; }
  .stickybar__name { font-size: 15px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: -.01em; }
  .stickybar__right { gap: 10px; flex: none; }
  .stickybar__price { font-size: 20px; }
  .stickybar__right .btn { padding: 11px 18px; font-size: 14px; }
}

/* Hero product cutout on teal */
.hero__media .ph--filled { -webkit-mask-image: none !important; mask-image: none !important; }
.hero__media .ph--filled .shot { object-fit: contain; filter: drop-shadow(0 26px 44px rgba(0,0,0,.5)); }

/* Hero: split-screen uses .hero__hang for the image; hide the grid media slot */
.hero__media { display: none; }

/* Belt hanging over the hero (dark image blended onto teal via screen) */
.hero { overflow: visible; }
.hero__hang { position: absolute; top: 50%; right: 0; transform: translateY(-50%); width: clamp(440px, 64vw, 900px); z-index: 0; pointer-events: none; display: flex; flex-direction: column; align-items: center; }
.hero__hang-logo { width: 100%; opacity: .2; display: block; }
.hero__hang-text { font-family: var(--ff-display); font-size: clamp(22px, 3.2vw, 44px); color: #fff; text-transform: uppercase; letter-spacing: .04em; opacity: .92; margin-top: -2%; }
@media (max-width: 760px){ .hero__hang { right: 50%; top: 50%; transform: translate(50%,-50%); width: 116%; max-width: 520px; } .hero__hang-logo { opacity: .12; } .hero__hang-text { font-size: 22px; } }

.hero__rank { font-family: var(--ff-display); font-size: clamp(20px, 2.6vw, 30px); color: var(--gold); text-transform: uppercase; letter-spacing: .02em; margin: 14px 0 0; }

/* Remove teal icon squares in benefits */
.benefit__icon { display: none; }
.section--photobg .benefit { background: transparent; border: none; box-shadow: none; }
.section--photobg .benefit:hover { transform: none; box-shadow: none; }
.section--photobg .benefit h4 { color: #fff; }
.section--photobg .benefit p { color: rgba(255,255,255,.86); }

.benefits-grid { display: none; }

#benefits { display: none; }

/* Colorway quick-adds: horizontal swipe carousel */
.cw-grid { display: flex !important; grid-template-columns: none !important; gap: 16px; overflow-x: auto; scroll-snap-type: x proximity; padding: 4px 2px 18px; -webkit-overflow-scrolling: touch; }
.cw-grid .cw-card { flex: 0 0 230px; scroll-snap-align: start; }
@media (max-width: 640px){ .cw-grid .cw-card { flex: 0 0 72%; } }

/* Visible scrollbar cue on the colorway carousel */
.cw-grid { scrollbar-width: auto; scrollbar-color: var(--gold) rgba(255,255,255,.16); }
.cw-grid::-webkit-scrollbar { height: 9px; }
.cw-grid::-webkit-scrollbar-track { background: rgba(255,255,255,.14); border-radius: 999px; }
.cw-grid::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.cw-grid::-webkit-scrollbar-thumb:hover { background: #f2649e; }

.cw-hint { text-align: center; color: var(--gold-100); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin: 24px 0 -8px; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Hero product (match Mock Up 2) */
.hero__hang { width: clamp(200px, 30vw, 440px); top: auto; bottom: 0; right: 2%; transform: none; align-items: flex-end; z-index: 1; }
.hero__hang-logo { opacity: 1; filter: drop-shadow(0 24px 40px rgba(0,0,0,.5)); }
.hero__hang-text { display: none; }
@media (max-width: 640px){ .hero__hang { width: 150px; right: 2%; bottom: 6px; } }
.offer__was2 { font-size: 19px; color: rgba(255,255,255,.55); text-decoration: line-through; margin-left: 10px; }
.offer__save2 { display:inline-block; margin-left:10px; font-size:12px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--green-900); background:var(--gold); padding:4px 10px; border-radius:999px; vertical-align:middle; }
.guar-badge { display:inline-flex; align-items:center; gap:7px; margin-top:14px; font-size:12.5px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color:var(--gold-100); }
.guar-badge svg { width:16px; height:16px; }

/* Hero model image, feathered into teal */
.hero__hang { width: clamp(280px, 40vw, 560px); top: 50%; bottom: auto; right: 0; transform: translateY(-50%); }
.hero__hang-logo { filter: none; -webkit-mask-image: radial-gradient(120% 112% at 55% 45%, #000 55%, rgba(0,0,0,0) 94%); mask-image: radial-gradient(120% 112% at 55% 45%, #000 55%, rgba(0,0,0,0) 94%); }
@media (max-width: 640px){ .hero__hang { width: 200px; right: -10px; top: 50%; bottom: auto; transform: translateY(-50%); } }

/* Split-screen hero: image one half, text the other */
.hero { overflow: hidden; }
.hero__hang { position: absolute; top: 0; right: 0; bottom: 0; width: 46%; transform: none; align-items: stretch; }
.hero__hang-logo { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; -webkit-mask-image: none; mask-image: none; filter: none; }
.hero__grid { padding-right: 48%; }
@media (max-width: 760px){
  .hero__hang { position: relative; width: 100%; aspect-ratio: 2 / 3; height: auto; right: auto; top: auto; bottom: auto; }
  .hero__grid { padding-right: 0; }
  .hero::after { right: 0; }
}

.spec-ghost { color: rgba(249,196,219,.5); -webkit-text-stroke: 1px rgba(255,255,255,.35); }

/* Lighten dialed + band scrims so the product shows */
.dialed__scrim { background: linear-gradient(90deg, rgba(9,32,27,.66) 0%, rgba(9,32,27,.3) 46%, rgba(9,32,27,0) 100%) !important; }
.band__scrim {
  background: linear-gradient(90deg, rgba(8,60,53,.78) 0%, rgba(8,60,53,.42) 46%, rgba(8,60,53,.04) 100%) !important;
}
@media (max-width:700px){
  .dialed__scrim { background: linear-gradient(180deg, rgba(9,32,27,.62), rgba(9,32,27,.5)) !important; }
  .band__scrim {
    background: linear-gradient(180deg, rgba(9,32,27,.62), rgba(9,32,27,.5)) !important;
  }
}

/* Vertical white pinstripes on the lineup (colorways) slide */
.colorways { background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 2px, rgba(255,255,255,0) 2px 46px); }

/* Vertical white pinstripes on the Built by Golfers (story) slide */
.story { background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 2px, rgba(255,255,255,0) 2px 46px); }

/* Vertical white pinstripes across the main hero green background (mobile + desktop) */
.hero {
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 2px, rgba(255,255,255,0) 2px 46px),
    radial-gradient(120% 130% at 80% 0%, var(--green-700) 0%, var(--green-900) 60%);
}

/* Brighten ALL full-bleed band images so the product is clearly visible */
.spec-hero__scrim, .exploded__scrim, .dialed__scrim { background: linear-gradient(90deg, rgba(9,32,27,.62) 0%, rgba(9,32,27,.24) 42%, rgba(9,32,27,0) 72%) !important; }
@media (max-width: 700px){ .spec-hero__scrim, .exploded__scrim, .dialed__scrim { background: linear-gradient(180deg, rgba(9,32,27,.5) 0%, rgba(9,32,27,.32) 100%) !important; } }

/* Magnetic-buckle band: stronger scrim + readable callouts */
.exploded__scrim { background: linear-gradient(90deg, rgba(9,32,27,.9) 0%, rgba(9,32,27,.66) 40%, rgba(9,32,27,.18) 100%) !important; }
.exploded .exploded__title, .exploded .exploded__sub, .exploded .callout b, .exploded .callout span { text-shadow: 0 2px 14px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.5); }
.exploded .callout b { font-size: 17px; }
.exploded .callout span { color: rgba(255,255,255,.92); font-size: 14px; }
@media (max-width: 700px){ .exploded__scrim { background: linear-gradient(180deg, rgba(9,32,27,.74), rgba(9,32,27,.6)) !important; } }

/* Built by Golfers: image fills the entire left half */
.story { position: relative; overflow: hidden; }
.story__media { position: absolute; left: 0; top: 0; bottom: 0; width: 48%; }
.story__media .ph--filled { height: 100% !important; aspect-ratio: auto !important; border-radius: 0 !important; box-shadow: none; }
.story__media .shot { height: 100% !important; width: 100%; object-fit: cover; }
.story__grid { display: block; padding-left: 52%; }
.story__title { line-height: 1.05; }
@media (max-width: 760px){ .story__media { position: relative; width: 100%; height: 280px; } .story__grid { padding-left: 0; } }

/* Finish the Setup, large editorial tiles */
.kit-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:44px; }
.kit-tile { position:relative; display:block; height:clamp(380px,46vw,540px); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.kit-tile img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .55s ease; }
.kit-tile:hover img { transform:scale(1.05); }
.kit-tile__scrim { position:absolute; inset:0; background:linear-gradient(to top, rgba(9,32,27,.74) 0%, rgba(9,32,27,.14) 44%, rgba(9,32,27,0) 72%); }
.kit-tile__cap { position:absolute; left:0; right:0; bottom:0; padding:30px 24px; display:flex; flex-direction:column; align-items:center; gap:15px; text-align:center; }
.kit-tile__name { font-family:var(--ff-display); font-size:clamp(28px,3vw,42px); color:#fff; text-transform:uppercase; letter-spacing:.01em; line-height:1; }
.kit-tile__btn { background:#fff; color:var(--green-900); font-weight:800; font-size:13px; letter-spacing:.05em; text-transform:uppercase; padding:12px 26px; border-radius:999px; transition:background .2s; }
.kit-tile:hover .kit-tile__btn { background:var(--gold); }
@media (max-width:760px){ .kit-grid{ grid-template-columns:1fr; } .kit-tile{ height:360px; } }

/* Subtle golf-course footer motif on light sections */
:root{ --golf-foot: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%201200%20120'%20preserveAspectRatio%3D'xMaxYMax%20meet'%3E%0A%3Cpath%20d%3D'M0%2094%20C%20180%2076%20360%20106%20560%2090%20S%20940%2072%201200%2092'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-width%3D'2.5'%20stroke-opacity%3D'0.9'%20stroke-linecap%3D'round'%2F%3E%0A%3Cline%20x1%3D'1035'%20y1%3D'90'%20x2%3D'1035'%20y2%3D'44'%20stroke%3D'%2311402f'%20stroke-width%3D'2.5'%20stroke-linecap%3D'round'%2F%3E%0A%3Cpath%20d%3D'M1035%2044%20L1035%2061%20L1073%2052%20Z'%20fill%3D'%23e85190'%2F%3E%0A%3Ccircle%20cx%3D'1016'%20cy%3D'90'%20r%3D'5'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-width%3D'1.5'%2F%3E%0A%3C%2Fsvg%3E"); }
.features, .bundles, .guarantee, #benefits { position: relative; }
.features::after, .bundles::after, .guarantee::after, #benefits::after { content:""; position:absolute; left:0; right:0; bottom:0; height:120px; background: bottom / 100% auto no-repeat var(--golf-foot); opacity:.32; pointer-events:none; z-index:0; }
.features > .wrap, .bundles > .wrap, .guarantee > .wrap, #benefits > .wrap { position:relative; z-index:1; }
@media (max-width:760px){ .features::after, .bundles::after, .guarantee::after, #benefits::after { height:64px; opacity:.26; } }

/* Varied per-section golf motifs (override generic) */
.bundles::after, #benefits::after { background: bottom / 100% auto no-repeat url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%201200%20140'%20preserveAspectRatio%3D'xMaxYMax%20meet'%3E%0A%3Cpath%20d%3D'M0%20104%20C%20220%2086%20440%20116%20660%20100%20S%201020%2080%201200%20102'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-width%3D'2.2'%20stroke-linecap%3D'round'%2F%3E%0A%3Cpath%20d%3D'M0%20122%20C%20240%20108%20470%20132%20700%20118%20S%201040%20100%201200%20120'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-width%3D'1.4'%20stroke-opacity%3D'.5'%2F%3E%0A%3Cline%20x1%3D'980'%20y1%3D'100'%20x2%3D'980'%20y2%3D'52'%20stroke%3D'%2311402f'%20stroke-width%3D'2.4'%20stroke-linecap%3D'round'%2F%3E%0A%3Cpath%20d%3D'M980%2052%20L980%2070%20L1019%2061%20Z'%20fill%3D'%23e85190'%2F%3E%0A%3Ccircle%20cx%3D'962'%20cy%3D'100'%20r%3D'5'%20fill%3D'%23fff'%20stroke%3D'%2311402f'%20stroke-width%3D'1.4'%2F%3E%0A%3C%2Fsvg%3E") !important; opacity:.3 !important; height:130px !important; }

.guarantee::after { background: bottom right 4% / 360px auto no-repeat url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%20460%20150'%20preserveAspectRatio%3D'xMaxYMax%20meet'%3E%0A%3Cg%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-linecap%3D'round'%3E%0A%3Cpath%20d%3D'M70%20150%20C%2040%20110%20120%2092%20210%20100%20C%20330%20110%20420%2096%20440%20150'%20stroke-width%3D'2'%20stroke-opacity%3D'.9'%2F%3E%0A%3Cpath%20d%3D'M120%20150%20C%20100%20122%20170%20110%20240%20116%20C%20330%20124%20380%20116%20396%20150'%20stroke-width%3D'1.5'%20stroke-opacity%3D'.6'%2F%3E%0A%3Cpath%20d%3D'M170%20150%20C%20158%20134%20206%20126%20256%20130%20C%20312%20134%20342%20130%20352%20150'%20stroke-width%3D'1.2'%20stroke-opacity%3D'.4'%2F%3E%0A%3C%2Fg%3E%0A%3Ccircle%20cx%3D'256'%20cy%3D'128'%20r%3D'4.5'%20fill%3D'%23e85190'%20fill-opacity%3D'.7'%2F%3E%0A%3C%2Fsvg%3E") !important; opacity:.3 !important; height:150px !important; }
.features::after { background: bottom / 100% auto no-repeat url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%201200%20140'%20preserveAspectRatio%3D'xMaxYMax%20meet'%3E%0A%3Cpath%20d%3D'M0%20118%20C%20260%20104%20520%20126%20780%20112%20S%201080%2096%201200%20114'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-width%3D'1.6'%20stroke-opacity%3D'.55'%2F%3E%0A%3Cpath%20d%3D'M210%20112%20q%20120%20-34%20250%20-16'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-width%3D'2'%20stroke-dasharray%3D'2%2011'%20stroke-linecap%3D'round'%2F%3E%0A%3Ccircle%20cx%3D'470'%20cy%3D'98'%20r%3D'6'%20fill%3D'%23fff'%20stroke%3D'%2311402f'%20stroke-width%3D'1.5'%2F%3E%0A%3Cline%20x1%3D'1030'%20y1%3D'110'%20x2%3D'1030'%20y2%3D'62'%20stroke%3D'%2311402f'%20stroke-width%3D'2.4'%20stroke-linecap%3D'round'%2F%3E%0A%3Cpath%20d%3D'M1030%2062%20L1030%2080%20L1069%2071%20Z'%20fill%3D'%23e85190'%2F%3E%0A%3C%2Fsvg%3E") !important; opacity:.3 !important; height:130px !important; }
@media (max-width:760px){ .bundles::after,#benefits::after,.features::after { height:60px !important; opacity:.24 !important; } .guarantee::after{ height:90px !important; background-size:200px auto !important; } }

/* Scorecard-style hole layout under reviews/guarantee */
.guarantee::after { background: bottom / 100% auto no-repeat url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%201200%20180'%20preserveAspectRatio%3D'xMaxYMax%20meet'%3E%0A%3Cpath%20d%3D'M60%20150%20C%20300%20153%20380%20126%20540%20120%20S%20860%20126%201090%2082'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.3'%20stroke-width%3D'38'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%2F%3E%0A%3Cpath%20d%3D'M60%20150%20C%20300%20153%20380%20126%20540%20120%20S%20860%20126%201090%2082'%20fill%3D'none'%20stroke%3D'%23e9f0e7'%20stroke-width%3D'33'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%2F%3E%0A%3Cpath%20d%3D'M60%20150%20C%20300%20153%20380%20126%20540%20120%20S%20860%20126%201090%2082'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.12'%20stroke-width%3D'33'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%2F%3E%0A%3Cpath%20d%3D'M60%20150%20C%20300%20153%20380%20126%20540%20120%20S%20860%20126%201090%2082'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.45'%20stroke-width%3D'1.4'%20stroke-dasharray%3D'2%2012'%20stroke-linecap%3D'round'%2F%3E%0A%3Cellipse%20cx%3D'372'%20cy%3D'150'%20rx%3D'46'%20ry%3D'15'%20fill%3D'%232a7d8c'%20fill-opacity%3D'.16'%20stroke%3D'%232a7d8c'%20stroke-opacity%3D'.5'%20stroke-width%3D'1.3'%2F%3E%0A%3Cellipse%20cx%3D'628'%20cy%3D'150'%20rx%3D'40'%20ry%3D'13'%20fill%3D'%23b5912f'%20fill-opacity%3D'.24'%20stroke%3D'%23b5912f'%20stroke-opacity%3D'.6'%20stroke-width%3D'1.2'%2F%3E%0A%3Cellipse%20cx%3D'872'%20cy%3D'150'%20rx%3D'28'%20ry%3D'10'%20fill%3D'%23b5912f'%20fill-opacity%3D'.24'%20stroke%3D'%23b5912f'%20stroke-opacity%3D'.6'%20stroke-width%3D'1.2'%2F%3E%0A%3Crect%20x%3D'44'%20y%3D'142'%20width%3D'22'%20height%3D'15'%20rx%3D'3'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.6'%20stroke-width%3D'1.5'%2F%3E%0A%3Ccircle%20cx%3D'52'%20cy%3D'149.5'%20r%3D'1.4'%20fill%3D'%2311402f'%2F%3E%3Ccircle%20cx%3D'58'%20cy%3D'149.5'%20r%3D'1.4'%20fill%3D'%2311402f'%2F%3E%0A%3Ccircle%20cx%3D'300'%20cy%3D'106'%20r%3D'5'%20fill%3D'%2311402f'%20fill-opacity%3D'.28'%2F%3E%3Ccircle%20cx%3D'690'%20cy%3D'100'%20r%3D'5'%20fill%3D'%2311402f'%20fill-opacity%3D'.28'%2F%3E%3Ccircle%20cx%3D'930'%20cy%3D'92'%20r%3D'5'%20fill%3D'%2311402f'%20fill-opacity%3D'.28'%2F%3E%0A%3Ccircle%20cx%3D'1093'%20cy%3D'78'%20r%3D'25'%20fill%3D'%2311402f'%20fill-opacity%3D'.16'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.55'%20stroke-width%3D'1.6'%2F%3E%0A%3Ccircle%20cx%3D'1093'%20cy%3D'78'%20r%3D'2.6'%20fill%3D'%2311402f'%2F%3E%0A%3Cline%20x1%3D'1093'%20y1%3D'78'%20x2%3D'1093'%20y2%3D'34'%20stroke%3D'%2311402f'%20stroke-width%3D'2.2'%20stroke-linecap%3D'round'%2F%3E%0A%3Cpath%20d%3D'M1093%2034%20L1093%2051%20L1130%2043%20Z'%20fill%3D'%23e85190'%2F%3E%0A%3C%2Fsvg%3E") !important; opacity:.62 !important; height:172px !important; background-position:bottom !important; }
@media (max-width:760px){ .guarantee::after { height:96px !important; opacity:.5 !important; background-size:1000px auto !important; } }

/* Mock Dartee scorecard motif under bundles */
.bundles::after { background: bottom center / clamp(620px, 92%, 1040px) auto no-repeat url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%201206%20150'%20preserveAspectRatio%3D'xMidYMax%20meet'%3E%3Crect%20x%3D'40'%20y%3D'50'%20width%3D'92'%20height%3D'30'%20fill%3D'%2311402f'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'86'%20y%3D'69.55'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'13'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3EHOLE%3C%2Ftext%3E%3Crect%20x%3D'132'%20y%3D'50'%20width%3D'104'%20height%3D'30'%20fill%3D'%2311402f'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'184'%20y%3D'69.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3E1%3C%2Ftext%3E%3Crect%20x%3D'236'%20y%3D'50'%20width%3D'104'%20height%3D'30'%20fill%3D'%2311402f'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'288'%20y%3D'69.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3E2%3C%2Ftext%3E%3Crect%20x%3D'340'%20y%3D'50'%20width%3D'104'%20height%3D'30'%20fill%3D'%2311402f'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'392'%20y%3D'69.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3E3%3C%2Ftext%3E%3Crect%20x%3D'444'%20y%3D'50'%20width%3D'104'%20height%3D'30'%20fill%3D'%2311402f'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'496'%20y%3D'69.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3E4%3C%2Ftext%3E%3Crect%20x%3D'548'%20y%3D'50'%20width%3D'104'%20height%3D'30'%20fill%3D'%2311402f'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'600'%20y%3D'69.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3E5%3C%2Ftext%3E%3Crect%20x%3D'652'%20y%3D'50'%20width%3D'104'%20height%3D'30'%20fill%3D'%2311402f'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'704'%20y%3D'69.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3E6%3C%2Ftext%3E%3Crect%20x%3D'756'%20y%3D'50'%20width%3D'104'%20height%3D'30'%20fill%3D'%2311402f'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'808'%20y%3D'69.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3E7%3C%2Ftext%3E%3Crect%20x%3D'860'%20y%3D'50'%20width%3D'104'%20height%3D'30'%20fill%3D'%2311402f'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'912'%20y%3D'69.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3E8%3C%2Ftext%3E%3Crect%20x%3D'964'%20y%3D'50'%20width%3D'104'%20height%3D'30'%20fill%3D'%2311402f'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'1016'%20y%3D'69.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3E9%3C%2Ftext%3E%3Crect%20x%3D'1068'%20y%3D'50'%20width%3D'98'%20height%3D'30'%20fill%3D'%23e85190'%20fill-opacity%3D'0.85'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'1117'%20y%3D'69.55'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'13'%20fill%3D'%23f3ecdb'%20letter-spacing%3D'1'%3EOUT%3C%2Ftext%3E%3Crect%20x%3D'40'%20y%3D'80'%20width%3D'92'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'86'%20y%3D'99.55'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'13'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3EPAR%3C%2Ftext%3E%3Crect%20x%3D'132'%20y%3D'80'%20width%3D'104'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'184'%20y%3D'99.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3E4%3C%2Ftext%3E%3Crect%20x%3D'236'%20y%3D'80'%20width%3D'104'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'288'%20y%3D'99.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3E3%3C%2Ftext%3E%3Crect%20x%3D'340'%20y%3D'80'%20width%3D'104'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'392'%20y%3D'99.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3E5%3C%2Ftext%3E%3Crect%20x%3D'444'%20y%3D'80'%20width%3D'104'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'496'%20y%3D'99.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3E4%3C%2Ftext%3E%3Crect%20x%3D'548'%20y%3D'80'%20width%3D'104'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'600'%20y%3D'99.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3E4%3C%2Ftext%3E%3Crect%20x%3D'652'%20y%3D'80'%20width%3D'104'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'704'%20y%3D'99.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3E3%3C%2Ftext%3E%3Crect%20x%3D'756'%20y%3D'80'%20width%3D'104'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'808'%20y%3D'99.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3E4%3C%2Ftext%3E%3Crect%20x%3D'860'%20y%3D'80'%20width%3D'104'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'912'%20y%3D'99.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3E5%3C%2Ftext%3E%3Crect%20x%3D'964'%20y%3D'80'%20width%3D'104'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'1016'%20y%3D'99.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3E4%3C%2Ftext%3E%3Crect%20x%3D'1068'%20y%3D'80'%20width%3D'98'%20height%3D'30'%20fill%3D'%23f7f1e2'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'1117'%20y%3D'99.9'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'14'%20fill%3D'%2311402f'%20letter-spacing%3D'1'%3E36%3C%2Ftext%3E%3Crect%20x%3D'40'%20y%3D'110'%20width%3D'92'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'86'%20y%3D'129.55'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'13'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3EYDS%3C%2Ftext%3E%3Crect%20x%3D'132'%20y%3D'110'%20width%3D'104'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'184'%20y%3D'129.2'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'12'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3E412%3C%2Ftext%3E%3Crect%20x%3D'236'%20y%3D'110'%20width%3D'104'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'288'%20y%3D'129.2'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'12'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3E168%3C%2Ftext%3E%3Crect%20x%3D'340'%20y%3D'110'%20width%3D'104'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'392'%20y%3D'129.2'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'12'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3E540%3C%2Ftext%3E%3Crect%20x%3D'444'%20y%3D'110'%20width%3D'104'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'496'%20y%3D'129.2'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'12'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3E389%3C%2Ftext%3E%3Crect%20x%3D'548'%20y%3D'110'%20width%3D'104'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'600'%20y%3D'129.2'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'12'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3E455%3C%2Ftext%3E%3Crect%20x%3D'652'%20y%3D'110'%20width%3D'104'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'704'%20y%3D'129.2'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'12'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3E205%3C%2Ftext%3E%3Crect%20x%3D'756'%20y%3D'110'%20width%3D'104'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'808'%20y%3D'129.2'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'12'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3E398%3C%2Ftext%3E%3Crect%20x%3D'860'%20y%3D'110'%20width%3D'104'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'912'%20y%3D'129.2'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'12'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3E512%3C%2Ftext%3E%3Crect%20x%3D'964'%20y%3D'110'%20width%3D'104'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'1016'%20y%3D'129.2'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'12'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3E372%3C%2Ftext%3E%3Crect%20x%3D'1068'%20y%3D'110'%20width%3D'98'%20height%3D'30'%20fill%3D'%23ffffff'%20stroke%3D'%2311402f'%20stroke-opacity%3D'.35'%20stroke-width%3D'1'%2F%3E%3Ctext%20x%3D'1117'%20y%3D'129.2'%20text-anchor%3D'middle'%20font-family%3D'Arial%2C%20sans-serif'%20font-weight%3D'700'%20font-size%3D'12'%20fill%3D'%23b5912f'%20letter-spacing%3D'1'%3E3451%3C%2Ftext%3E%3C%2Fsvg%3E") !important; opacity:.5 !important; height:150px !important; }
@media (max-width:760px){ .bundles::after { height:78px !important; opacity:.42 !important; background-size:700px auto !important; } }

/* Guarantee/reviews -> ball-rolling motif (preferred over fairway) */
.guarantee::after { background: bottom / 100% auto no-repeat url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%201200%20140'%20preserveAspectRatio%3D'xMaxYMax%20meet'%3E%0A%3Cpath%20d%3D'M0%20118%20C%20260%20104%20520%20126%20780%20112%20S%201080%2096%201200%20114'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-width%3D'1.6'%20stroke-opacity%3D'.55'%2F%3E%0A%3Cpath%20d%3D'M210%20112%20q%20120%20-34%20250%20-16'%20fill%3D'none'%20stroke%3D'%2311402f'%20stroke-width%3D'2'%20stroke-dasharray%3D'2%2011'%20stroke-linecap%3D'round'%2F%3E%0A%3Ccircle%20cx%3D'470'%20cy%3D'98'%20r%3D'6'%20fill%3D'%23fff'%20stroke%3D'%2311402f'%20stroke-width%3D'1.5'%2F%3E%0A%3Cline%20x1%3D'1030'%20y1%3D'110'%20x2%3D'1030'%20y2%3D'62'%20stroke%3D'%2311402f'%20stroke-width%3D'2.4'%20stroke-linecap%3D'round'%2F%3E%0A%3Cpath%20d%3D'M1030%2062%20L1030%2080%20L1069%2071%20Z'%20fill%3D'%23e85190'%2F%3E%0A%3C%2Fsvg%3E") !important; opacity:.3 !important; height:130px !important; background-position:bottom !important; }
@media (max-width:760px){ .guarantee::after { height:60px !important; opacity:.24 !important; background-size:100% auto !important; } }

/* divot-tex: removed per request */
.colorways, .story, .hero { position: relative; }
.colorways::before, .story::before, .hero::before { content: none !important; }

.colorways > .wrap, .story > .wrap, .hero > .hero__grid { position:relative; z-index:2; }

/* Mobile: reviews + bundle belt picker become horizontal swipes */
@media (max-width: 640px){
  .review-grid { display:flex !important; grid-template-columns:none !important; gap:14px !important; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:10px; scrollbar-width:none; }
  .review-grid::-webkit-scrollbar{ display:none; }
  .review-grid > .review { flex:0 0 84%; scroll-snap-align:start; }
  .builder__grid { display:flex !important; grid-template-columns:none !important; gap:12px !important; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:10px; scrollbar-width:none; }
  .builder__grid::-webkit-scrollbar{ display:none; }
  .builder__grid > * { flex:0 0 47%; scroll-snap-align:start; }
}

/* Mobile: story image edge-to-edge */
@media (max-width: 760px){
  .story__media { width: calc(100% + 48px) !important; margin-left: -24px !important; margin-right: -24px !important; }
  .story__media .ph--filled, .story__media .shot { border-radius: 0 !important; }
}

/* Mobile builder: prevent horizontal overflow + tighten summary */
@media (max-width: 640px){
  .builder, .builder__pick, .builder__grid { min-width: 0; max-width: 100%; }
  .builder__cart { padding: 18px; }
  .thumb--preview { height: 120px; }
  .builder__step { font-size: 18px; }
}
/* Mobile: story image flush to top of slide (no green above) */
@media (max-width: 760px){
  .story { padding-top: 0 !important; }
}

/* Story: image flush to very top & bottom (fix offset parent) + cursive signature */
.story::before { content: none !important; }
.story > .wrap { position: static !important; }
.story__sign { font-family: "Allura", cursive !important; font-style: normal !important; font-size: clamp(42px, 5vw, 58px) !important; line-height: 1 !important; }

/* Featured Releases carousel (website version) */
.feat-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:30px; flex-wrap:wrap; }
.feat-head__left{ display:flex; align-items:center; gap:18px; }
.feat-head h2{ margin:0; font-size:clamp(28px,3.4vw,46px); }
.feat-shopall{ border:1.5px solid var(--ink); border-radius:999px; padding:9px 20px; font-weight:800; font-size:12px; letter-spacing:.08em; text-transform:uppercase; transition:.15s; }
.feat-shopall:hover{ background:var(--ink); color:var(--cream-50); }
.feat-toggle{ display:flex; gap:4px; background:var(--cream); border-radius:999px; padding:4px; }
.feat-toggle button{ padding:8px 18px; border-radius:999px; font-weight:700; font-size:13px; color:var(--ink-soft); }
.feat-toggle button.on{ background:var(--green-800); color:var(--cream-50); }
.feat-rail{ position:relative; }
.feat-track{ display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding-bottom:6px; }
.feat-track::-webkit-scrollbar{ display:none; }
.feat-card{ flex:0 0 clamp(230px,23%,300px); scroll-snap-align:start; display:block; color:inherit; }
.feat-card__media{ position:relative; aspect-ratio:4/5; background:#f1efe9; border-radius:var(--r-md); overflow:hidden; display:flex; align-items:center; justify-content:center; }
.feat-belt{ width:50px; height:72%; border-radius:10px; background:var(--belt); box-shadow:inset 0 0 0 1px rgba(0,0,0,.08), 0 12px 26px rgba(0,0,0,.16); position:relative; }
.feat-belt__buckle{ position:absolute; top:14px; left:50%; transform:translateX(-50%); width:40px; height:30px; border-radius:6px; background:linear-gradient(145deg,#edeef0,#b7bbc1); box-shadow:0 2px 6px rgba(0,0,0,.28); }
.feat-belt__buckle::after{ content:""; position:absolute; inset:9px; border-radius:50%; background:radial-gradient(circle at 40% 35%,#fff,#cfd2d7); }
.feat-card__add{ position:absolute; right:12px; bottom:12px; width:38px; height:38px; border:1.5px solid var(--ink); border-radius:8px; background:rgba(255,255,255,.88); display:flex; align-items:center; justify-content:center; font-size:21px; line-height:1; color:var(--ink); transition:.15s; cursor:pointer; padding:0; font-family:inherit; }
.feat-card:hover .feat-card__add{ background:var(--gold); border-color:var(--gold); color:#fff; }
.feat-card__add:hover{ background:var(--gold); border-color:var(--gold); color:#fff; }
.feat-card__add.added{ background:var(--green-700); border-color:var(--green-700); color:#fff; }
.feat-card__tag{ position:absolute; top:12px; left:12px; background:var(--green-900); color:var(--cream-50); font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; padding:4px 9px; border-radius:999px; }
.feat-card__name{ font-weight:800; font-size:15px; margin:14px 0 3px; text-transform:uppercase; letter-spacing:.02em; }
.feat-card__price{ font-weight:700; color:var(--ink-soft); font-size:14.5px; }
.feat-card__dots{ display:flex; gap:6px; margin-top:9px; }
.feat-card__dots i{ width:14px; height:14px; border-radius:50%; box-shadow:inset 0 0 0 1px rgba(0,0,0,.18); }
.feat-arrow{ position:absolute; top:36%; width:42px; height:42px; border-radius:50%; background:#fff; box-shadow:var(--shadow-md); display:flex; align-items:center; justify-content:center; z-index:3; border:1px solid var(--line); font-size:22px; color:var(--green-900); }
.feat-arrow--prev{ left:-12px; } .feat-arrow--next{ right:-12px; }
@media(max-width:760px){ .feat-card{ flex-basis:70%; } .feat-arrow{ display:none; } }

/* Bundle tier offer + progress */
.bundle-tiers{ display:flex; gap:10px; justify-content:center; margin:20px 0 0; flex-wrap:wrap; }
.bundle-tiers .tier{ display:inline-flex; align-items:center; gap:6px; background:#fff; border:1.5px solid var(--line); border-radius:999px; padding:9px 18px; font-weight:700; font-size:13.5px; color:var(--green-900); transition:.2s; }
.bundle-tiers .tier b{ color:var(--gold-600); }
.bundle-tiers .tier.active{ border-color:var(--gold); background:var(--gold-100); box-shadow:0 6px 16px rgba(200,162,75,.22); }
.builder__bundle{ margin:2px 0 16px; }
.builder__bundle-msg{ font-size:13px; color:var(--ink-soft); line-height:1.4; }
.builder__bundle-msg strong{ color:var(--green-700); }
.bbar{ display:block; height:8px; border-radius:999px; background:var(--cream); margin-top:9px; overflow:hidden; }
.bbar__fill{ display:block; height:100%; background:linear-gradient(90deg,var(--green-700),var(--gold)); transition:width .4s ease; }
.builder__save-line{ display:flex; justify-content:space-between; font-size:13.5px; color:var(--green-700); font-weight:800; margin-bottom:10px; }
.cartdrawer__disc .drow{ display:flex; justify-content:space-between; font-size:13.5px; margin-bottom:6px; color:var(--ink-soft); }
.cartdrawer__disc .drow--save{ color:var(--green-700); font-weight:800; }
.cartdrawer__bundle{ margin: 4px 0 14px; padding: 10px 12px; background: #fff7fb; border: 1px solid var(--gold-100); border-radius: 10px; }
.cd-bundle__row{ display:flex; justify-content:space-between; align-items:center; gap:8px; }
.cd-bundle__label{ font-size:12.5px; font-weight:800; letter-spacing:.02em; text-transform:uppercase; color:var(--gold-600); }
.cd-bundle__save{ font-size:13px; font-weight:800; color:var(--gold-600); }
.cd-bundle__msg{ font-size:12.5px; color:var(--ink-soft); margin-top:4px; line-height:1.35; }
.cd-bundle__msg strong{ color:var(--gold-600); }
.cd-bundle__bar{ display:block; height:7px; border-radius:999px; background:#fce6ee; margin-top:8px; overflow:hidden; }
.cd-bundle__fill{ display:block; height:100%; background:linear-gradient(90deg,var(--gold),var(--gold-600)); transition:width .4s ease; }

/* Shop by Collection tiles (website, on green) */
.coll-head{ margin:66px 0 26px; text-align:center; }
.coll-head h3{ color:var(--cream-50); font-size:clamp(26px,3.4vw,42px); margin:0; }
.coll-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.coll-tile{ position:relative; display:block; aspect-ratio:3/4; border-radius:var(--r-md); overflow:hidden; box-shadow:var(--shadow-lg); }
.coll-tile img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .55s ease; }
.coll-tile:hover img{ transform:scale(1.05); }
.coll-tile__scrim{ position:absolute; inset:0; background:linear-gradient(to top, rgba(9,32,27,.82) 0%, rgba(9,32,27,.16) 46%, rgba(9,32,27,0) 72%); }
.coll-tile__cap{ position:absolute; left:0; right:0; bottom:0; padding:26px 18px; display:flex; flex-direction:column; align-items:center; gap:13px; text-align:center; }
.coll-tile__name{ font-family:var(--ff-display); font-size:clamp(20px,1.8vw,28px); color:#fff; text-transform:uppercase; letter-spacing:.02em; line-height:1; }
.coll-tile__btn{ background:#fff; color:var(--green-900); font-weight:800; font-size:12px; letter-spacing:.06em; text-transform:uppercase; padding:10px 24px; border-radius:999px; transition:.2s; }
.coll-tile:hover .coll-tile__btn{ background:var(--gold); }
@media(max-width:860px){ .coll-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .coll-grid{ grid-template-columns:1fr; } }

/* Shop by Collection band (Ridge style) under Built for the Course */
.collsec{ background:var(--cream-50); padding:80px 0; }
.collsec__head{ font-family:var(--ff-display); text-transform:uppercase; font-size:clamp(26px,3.4vw,42px); letter-spacing:.01em; margin:0 0 26px; color:var(--ink); }
.collsec .coll-tile__btn{ display:none; }
.collsec .coll-tile__cap{ align-items:center; padding-bottom:30px; }
.collsec .coll-tile__name{ font-size:clamp(22px,2.1vw,36px); }

.feat-card__media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

/* Split Shop-by-Collection layout (feature image + grid) */
.collsplit { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.collsplit__feat { position: relative; display: block; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 460px; }
.collsplit__feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.collsplit__feat:hover img { transform: scale(1.04); }
.collsplit__feat-name { position: absolute; left: 32px; bottom: 90px; z-index: 2; font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(40px, 4.4vw, 68px); color: #fff; line-height: .9; text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.collsplit__feat-btn { position: absolute; left: 32px; bottom: 30px; z-index: 2; background: #fff; color: var(--green-900); font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 11px 24px; border-radius: 999px; transition: .2s; }
.collsplit__feat:hover .collsplit__feat-btn { background: var(--gold); }
.collsplit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.collsplit__grid .coll-tile { aspect-ratio: auto; }
@media (max-width: 860px){
  .collsplit{
    display:flex;
    grid-template-columns:none;
    gap:14px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:4px 20px 18px;
    margin:0 calc(var(--wrap-pad, 20px) * -1);
    scroll-padding-left:20px;
  }
  .collsplit::-webkit-scrollbar{ display:none; }
  .collsplit__grid{ display:contents; }
  .collsplit__feat,
  .collsplit .coll-tile{
    flex:0 0 auto;
    scroll-snap-align:start;
    border-radius:var(--r-md);
  }
  .collsplit__feat{
    width:78vw; max-width:340px;
    min-height:0; aspect-ratio:4/5;
  }
  .collsplit__feat-name{ left:20px; bottom:64px; font-size:38px; }
  .collsplit__feat-btn{ left:20px; bottom:20px; }
  .collsplit .coll-tile{
    width:62vw; max-width:260px;
    aspect-ratio:3/4;
  }
  .collsec .coll-tile__btn{ display:inline-block; }
  .collsec .coll-tile__cap{ padding:18px 14px 22px; gap:10px; }
  .collsec .coll-tile__name{ font-size:22px; }
  .collsec{ padding:56px 0; }
  .collsec__head{ margin-bottom:18px; }
}

/* Lighten collection tile scrim so the photos show */
.collsec .coll-tile__scrim{ background: linear-gradient(to top, rgba(9,32,27,.58) 0%, rgba(9,32,27,.14) 28%, rgba(9,32,27,0) 48%) !important; }
.collsec .coll-tile__name{ text-shadow: 0 2px 12px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.55); }

/* CRO-WEB ADDITIONS ============================================ */

/* 1) Product video band */
.videoband{ background:var(--green-900); padding:0; position:relative; }
.videoband__frame{ position:relative; width:100%; aspect-ratio:16/7; min-height:380px; overflow:hidden; }
.videoband__frame video, .videoband__poster{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.videoband__poster{ background:center/cover no-repeat; }
.videoband__scrim{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(8,28,22,.82) 0%, rgba(8,28,22,.45) 45%, rgba(8,28,22,.18) 100%); }
.videoband__content{ position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center; gap:18px; max-width:var(--maxw); margin:0 auto; padding:0 48px; z-index:2; }
.videoband__content .eyebrow{ color:var(--gold-100); }
.videoband__content h2{ color:var(--cream-50); margin:0; max-width:14ch; }
.videoband__content p{ color:rgba(243,236,219,.85); max-width:42ch; font-size:clamp(16px,1.7vw,19px); margin:0; }
.videoband__play{ display:inline-flex; align-items:center; gap:14px; margin-top:6px; }
.videoband__play-btn{ width:64px; height:64px; border-radius:50%; background:var(--gold); color:var(--green-900); display:flex; align-items:center; justify-content:center; box-shadow:0 10px 30px rgba(200,162,75,.4); transition:transform .2s, background .2s; flex:none; }
.videoband__play:hover .videoband__play-btn{ transform:scale(1.07); }
.videoband__play-btn svg{ width:26px; height:26px; margin-left:3px; }
.videoband__play-label{ color:var(--cream-50); font-weight:800; font-size:14px; letter-spacing:.04em; text-transform:uppercase; }
@media(max-width:760px){ .videoband__frame{ aspect-ratio:auto; height:520px; } .videoband__content{ padding:0 24px; justify-content:flex-end; padding-bottom:42px; } .videoband__scrim{ background:linear-gradient(to top, rgba(8,28,22,.9) 0%, rgba(8,28,22,.4) 60%); } }

/* 2) Inline CTA trust row (repeatable) */
.cta-trust{ display:flex; flex-wrap:wrap; gap:18px 26px; justify-content:center; margin-top:22px; }
.cta-trust span{ display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:13.5px; color:var(--ink-soft); letter-spacing:.01em; }
.cta-trust svg{ width:18px; height:18px; color:var(--green-600); flex:none; }
.finale .cta-trust span{ color:rgba(243,236,219,.9); }
.finale .cta-trust svg{ color:var(--gold); }

/* Buy-box trust badges (bundle builder) */
.builder__badges{ display:flex; gap:8px; flex-wrap:wrap; margin:14px 0 2px; }
.builder__badges span{ display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:800; letter-spacing:.02em; color:var(--green-800); background:var(--cream); border:1px solid var(--line); border-radius:999px; padding:6px 12px; }
.builder__badges svg{ width:14px; height:14px; color:var(--green-600); }

/* 3) Email capture */
.emailcap{ background:var(--green-800); color:var(--cream-50); position:relative; overflow:hidden; }
.emailcap::after{ content:""; position:absolute; inset:0; background:repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 2px, transparent 2px 9px); pointer-events:none; }
.emailcap__inner{ position:relative; z-index:2; display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:center; }
.emailcap .eyebrow{ color:var(--gold-100); }
.emailcap h2{ color:var(--cream-50); margin:0 0 10px; }
.emailcap p{ color:rgba(243,236,219,.85); margin:0; max-width:46ch; }
.emailcap__form{ display:flex; gap:10px; flex-wrap:wrap; }
.emailcap__form input{ flex:1; min-width:0; padding:16px 20px; border-radius:999px; border:1.5px solid rgba(243,236,219,.3); background:rgba(255,255,255,.96); color:var(--ink); font-size:15.5px; font-family:var(--ff-sans); }
.emailcap__form input:focus{ outline:none; border-color:var(--gold); }
.emailcap__form .btn{ flex:none; }
.emailcap__msg{ margin-top:12px; font-weight:700; font-size:14px; color:var(--gold-100); min-height:1px; }
.emailcap__fine{ margin-top:10px; font-size:12px; color:rgba(243,236,219,.6); }
@media(max-width:760px){ .emailcap__inner{ grid-template-columns:1fr; gap:24px; } }

/* 5) Reviews credibility ribbon */
.reviews-cred{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top:14px; padding-top:18px; border-top:1px solid var(--line); }
.reviews-cred__badge{ display:inline-flex; align-items:center; gap:8px; font-weight:800; font-size:13px; color:var(--green-800); }
.reviews-cred__badge svg{ width:18px; height:18px; color:var(--green-600); }
.reviews-cred__sep{ width:1px; height:18px; background:var(--line); }
.reviews-cred__note{ font-size:13px; color:var(--ink-soft); }

/* Cart drawer cross-sell */
.cartdrawer__addons{ padding: 0 24px; }
.cd-addons{ border-top:1px solid var(--line); padding-top:14px; margin-bottom:4px; }
.cd-addons__title{ font-weight:800; font-size:13px; letter-spacing:.04em; text-transform:uppercase; color:var(--green-900); margin:0 0 10px; }
.cd-addon{ display:flex; align-items:center; gap:12px; padding:8px 0; }
.cd-addon img{ width:46px; height:46px; border-radius:9px; object-fit:cover; flex:none; border:1px solid var(--line); }
.cd-addon__meta{ min-width:0; flex:1; }
.cd-addon__name{ font-weight:700; font-size:14px; color:var(--ink); line-height:1.2; }
.cd-addon__price{ font-size:13px; color:var(--ink-soft); }
.cd-addon__add{ flex:none; border:1.5px solid var(--green-800); color:var(--green-800); border-radius:999px; padding:7px 15px; font-weight:800; font-size:12px; letter-spacing:.03em; text-transform:uppercase; background:#fff; transition:.15s; }
.cd-addon__add:hover{ background:var(--green-800); color:var(--cream-50); }
.cd-addon__add{ cursor:pointer; }
.cd-addon__size{ margin-top:5px; font: 600 12px/1.2 var(--ff-sans); color:var(--ink); background:#fff; border:1.5px solid var(--line); border-radius:8px; padding:5px 26px 5px 9px; max-width:140px; appearance:none; -webkit-appearance:none; background-image: linear-gradient(45deg, transparent 50%, var(--green-800) 50%), linear-gradient(135deg, var(--green-800) 50%, transparent 50%); background-position: calc(100% - 13px) 50%, calc(100% - 8px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.cd-addon__size:focus{ outline:none; border-color:var(--green-700); }
.cd-addon__size--err{ border-color:var(--gold-600); box-shadow:0 0 0 3px rgba(232,81,144,.18); }

/* The Dartee Boys quote band (above footers) */
.dboys-quote {
  background: var(--green-900);
  color: var(--cream-50);
  text-align: center;
  padding: clamp(72px, 11vw, 120px) 24px;
  position: relative;
  overflow: hidden;
}
.dboys-quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 2px, transparent 2px 46px);
  pointer-events: none;
}
.dboys-quote__mascot { display: none; }
.dboys-quote blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--cream-50);
  margin: 0 auto;
  white-space: nowrap;
}
.dboys-quote cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 22px;
  font-family: var(--ff-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-100);
}
@media (max-width: 560px) {
  .dboys-quote blockquote { white-space: normal; max-width: 14ch; font-size: clamp(24px, 7vw, 32px); }
  .dboys-quote cite { font-size: 11px; letter-spacing: .22em; }
}

/* Site search overlay */
.site-search { position: fixed; inset: 0; z-index: 300; visibility: hidden; }
.site-search.open { visibility: visible; }
.site-search__scrim { position: absolute; inset: 0; background: rgba(10,30,26,.55); opacity: 0; transition: opacity .25s ease; }
.site-search.open .site-search__scrim { opacity: 1; }
.site-search__panel { position: absolute; top: 0; left: 50%; transform: translate(-50%,-16px); width: 100%; max-width: 620px; background: var(--cream-50); border-radius: 0 0 18px 18px; box-shadow: var(--shadow-lg); padding: 18px; opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.site-search.open .site-search__panel { transform: translate(-50%,0); opacity: 1; }
.site-search__bar { display: flex; align-items: center; gap: 11px; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fff; }
.site-search__bar svg { width: 20px; height: 20px; color: var(--green-700); flex: none; }
.site-search__bar input { flex: 1; border: none; outline: none; font-family: var(--ff-sans); font-size: 16px; color: var(--ink); background: none; }
.site-search__x { font-size: 24px; line-height: 1; color: var(--ink-soft); background: none; border: none; cursor: pointer; }
.site-search__results { max-height: 60vh; overflow-y: auto; margin-top: 10px; }
.ss-group { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); padding: 14px 6px 6px; }
.ss-row { display: flex; align-items: center; gap: 12px; padding: 11px 8px; border-radius: 10px; color: var(--green-900); font-weight: 700; font-size: 15px; }
.ss-row:hover { background: var(--cream); }
.ss-row svg { width: 18px; height: 18px; color: var(--ink-soft); margin-left: auto; }
.ss-row--img img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; border: 1px solid var(--line); }
.ss-row--img span { flex: 1; }
.ss-row--img b { color: var(--green-900); font-size: 14px; }
.ss-empty { padding: 24px 8px; color: var(--ink-soft); font-size: 14.5px; text-align: center; }

/* Footer Instagram follow button */
.footer__ig { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; padding: 9px 16px; border: 1px solid rgba(243,236,219,.28); border-radius: 999px; color: rgba(243,236,219,.85); font-weight: 700; font-size: 13.5px; transition: .15s; }
.footer__ig:hover { background: var(--gold); color: var(--green-900); border-color: var(--gold); }
.footer__ig svg { width: 18px; height: 18px; }

/* ============================================================
   UNIFIED BACKGROUND SYSTEM (site-wide, intentional)
   - Every green band = solid green-900 + vertical pinstripe
   - Light sections collapse to ONE cream tone (--cream-50)
   ============================================================ */
/* green bands: consistent base + pinstripe overlay */
.finale, .apply, .dboys-quote, .pdp-feats, .colorways, .story,
.mh-hero, .col-hero, .hw-hero, .guarantee.is-green, .emailcap {
  background-color: var(--green-900) !important;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 2px, rgba(255,255,255,0) 2px 46px) !important;
}
/* retire the old diagonal-hatch ::after overlays so patterns don't mix */
.finale::after, .apply::after, .dboys-quote::after, .pdp-feats::after,
.colorways::after, .mh-hero::after, .col-hero::after, .hw-hero::after,
.story::after, .emailcap::after {
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 2px, rgba(255,255,255,0) 2px 46px) !important;
}
/* one cream tone for alternating light sections (kills the mint / cool-white drift) */
.msteps, .bundles, .features, .guarantee:not(.is-green) {
  background-color: var(--cream-50) !important;
}
/* hairline gold divider to break stacked green pinstripe bands */
.finale { border-top: 1px solid rgba(200,162,75,.28); }
/* homepage proof strip (under trust bar) */
.proofstrip { background-color: var(--cream-50); background-image: repeating-linear-gradient(90deg, rgba(17,84,62,.05) 0 2px, rgba(17,84,62,0) 2px 46px); border-top: 4px solid var(--green-700); border-bottom: 4px solid var(--pink, #e85190); }
.proofstrip__row { display: flex; align-items: center; justify-content: center; gap: 26px; padding: 14px 0; flex-wrap: wrap; }
.proofstrip__rating { display: inline-flex; align-items: center; gap: 9px; }
.proofstrip__rating .stars svg { width: 16px; height: 16px; }
.proofstrip__rating strong { font-size: 15px; color: var(--green-900); }
.proofstrip__count { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }
.proofstrip__quotes { display: inline-flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ink-soft); font-style: italic; flex-wrap: wrap; }
.proofstrip__sep { color: var(--gold); font-style: normal; }
@media (max-width: 760px){
  .proofstrip__row { display: none; }
  .proofstrip { padding: 14px 0 16px; }
  .proofstrip__mobile { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 4px 16px; }
  .proofstrip__mobile-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
  .proofstrip__mbadge { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 700; color: var(--green-900); text-transform: uppercase; letter-spacing: .04em; }
  .proofstrip__mbadge svg { width: 15px; height: 15px; color: var(--pink, #e85190); }
  .proofstrip__mcta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; max-width: 360px; padding: 14px 22px; background: var(--green-700); color: #fff; border-radius: 999px; font-weight: 800; font-size: 15px; letter-spacing: .03em; text-transform: uppercase; text-decoration: none; box-shadow: 0 8px 20px -10px rgba(17,84,62,.55); }
  .proofstrip__mcta svg { width: 16px; height: 16px; }
  .proofstrip__mnote { font-size: 12px; color: var(--ink-soft); font-weight: 600; letter-spacing: .02em; }
}
@media (min-width: 761px){ .proofstrip__mobile { display: none; } }
/* email-capture band = footer-dark (no stripes) for contrast */
.emailcap { background-color: var(--ink) !important; background-image: none !important; border-top: 1px solid rgba(200,162,75,.28); border-bottom: 3px solid var(--pink, #e85190); box-shadow: 0 3px 0 0 var(--green-700); }
.emailcap::after { background: none !important; }
/* wholesale hero keeps its branded photo banner (overrides the green unification) */
.mh-hero--banner { background-image: url("assets/photos/custom-hero.webp") !important; background-size: cover !important; background-position: center !important; background-color: var(--green-900) !important; }
.mh-hero--banner::after { background: none !important; }
.mh-hero--banner .mh-hero__bgscrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,38,31,.86) 0%, rgba(8,38,31,.6) 45%, rgba(8,38,31,.28) 100%); }
.mh-hero--banner .mh-hero__inner { position: relative; z-index: 2; }
@media (max-width:760px){ .mh-hero--banner .mh-hero__bgscrim { background: linear-gradient(180deg, rgba(8,38,31,.55), rgba(8,38,31,.84)); } }

/* Desktop: force left-aligned text on hero + story so they read naturally
   and stop reading as visually centered in their split-screen columns. */
@media (min-width: 761px){
  .hero__copy,
  .hero__copy > *,
  .hero h1,
  .hero__lead,
  .hero__cta,
  .hero__rating { text-align: left !important; align-items: flex-start !important; justify-content: flex-start !important; }
  .hero h1 { font-size: clamp(44px, 5.6vw, 76px) !important; max-width: 12ch; }
  .hero__lead { margin-left: 0 !important; margin-right: 0 !important; }

  .story__copy,
  .story__copy > *,
  .story h2,
  .story__quote,
  .story__body,
  .story__sign,
  .story__role { text-align: left !important; align-items: flex-start !important; margin-left: 0 !important; margin-right: 0 !important; }
  .story h2 { max-width: 16ch; }
  .story__quote { max-width: 22ch; }
  .story__body { max-width: 54ch; }
}


/* ===== Sold-out states (Shopify-driven) =====
   Quick-add buttons stay in place; we just disable them and drop a
   "Sold out" badge on the card media (same slot as Bestseller / New). */
[data-belt].is-sold-out,
[data-belt][aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed !important;
  pointer-events: auto; /* keep click for toast feedback */
}
.is-sold-out .feat-card__media,
.is-sold-out .pcard__media,
.is-sold-out .ph { filter: grayscale(0.55); }

/* Top-left tag, matches feat-card__tag / pcard__tag visual language */
.dartee-soldout-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #8a1f1f;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}
.dartee-soldout-tag--stacked { top: 42px; }


/* Toast */
.dartee-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  z-index: 99999;
  pointer-events: none;
}
.dartee-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.dartee-toast--soldout { background: #8a1f1f; }

/* ===== Big pull-quote break between spec sections ===== */
.pullquote {
  background: #fff;
  padding: clamp(90px, 16vw, 200px) 24px;
  text-align: center;
}
.pullquote__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.pullquote__mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(120px, 20vw, 240px);
  line-height: 0.6;
  color: #ec2f8a;
  margin-bottom: 20px;
  font-weight: 700;
}
.pullquote__text {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: #0b0b0b;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 20ch;
}
.pullquote__accent { color: #ec2f8a; }
.pullquote__attr {
  margin-top: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.pullquote__name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0b0b0b;
}
.pullquote__meta {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a7a7a;
}
.pullquote__flag {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 5vw, 48px);
}
.pullquote__flag img {
  width: clamp(110px, 16vw, 170px);
  height: auto;
  display: block;
}

/* ===== Warranty break between Build Your Belt and Mark It Your Way ===== */
.warranty-break {
  background: var(--green-900);
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 2px, rgba(255,255,255,0) 2px 46px);
  padding: clamp(80px, 14vw, 170px) 24px;
  text-align: center;
}
.warranty-break__inner {
  max-width: 900px;
  margin: 0 auto;
}
.warranty-break__eyebrow {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.warranty-break__title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 7.2vw, 92px);
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0;
}
.warranty-break__sub {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3.4vw, 40px);
  font-style: italic;
  font-weight: 500;
  color: rgba(244,251,250,.92);
  margin: 18px 0 0;
}
.warranty-break__cite {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-100);
  margin: 14px 0 0;
}
.warranty-break__flag {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.warranty-break__flag img {
  width: clamp(140px, 20vw, 220px);
  height: auto;
  display: block;
}
