/* =========================================================
   GolfStyles / WhyGolfers — Design System
   ========================================================= */

:root {
  /* Color */
  --bg: #ffffff;
  --bg-subtle: #f7faf8;
  --bg-subtle-2: #f2f7f3;
  --ink: #12201a;
  --ink-muted: #55665c;
  --ink-faint: #8a988f;
  --border: #e3ebe1;
  --border-strong: #cfdccb;

  --green-900: #0d3c22;
  --green-800: #12502c;
  --green-700: #166337;
  --green-600: #1c7a42;
  --green-500: #22954f;
  --green-400: #3cb265;
  --green-100: #e4f4e9;
  --green-050: #f2f9f4;

  --gold-700: #8a6a10;
  --gold-600: #a9860f;
  --gold-500: #c9a227;
  --gold-400: #dfbc4f;
  --gold-100: #faf1d8;

  --pink-700: #c22a55;
  --pink-600: #dc3a68;
  --pink-500: #f24f71;
  --pink-400: #f57894;
  --pink-100: #fde3ea;
  --pink-050: #fef1f4;

  --white: #ffffff;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(13, 40, 24, 0.06), 0 1px 1px rgba(13, 40, 24, 0.04);
  --shadow-md: 0 6px 16px rgba(13, 40, 24, 0.08), 0 2px 6px rgba(13, 40, 24, 0.05);
  --shadow-lg: 0 20px 40px rgba(13, 40, 24, 0.12), 0 6px 12px rgba(13, 40, 24, 0.06);
  --shadow-xl: 0 30px 60px rgba(6, 20, 12, 0.22), 0 10px 20px rgba(6, 20, 12, 0.1);
  --shadow-glow: 0 0 0 4px rgba(28, 122, 66, 0.14);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Spacing (8px base) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* Type */
  --font-head: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.18s;
  --dur-base: 0.32s;
  --dur-slow: 0.6s;

  --container: 1240px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  height: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--green-900);
}
:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (max-width: 640px) {
  .container { padding-inline: var(--sp-4); }
}
section { position: relative; }
.section { padding-block: clamp(3rem, 5vw, 4.5rem); }
@media (max-width: 900px) { .section { padding-block: var(--sp-7); } }
.section-subtle { background: var(--bg-subtle); }
.section-dark {
  background: radial-gradient(120% 140% at 20% 0%, var(--green-800) 0%, var(--green-900) 60%, #081f13 100%);
  color: #eaf5ee;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #ffffff; }

.grid { display: grid; gap: var(--sp-6); }
.grid > * { min-width: 0; }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .g-2, .g-3, .g-4 { grid-template-columns: minmax(0, 1fr); } }

.split-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-7);
  align-items: center;
}
@media (max-width: 900px) { .split-2 { grid-template-columns: 1fr; } }

.products-grid { display: grid; gap: var(--sp-6); grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; } }

.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-5 { gap: var(--sp-5); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  border: 1px solid var(--green-400);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
}
.section-dark .eyebrow {
  color: var(--gold-400);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(28,149,79,0.25);
}
.eyebrow-text-short { display: none; }
@media (max-width: 400px) {
  .eyebrow-text-full { display: none; }
  .eyebrow-text-short { display: inline; }
}
@media (max-width: 640px) {
  .about-content { text-align: center; }
  .about-content .pill-list { justify-content: center; }
}

.section-head { max-width: 720px; margin-bottom: var(--sp-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 2.2vw, 2.15rem); margin-top: var(--sp-3); }
.section-head p { color: var(--ink-muted); font-size: 1rem; margin-top: var(--sp-3); }

.text-muted { color: var(--ink-muted); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --btn-bg: var(--green-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-standard),
              background var(--dur-base) var(--ease-standard);
  white-space: nowrap;
  min-height: 44px;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--green-600); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn-lg { padding: 14px 30px; font-size: 0.96rem; }
.btn-gold { --btn-bg: linear-gradient(135deg, var(--gold-500), var(--gold-600)); background: var(--btn-bg); color: #2a2005; }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--border-strong);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--green-050); border-color: var(--green-400); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard),
              padding var(--dur-base) var(--ease-standard);
  padding-block: var(--sp-3);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  padding-block: var(--sp-2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--green-900);
  flex-shrink: 0;
}
.brand-mark {
  height: 42px;
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 420px) { .brand-mark { height: 36px; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav-links a {
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-muted);
  padding-block: var(--sp-3);
  transition: color var(--dur-fast) var(--ease-standard);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-base) var(--ease-out-expo);
}
.nav-links a:hover { color: var(--green-800); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--green-800); }

.nav-cta { display: flex; align-items: center; gap: var(--sp-3); }
.nav-cta .btn {
  min-height: 40px;
  padding: 10px 20px;
  font-size: 0.88rem;
  line-height: 1.2;
}
.nav-phone {
  display: flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  color: var(--green-800);
}
.nav-phone svg { width: 18px; height: 18px; color: var(--green-600); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--green-900);
  transition: transform var(--dur-base) var(--ease-standard), opacity var(--dur-base);
}
.nav-toggle { flex-direction: column; gap: 5px; }
.nav-toggle span { position: relative; }

@media (max-width: 1180px) {
  .nav-links, .nav-cta .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  body.nav-open .nav-links {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    /* height (not bottom:0) because .site-header's backdrop-filter makes it
       the containing block for this fixed element — bottom:0 would resolve
       against the header's own height instead of the viewport. */
    height: calc(100vh - 72px);
    background: var(--white);
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-6) var(--sp-5);
    gap: var(--sp-2);
    z-index: 90;
    animation: navSlide var(--dur-base) var(--ease-out-expo);
  }
  body.nav-open .nav-links a { font-size: 1.1rem; width: 100%; padding-block: var(--sp-3); border-bottom: 1px solid var(--border); }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle span { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle::before { transform: translateY(7px) rotate(-45deg); }
  body.nav-open .nav-toggle::after { opacity: 0; }
  body.nav-open .mobile-nav-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-4);
    width: 100%;
    margin-top: var(--sp-4);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border);
  }
  body.nav-open .mobile-nav-cta .nav-phone { justify-content: center; font-size: 1rem; }
}
.mobile-nav-cta { display: none; }
@keyframes navSlide {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header overlay variant — sits transparently over a dark photo hero until scrolled */
.site-header.header-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.header-overlay.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header.header-overlay:not(.is-scrolled) .nav-links a,
.site-header.header-overlay:not(.is-scrolled) .nav-phone,
.site-header.header-overlay:not(.is-scrolled) .nav-phone svg {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}
.site-header.header-overlay:not(.is-scrolled) .nav-links a::after { background: #fff; }
.site-header.header-overlay:not(.is-scrolled) .brand-mark { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
/* The mobile dropdown panel is always a solid white sheet, regardless of scroll
   position, so its links must stay dark even while header-overlay is active. */
body.nav-open .site-header.header-overlay .nav-links a,
body.nav-open .site-header.header-overlay .mobile-nav-cta .nav-phone {
  color: var(--ink-muted);
  text-shadow: none;
}
body.nav-open .site-header.header-overlay .nav-links a::after { background: var(--green-600); }
body.nav-open .site-header.header-overlay .nav-links a.active,
body.nav-open .site-header.header-overlay .nav-links a:hover { color: var(--green-800); }
.site-header.header-overlay:not(.is-scrolled) .nav-toggle span,
.site-header.header-overlay:not(.is-scrolled) .nav-toggle::before,
.site-header.header-overlay:not(.is-scrolled) .nav-toggle::after {
  background: #fff;
}
body.nav-open .site-header.header-overlay { background: rgba(255,255,255,0.92); }
body.nav-open .site-header.header-overlay .nav-toggle span,
body.nav-open .site-header.header-overlay .nav-toggle::before,
body.nav-open .site-header.header-overlay .nav-toggle::after { background: var(--green-900); }

/* =========================================================
   Hero (dark photo variant)
   ========================================================= */
.hero-v2 {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
}
.hero-v2-media { position: absolute; inset: 0; }
.hero-v2-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.hero-v2::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(4,14,9,0.78) 0%, rgba(4,14,9,0.62) 32%, rgba(4,14,9,0.4) 50%, rgba(4,14,9,0.18) 68%, rgba(4,14,9,0.02) 86%),
    linear-gradient(0deg, rgba(4,18,11,0.45) 0%, transparent 42%);
}
.hero-v2::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 140px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4,18,11,0.6) 0%, transparent 100%);
}
.hero-v2-row {
  position: relative; z-index: 2;
  margin-top: auto;
}
.hero-v2-inner {
  padding-block: clamp(120px, 22vw, 180px) var(--sp-8);
  max-width: 640px;
}
.hero-v2 .eyebrow {
  color: #fff;
  background: rgba(4,18,11,0.45);
  border-color: rgba(255,255,255,0.3);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.hero-v2 .eyebrow .dot { background: var(--gold-400); box-shadow: 0 0 0 3px rgba(223,188,79,0.3); }
.hero-v2 h1 {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  margin-top: var(--sp-4);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-v2 h1 .hl { color: var(--green-400); }
.hero-v2-lede {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  max-width: 52ch;
  margin-top: var(--sp-4);
}
.btn-icon-circle {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn .btn-icon-circle svg { width: 10px; height: 10px; }

.hero-v2-trust {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-block: var(--sp-5);
}
.hero-v2-trust .trust-row { justify-content: space-between; }
.hero-v2-trust .trust-item { color: rgba(255,255,255,0.92); }
.hero-v2-trust .trust-ico { background: rgba(255,255,255,0.14); color: #fff; }
@media (max-width: 780px) {
  .hero-v2-trust .trust-row { justify-content: center; }
}

.hero-actions { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); flex-wrap: wrap; }

.media-frame { position: relative; }
.floating-chip {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border: 1px solid var(--border);
  animation: floaty 5s ease-in-out infinite;
}
.floating-chip.chip-a { bottom: 0; left: -24px; margin-bottom: -50px; }
.floating-chip.chip-b { top: -18px; right: -20px; animation-delay: 1.2s; }
.floating-chip .ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-chip .ico.ico-pink { background: var(--pink-100); color: var(--pink-600); }
.floating-chip .ico.ico-gold { background: var(--gold-100); color: var(--gold-700); }
.floating-chip b { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--green-900); }
.floating-chip span { font-size: 0.78rem; color: var(--ink-muted); }
@media (max-width: 640px) { .floating-chip { display: none; } }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Trust row (reused inside hero-v2-trust and standalone) */
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-7) var(--sp-8);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-800);
  font-size: 0.98rem;
  white-space: nowrap;
}
.trust-ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: trust-pulse 3.2s ease-in-out infinite;
}
.trust-item:nth-child(1) .trust-ico { animation-delay: 0s; }
.trust-item:nth-child(2) .trust-ico { animation-delay: 0.5s; }
.trust-item:nth-child(3) .trust-ico { animation-delay: 1s; }
.trust-item:nth-child(4) .trust-ico { animation-delay: 1.5s; }
@keyframes trust-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(28,122,66,0.28); }
  50% { box-shadow: 0 0 0 9px rgba(28,122,66,0); }
}
@media (max-width: 640px) {
  .trust-row { gap: var(--sp-4) var(--sp-6); }
  .trust-item { font-size: 0.88rem; }
  .trust-ico { width: 36px; height: 36px; }
}

/* =========================================================
   Bento grid
   ========================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.bento > * { min-width: 0; }
.bento.bento-2x2 { grid-template-columns: repeat(2, 1fr); }
.bento.bento-3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .bento.bento-3col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento.bento-3col, .bento.bento-2x2 { grid-template-columns: 1fr; } }
.bento-lg { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento-lg, .bento-wide { grid-column: span 1; }
}

.bento-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base), border-color var(--dur-base);
}
.bento-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.bento-tile b {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 6vw, 1.9rem);
}
.bento-tile span { color: var(--ink-muted); font-size: 0.9rem; display: block; margin-top: var(--sp-2); }
.bento-tile.bento-lg b { font-size: clamp(1.8rem, 7vw, 3.4rem); }
.bento-tile.bento-lg span { font-size: 1rem; max-width: 26ch; }
.bento-tile.accent-pink b { color: var(--pink-600); }
.bento-tile.accent-gold b { color: var(--gold-700); }

.bento-tile-row {
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: var(--sp-6);
}
.bento-tile-row .bento-ico {
  width: 68px; height: 68px;
  border-radius: var(--r-md);
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bento-tile-row .bento-ico svg { width: 32px; height: 32px; }
.bento-tile-row.accent-pink .bento-ico { background: var(--pink-100); color: var(--pink-600); }
.bento-tile-row.accent-gold .bento-ico { background: var(--gold-100); color: var(--gold-700); }
.bento-tile-row span { margin-top: var(--sp-1); }
@media (max-width: 480px) {
  .bento-tile-row { flex-direction: column; text-align: center; gap: var(--sp-4); }
  .bento-tile-row span { margin-top: var(--sp-2); }
}

/* Premium stat tile (icon + divider + serif number) */
.bento-tile-premium {
  background: var(--bg-subtle);
  border: none;
  border-radius: var(--r-lg);
  padding: var(--sp-7) var(--sp-5);
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base);
}
.bento-tile-premium:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.premium-ico {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.premium-ico svg { width: 32px; height: 32px; color: var(--green-700); }
.premium-divider {
  display: flex; align-items: center; gap: var(--sp-2);
  width: 100%; max-width: 140px;
  margin-bottom: var(--sp-5);
}
.premium-divider::before, .premium-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border-strong);
}
.premium-divider .diamond {
  width: 7px; height: 7px;
  background: var(--gold-500);
  transform: rotate(45deg);
  flex-shrink: 0;
  display: block;
}
.bento-tile-premium b {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 7vw, 2.75rem);
  color: var(--green-800);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: var(--sp-4);
}
.premium-label { color: var(--ink-muted); font-size: 1rem; line-height: 1.5; max-width: 22ch; }

/* Reason card (numbered content block with card treatment) */
.reason-card {
  background: var(--bg-subtle);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  box-shadow: var(--shadow-sm);
  margin-block: var(--sp-5);
}
.reason-card:first-child { margin-top: 0; }
.reason-card:last-child { margin-bottom: 0; }
.reason-divider {
  width: 64px; height: 3px;
  border-radius: var(--r-pill);
  background: var(--green-600);
  margin-block: var(--sp-4);
}
.reason-divider.accent-pink { background: var(--pink-600); }
.reason-divider.accent-gold { background: var(--gold-600); }

/* Horizontal stat bar (icon + divider + number + description) */
.stat-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
}
.stat-bar.accent-pink { background: var(--pink-050); border-color: var(--pink-100); }
.stat-bar.accent-gold { background: var(--gold-100); border-color: var(--gold-100); }
.stat-bar-ico {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: #fff;
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.stat-bar.accent-pink .stat-bar-ico { color: var(--pink-600); }
.stat-bar.accent-gold .stat-bar-ico { color: var(--gold-700); }
.stat-bar-div { width: 1px; align-self: stretch; background: var(--border-strong); flex-shrink: 0; }
.stat-bar b {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--green-800);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.stat-bar.accent-pink b { color: var(--pink-600); }
.stat-bar.accent-gold b { color: var(--gold-700); }
.stat-bar span { color: var(--ink-muted); font-size: 0.96rem; line-height: 1.5; flex: 1; min-width: 0; }
@media (max-width: 640px) {
  .stat-bar {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-3);
  }
  .stat-bar-div { display: none; }
  .stat-bar b { white-space: normal; font-size: clamp(1.6rem, 9vw, 2.2rem); }
}

/* Dark bento (stat band) */
.bento-dark .bento-tile {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.bento-dark .bento-tile:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.09); }
.bento-dark .bento-tile b { color: #fff; }
.bento-dark .bento-tile span { color: rgba(255,255,255,0.68); }
.bento-dark .bento-tile.bento-lg { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.16); }
.bento-dark .bento-tile.bento-lg b { color: var(--gold-400); }

/* =========================================================
   Numbered step-timeline
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px; left: 0; right: 0;
  height: 2px;
  background: var(--border-strong);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding-top: 76px;
}
.step-num {
  position: absolute;
  top: 0; left: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md), 0 0 0 6px var(--bg);
}
.step:nth-child(2) .step-num { background: var(--pink-600); }
.step:nth-child(3) .step-num { background: var(--gold-600); }
.step h3 { font-size: 1.15rem; margin-bottom: var(--sp-3); }
.step p { color: var(--ink-muted); font-size: 0.95rem; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: var(--sp-7); }
  .steps::before { top: 0; bottom: 0; left: 26px; right: auto; width: 2px; height: auto; }
  .step { padding-top: 0; padding-left: 76px; min-height: 52px; }
  .step-num { top: 0; left: 0; }
}

/* =========================================================
   Cards
   ========================================================= */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon.icon-pink { background: var(--pink-100); color: var(--pink-600); }
.card-icon.icon-gold { background: var(--gold-100); color: var(--gold-700); }
.card h3 { font-size: 1.15rem; margin-bottom: var(--sp-3); }
.card p { color: var(--ink-muted); font-size: 0.95rem; }

/* Stat cards */
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base), border-color var(--dur-base);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-400); }
.stat-card b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-card span { color: var(--ink-muted); font-size: 0.92rem; display: block; margin-top: var(--sp-3); line-height: 1.45; max-width: 26ch; }
.stat-card.accent-pink b { color: var(--pink-600); }
.stat-card.accent-pink:hover { border-color: var(--pink-400); }
.stat-card.accent-gold b { color: var(--gold-700); }
.stat-card.accent-gold:hover { border-color: var(--gold-400); }
.stat-card.stat-card-lg { padding: var(--sp-8) var(--sp-6); }
.stat-card.stat-card-lg .stat-card-ico {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.stat-card.stat-card-lg b { font-size: 2.75rem; }
.stat-card.stat-card-lg span { font-size: 1rem; max-width: 30ch; }

.feature-media-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 91, 50, 0.16);
  box-shadow: 0 18px 42px rgba(8, 40, 22, 0.11), 0 2px 5px rgba(8, 40, 22, 0.06);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base), border-color var(--dur-base);
  background: #fff;
}
.feature-media-card:hover { transform: translateY(-8px); border-color: rgba(28, 122, 66, 0.34); box-shadow: 0 26px 54px rgba(8, 40, 22, 0.16), 0 4px 10px rgba(8, 40, 22, 0.08); }
.feature-media-card .media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--green-900); flex-shrink: 0; }
.feature-media-card .media::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgba(4, 29, 15, 0.58)); pointer-events: none; }
.feature-media-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out-expo); }
.feature-media-card:hover .media img { transform: scale(1.045); }
.product-media-label { position: absolute; z-index: 1; left: var(--sp-4); bottom: var(--sp-4); display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px 8px 9px; border: 1px solid rgba(255,255,255,0.34); border-radius: var(--r-pill); background: rgba(5, 37, 18, 0.8); box-shadow: 0 8px 18px rgba(0,0,0,0.18); color: #fff; font-family: var(--font-head); font-size: 0.69rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; backdrop-filter: blur(8px); }
.product-media-label b { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-400); color: var(--green-900); font-size: 0.64rem; }
.feature-media-card .body { position: relative; display: flex; flex: 1; flex-direction: column; padding: 28px 32px 30px; background: linear-gradient(135deg, #fff 0%, #fbfdf9 62%, #f0f7ef 100%); }
.feature-media-card .body::before { content: ""; position: absolute; top: 0; left: 32px; right: 32px; height: 3px; border-radius: 0 0 3px 3px; background: linear-gradient(90deg, var(--gold-400), var(--green-500), transparent 78%); }
.product-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--green-600); font-family: var(--font-head); font-size: 0.71rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.product-num { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid rgba(28, 122, 66, 0.22); border-radius: 50%; background: #fff; color: var(--green-700); font-size: 0.67rem; }
.feature-media-card .body h3 { margin-bottom: 8px; color: var(--green-900); font-size: clamp(1.35rem, 2vw, 1.7rem); }
.feature-media-card .body p { color: #405348; font-size: 0.98rem; line-height: 1.72; }
.product-proof { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 20px; color: var(--green-800); font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; }
.product-proof::before { content: ""; flex: 1; max-width: 36px; height: 1px; background: var(--gold-400); }
.product-proof svg { width: 17px; height: 17px; color: var(--green-600); }


/* Category section (demographics) */
.cat-block { padding-block: var(--sp-7); border-top: 1px solid var(--border); }
.cat-head { display: flex; align-items: baseline; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.cat-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md), 0 0 0 6px var(--green-100);
}
.cat-num.num-pink { background: var(--pink-600); box-shadow: var(--shadow-md), 0 0 0 6px var(--pink-100); }
.cat-num.num-gold { background: var(--gold-600); box-shadow: var(--shadow-md), 0 0 0 6px var(--gold-100); }
.cat-head h3 { font-size: 1.5rem; }

/* Testimonial */
.testimonial-card {
  background: linear-gradient(160deg, #fff 0%, var(--green-050) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500), var(--pink-600));
}
.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--green-400);
  opacity: 0.35;
  position: absolute;
  top: var(--sp-4); left: var(--sp-5);
  line-height: 1;
}
.testimonial-card p.quote { font-size: 1.15rem; color: var(--ink); position: relative; z-index: 1; }
.testimonial-foot { display: flex; align-items: center; gap: var(--sp-4); margin-top: var(--sp-6); }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-foot b { display: block; font-family: var(--font-head); }
.testimonial-foot span { color: var(--ink-muted); font-size: 0.9rem; }
.stars { display: flex; gap: 2px; color: var(--gold-500); }
.stars svg { width: 18px; height: 18px; }

/* Video */
.video-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--green-900);
  cursor: pointer;
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.6s var(--ease-out-expo); }
.video-frame:hover img { transform: scale(1.04); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-base) var(--ease-spring);
}
.play-btn svg { width: 30px; height: 30px; color: var(--green-700); margin-left: 4px; }
.video-frame:hover .play-btn { transform: scale(1.1); }

/* CTA banner */
.cta-banner {
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  background: radial-gradient(120% 160% at 100% 0%, var(--green-600) 0%, var(--green-900) 70%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-banner::before {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 46%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.08) 40%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.15"/></svg>');
  opacity: 0.4;
  pointer-events: none;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); max-width: 30ch; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.82); margin-top: var(--sp-2); position: relative; }
.cta-actions { position: relative; display: flex; gap: var(--sp-3); flex-wrap: wrap; }

@media (max-width: 560px) {
  .cta-banner { padding: var(--sp-6) var(--sp-5); flex-direction: column; align-items: flex-start; }
  .cta-actions, .hero-actions {
    width: 100%;
    flex-wrap: nowrap;
  }
  .cta-actions .btn, .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: var(--sp-3);
    font-size: 0.82rem;
  }
  .cta-actions .btn svg, .hero-actions .btn svg { width: 15px; height: 15px; flex-shrink: 0; }
}

/* =========================================================
   Contact form (frame for the embedded GHL form)
   ========================================================= */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base);
}
.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-info-card .ico {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--green-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .ico.ico-pink { background: var(--pink-600); }
.contact-info-card .ico.ico-gold { background: var(--gold-600); }
.contact-info-card .ico svg { width: 22px; height: 22px; }
.contact-info-card .ico.ico-logo {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px;
}
.contact-info-card .ico.ico-blue { background: #fff; border: 1px solid var(--border); color: #1877f2; }
.contact-info-card .ico.ico-logo img { width: 100%; height: 100%; object-fit: contain; }
.contact-info-card h4 { font-family: var(--font-head); margin-bottom: var(--sp-1); }
.contact-info-card p, .contact-info-card a { color: var(--ink-muted); font-size: 0.94rem; }
.contact-info-card a:hover { color: var(--green-700); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.78);
  padding-block: var(--sp-9) var(--sp-6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-4); }
.footer-brand-mark { display: flex; }
.footer-brand-mark img { height: 42px; width: auto; display: block; }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 34ch;
}
.footer-col h4 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: var(--sp-4);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
}
.footer-nav a {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--dur-fast);
}
.footer-nav a:hover { color: #fff; }
.footer-contact-compact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-contact-compact a, .footer-contact-compact span {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--dur-fast);
}
.footer-contact-compact svg { width: 15px; height: 15px; color: var(--green-400); flex-shrink: 0; }
.footer-contact-compact a:hover { color: #fff; }
.footer-social { display: flex; gap: var(--sp-3); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast), transform var(--dur-base) var(--ease-spring);
}
.footer-social a:hover { background: var(--green-600); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
.footer-bottom {
  padding-top: var(--sp-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .site-footer { padding-block: var(--sp-7) var(--sp-5); }
  .footer-top { grid-template-columns: 1fr; text-align: center; gap: var(--sp-6); }
  .footer-brand { align-items: center; grid-column: auto; }
  .footer-desc { max-width: 38ch; }
  .footer-nav { align-items: center; }
  .footer-contact-compact { align-items: center; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-block: var(--sp-4);
  }
}

/* Back to top */
.to-top {
  position: fixed;
  bottom: var(--sp-5); right: var(--sp-5);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--dur-base), transform var(--dur-base) var(--ease-spring), visibility var(--dur-base);
  z-index: 80;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--green-600); }
.to-top svg { width: 20px; height: 20px; transform: rotate(-90deg); }

/* Page hero (interior pages) */
.page-hero {
  padding-block: var(--sp-7) var(--sp-6);
  background: linear-gradient(180deg, var(--green-050) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}
.breadcrumb { display: flex; align-items: center; gap: var(--sp-2); font-size: 0.85rem; color: var(--ink-muted); margin-bottom: var(--sp-4); }
.breadcrumb a:hover { color: var(--green-700); }
.page-hero h1 { font-size: clamp(1.75rem, 2.8vw, 2.5rem); }
.page-hero p { color: var(--ink-muted); font-size: 1rem; max-width: 60ch; margin-top: var(--sp-4); }

/* Accordion */
.accordion-shell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding-inline: var(--sp-6);
}
.accordion-shell .accordion-item:last-child { border-bottom: none; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--sp-5);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  text-align: left;
  color: var(--green-900);
}
.accordion-trigger .plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: var(--sp-4);
  transition: transform var(--dur-base) var(--ease-standard);
}
.accordion-trigger .plus svg { width: 16px; height: 16px; flex-shrink: 0; }
.accordion-item.open .accordion-trigger .plus { transform: rotate(45deg); background: var(--green-700); color: #fff; }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out-expo);
}
.accordion-panel-inner { padding-bottom: var(--sp-5); color: var(--ink-muted); max-width: 68ch; }

/* Pull quote */
.pull-quote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--green-900);
  border-left: 4px solid var(--gold-500);
  padding-left: var(--sp-5);
  max-width: 68ch;
  margin-block: var(--sp-6);
}

/* Reveal-on-scroll (Framer-style enter animation) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* Badge / pill list used in why-golfers etc */
.pill-list { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 600;
  font-size: 0.88rem;
}
.pill svg { width: 16px; height: 16px; }

/* About section: original split layout on desktop, redesigned centered layout on mobile only */
.about-mobile { display: none; }
@media (max-width: 640px) {
  .about-desktop { display: none; }
  .about-mobile { display: block; }
}

/* About section v2 (centered, flag divider, feature list) */
.about-v2 {
  background: radial-gradient(120% 100% at 50% 100%, var(--green-050) 0%, transparent 60%);
}
.about-divider {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-3);
  max-width: 220px;
  margin-inline: auto;
}
.about-divider::before, .about-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border-strong);
}
.about-divider svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; }

.about-feature-list { display: flex; flex-direction: column; gap: var(--sp-4); text-align: left; }
.about-feature-card {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
}
.about-feature-ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-feature-ico svg { width: 24px; height: 24px; }
.about-feature-div { width: 1px; align-self: stretch; background: var(--border-strong); flex-shrink: 0; }
.about-feature-card b { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.about-feature-card span { color: var(--ink-muted); font-size: 0.92rem; display: block; margin-top: var(--sp-1); }
@media (max-width: 560px) {
  .about-feature-card { flex-wrap: wrap; text-align: center; justify-content: center; }
  .about-feature-div { display: none; }
}

/* Utility */
.mt-2{margin-top:var(--sp-2)}.mt-3{margin-top:var(--sp-3)}.mt-4{margin-top:var(--sp-4)}
.mt-5{margin-top:var(--sp-5)}.mt-6{margin-top:var(--sp-6)}.mt-7{margin-top:var(--sp-7)}
.mb-2{margin-bottom:var(--sp-2)}.mb-3{margin-bottom:var(--sp-3)}.mb-4{margin-bottom:var(--sp-4)}
.mb-5{margin-bottom:var(--sp-5)}.mb-6{margin-bottom:var(--sp-6)}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green-800); color: #fff;
  padding: var(--sp-3) var(--sp-5); z-index: 200; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* =========================================================
   Compact layouts
   ========================================================= */
@media (max-width: 640px) {
  .section { padding-block: var(--sp-6); }
  .section-head { margin-bottom: var(--sp-6); }

  .hero-v2 { min-height: 560px; }
  .hero-v2-inner { padding-block: 110px var(--sp-6); max-width: none; }
  .hero-v2 h1 { font-size: clamp(1.9rem, 8.5vw, 2.35rem); }
  .hero-v2-lede { font-size: 1rem; }
  .hero-v2-trust .trust-row { gap: var(--sp-4) var(--sp-5); }
  .hero-v2-trust .trust-item span { display: none; }

  .page-hero { padding-block: var(--sp-6) var(--sp-5); }
  .page-hero p { font-size: 1rem; }
  .cat-block { padding-block: var(--sp-6); }
  .cat-head { align-items: flex-start; gap: var(--sp-3); margin-bottom: var(--sp-5); }
  .cat-head h3 { font-size: 1.3rem; }
  .cat-num { width: 42px; height: 42px; box-shadow: var(--shadow-sm); }
  .card { padding: var(--sp-5); }
  .feature-media-card .body { padding: var(--sp-4); }
  .testimonial-card { padding: var(--sp-6); }
  .play-btn { width: 68px; height: 68px; }
  .to-top { bottom: var(--sp-4); right: var(--sp-4); }

  /* Prevent delayed reveal effects from looking like missing content on phones. */
  .reveal, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 380px) {
  .cta-actions, .hero-actions { flex-direction: column; }
  .cta-actions .btn, .hero-actions .btn { width: 100%; }
}
