/* =============================================================
   Peak State Golf — Website UI Kit styles
   Layer on top of colors_and_type.css
   ============================================================= */
@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg1);
  color: var(--fg1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

/* ── HERO NARRATIVE OVERLAY ── */
.hero__narrative {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero__narrative-statement {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 800px;
  opacity: 0;
}
.hero__narrative-line1 {
  font-family: var(--font-heading);
  font-size: clamp(2.625rem, 5.625vw, 4.5rem);
  font-weight: 600;
  color: #f0ede6;
  line-height: 1.3;
  margin: 0 0 0.3em;
  opacity: 0;
}
.hero__narrative-line2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(3rem, 6.5625vw, 5.25rem);
  font-weight: 700;
  color: #C9A84C;
  line-height: 1.2;
  margin: 0;
  opacity: 0;
}



/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
  z-index: 2;
}
.section--mid { background: var(--bg2); }
.section--deep { background: var(--bg1); }

/* ---------- NAV ---------- */
.psg-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 42px 0;
  transition: background var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.psg-nav.is-scrolled {
  background: rgba(7, 26, 14, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--psg-border-mid);
}
.psg-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.psg-nav__logo {
  display: flex; align-items: center; gap: 21px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: 0.01em;
  color: var(--fg1);
  text-decoration: none;
  border: 0;
}
.psg-nav__logo img { height: 108px; width: auto; }
.psg-nav__brand-text { display: flex; flex-direction: column; }
.psg-nav__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--fg-accent);
  margin-top: 2px;
  line-height: 1;
}
.psg-nav__links {
  display: flex; align-items: center; gap: 30px;
}
.psg-nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  /* Default = brighter (the "go here" invitation).
     Active = muted (you're already here, no need to shout). */
  color: var(--fg1);
  text-decoration: none;
  border: 0;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: none;
  padding: 4px 0;
  transition: color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.psg-nav__link:hover { color: var(--psg-color-gold-light); }
.psg-nav__link.is-active {
  color: var(--fg3);
  cursor: default;
}
.psg-nav__link.is-active:hover { color: var(--fg3); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn--primary {
  background: var(--psg-color-gold);
  color: var(--bg1);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.25), 0 8px 24px rgba(201,168,76,0.18);
}
.btn--primary:hover {
  background: var(--psg-color-gold-light);
  box-shadow: var(--shadow-gold-hi);
}
.btn--primary:active { transform: translateY(1px); }
.btn--ghost {
  background: transparent;
  color: var(--fg1);
  border: 1px solid rgba(240,237,230,0.22);
}
.btn--ghost:hover { border-color: rgba(240,237,230,0.45); background: rgba(240,237,230,0.04); }
.btn--text {
  background: transparent;
  color: var(--fg-accent);
  padding: 8px 0;
  font-weight: 500;
}
.btn--text:hover { color: var(--psg-color-gold-light); }
.btn--lg { padding: 16px 34px; font-size: 15px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,26,14,0.35) 0%, rgba(7,26,14,0.55) 50%, rgba(7,26,14,0.96) 100%),
    linear-gradient(90deg, rgba(7,26,14,0.6) 0%, rgba(7,26,14,0) 60%);
}
.hero__content { padding-top: 140px; padding-bottom: 80px; max-width: 820px; }
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-accent);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--psg-color-gold); opacity: 0.6;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.5vw + 1rem, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg1);
  margin: 0;
}
.hero h1 em { font-style: italic; color: var(--fg-accent); font-weight: 700; }
.hero h1 .word { display: inline-block; }
.hero__sub {
  margin-top: 22px;
  font-size: 22.5px;
  line-height: 1.5;
  color: var(--fg2);
  max-width: 620px;
}
.hero__support {
  margin-top: 16px;
  font-size: 17.44px;
  line-height: 1.6;
  color: #e0e8dc;
  max-width: 600px;
}
.hero__cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- HERO STATIC ELEMENTS ---------- */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--fg3);
  opacity: 0.6;
  z-index: 2;
}

/* ---------- SECTION HEADER ---------- */
.sec-head { max-width: 760px; margin-bottom: 16px; }
.sec-head__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-accent);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 11px;
}
.sec-head__eyebrow::before { content:""; width:24px;height:1px;background:var(--psg-color-gold);opacity:.6; }
.sec-head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg1);
  margin: 0;
}
.sec-head h2 em { font-style: italic; color: var(--fg-accent); }
.sec-head p {
  margin-top: 32px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg2);
  max-width: 580px;
}

/* ---------- PAIN POINTS ---------- */
.pain-list { display: grid; gap: 36px; margin-top: 40px; }
.pain {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--psg-border-mid);
}
.pain:first-child { border-top: 0; padding-top: 0; }
.pain__num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 64px;
  line-height: 0.85;
  color: var(--fg-accent);
}
.pain__bullet {
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background: var(--fg-accent);
  margin-top: 6px;
}
.pain__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg1);
  line-height: 1.45;
}
.pain__body {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg2);
  max-width: 660px;
}
.pain-close {
  margin-top: 56px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  line-height: 1.25;
  color: var(--fg1);
  border-left: 2px solid var(--psg-color-gold);
  padding-left: 24px;
  max-width: 620px;
}

/* ---------- SYSTEM TOOLS ---------- */
.tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 900px) { .tools { grid-template-columns: 1fr; } }
.tool-card {
  background: var(--bg3);
  border: 1px solid var(--psg-border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card), var(--shadow-inset);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.tool-card:hover {
  border-color: var(--psg-border-strong);
  box-shadow: var(--shadow-card-hi), var(--shadow-inset);
  transform: translateY(-2px);
}
.tool-card__icon { color: var(--fg-accent); margin-bottom: 22px; }
.tool-card__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-accent);
  margin-bottom: 10px;
}
.tool-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg1);
  margin: 0 0 7px;
}
.tool-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg2);
}

.tools-coda {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.625rem);
  line-height: 1.4;
  color: var(--fg2);
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}

/* ---------- WADE'S STORY ---------- */
.wade { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .wade { grid-template-columns: 1fr; gap: 32px; } }
.wade__visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(15,79,44,0.49) 0%, rgba(7,26,14,0.7) 100%), url('assets/course.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--psg-border-gold);
  box-shadow: var(--shadow-card-hi);
  position: relative;
  overflow: hidden;
}
.wade__sigil {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  display: flex; align-items: flex-end; gap: 16px;
}
.wade__sigil img { height: 84px; width: auto; }
.wade__sigil-meta {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-accent);
}
.wade__sigil-meta strong { display: block; color: var(--fg1); font-family: var(--font-heading); font-size: 22px; letter-spacing: 0; text-transform: none; font-weight: 600; margin-top: 4px; }
.wade h2 em { font-style: italic; color: var(--fg-accent); }
.wade__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg2);
  margin: 18px 0 0;
}
.wade__body p:first-child { margin-top: 28px; }

/* ---------- TESTIMONIALS ---------- */
.tests { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
@media (max-width: 900px) { .tests { grid-template-columns: 1fr; } }
.test-card {
  background: var(--bg3);
  border: 1px solid var(--psg-border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card), var(--shadow-inset);
  display: flex; flex-direction: column;
  position: relative;
}
.test-card__quote-mark {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 84px;
  line-height: 0.6;
  color: var(--psg-color-gold);
  opacity: 0.35;
  margin-bottom: 8px;
}
.test-card__body { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.test-card__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg1);
  margin: 0;
}
.test-card__quote--cont { color: var(--fg2); }

.test-card__toggle {
  margin-top: 18px;
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 6px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--dur-fast) var(--ease-out);
}
.test-card__toggle:hover { color: var(--psg-color-gold-light); }
.test-card__toggle-arrow {
  display: inline-flex;
  width: 18px; height: 18px;
  align-items: center; justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--psg-border-strong);
  font-size: 11px;
  line-height: 1;
}
.test-card__toggle:hover .test-card__toggle-arrow { border-color: var(--psg-color-gold-light); }

.test-card__hcap {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg-accent);
  margin-left: 6px;
}

/* When a card is open, give it a touch more breathing room and let its
   grid cell auto-grow. Grid `align-items: start` keeps siblings tight. */
.tests, .tests-grid { align-items: start; }
.test-card.is-open { box-shadow: var(--shadow-card-hi), var(--shadow-inset); }
.test-card__meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--psg-border-mid);
  display: flex; align-items: center; gap: 12px;
}
.test-card__avatar {
  width: 38px; height: 38px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--psg-color-elite), var(--psg-color-pro));
  border: 1px solid var(--psg-border-strong);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600;
  color: var(--fg-accent); font-size: 14px;
}
.test-card__name {
  font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--fg1);
}
.test-card__handicap { font-family: var(--font-body); font-size: 12px; color: #a8b8a0; letter-spacing: 0.04em; }

/* ---------- TIER CARDS ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: var(--bg3);
  border: 1px solid var(--psg-border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-card), var(--shadow-inset);
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  position: relative;
}
.tier.is-active, .tier:hover {
  border-color: var(--psg-border-strong);
  box-shadow: var(--shadow-card-hi), var(--shadow-inset);
  transform: translateY(-2px);
}
.tier__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 9999px;
  background: rgba(7,26,14,0.5);
  border: 1px solid var(--psg-border-mid);
  width: max-content;
}
.tier__badge-dot { width: 8px; height: 8px; border-radius: 9999px; display: inline-block; }
.tier--free  .tier__badge { color: #5fb37e; border-color: rgba(61,143,96,0.4); }
.tier--free  .tier__badge-dot { background: var(--psg-color-free); }
.tier--pro   .tier__badge { color: var(--fg-accent); border-color: rgba(27,107,58,0.55); }
.tier--pro   .tier__badge-dot { background: var(--psg-color-pro); box-shadow: inset 0 0 0 1px var(--psg-color-free); }
.tier--elite .tier__badge { color: var(--fg-accent); border-color: rgba(201,168,76,0.45); background: rgba(15,79,44,0.45); }
.tier--elite .tier__badge-dot { background: var(--psg-color-elite); box-shadow: inset 0 0 0 1px var(--psg-color-gold); }
.tier__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  color: var(--fg1);
  margin: 20px 0 5px;
}
.tier__name em { font-style: italic; color: var(--fg-accent); }
.tier__pitch {
  font-size: 15px; line-height: 1.6; color: var(--fg2);
  flex: 1;
}
.tier__cta { margin-top: 26px; }
.tier__cta .btn { width: 100%; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--psg-border-mid);
}
.final-cta__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.final-cta__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,26,14,0.85) 0%, rgba(7,26,14,0.97) 100%);
}
.final-cta__content { max-width: 820px; margin: 0 auto; text-align: center; }
.final-cta h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg1);
  margin: 0;
}
.final-cta__subhead {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.625rem);
  color: var(--fg-accent);
  margin-top: 18px;
}
.final-cta__body { margin-top: 26px; font-size: 17px; line-height: 1.65; color: var(--fg2); }
.final-cta__cta { margin-top: 38px; }
.final-cta__micro { margin-top: 18px; font-size: 13px; color: var(--fg3); letter-spacing: 0.04em; }

/* ---------- FOOTER ---------- */
.footer { padding: 48px 0 56px; border-top: 1px solid var(--psg-border-mid); background: var(--bg1); position: relative; z-index: 2; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand img { height: 36px; }
.footer__brand-text { font-family: var(--font-heading); font-weight: 600; color: var(--fg2); }
.footer__links { display: flex; gap: 24px; }
.footer__link {
  font-family: var(--font-body);
  font-size: 13px; color: #a8b8a0; text-decoration: none; border: 0;
  letter-spacing: 0.02em;
  transition: color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.footer__link:hover { color: var(--fg-accent); }
.footer__link.is-active {
  opacity: 0.45;
  cursor: default;
}
.footer__link.is-active:hover { color: var(--fg3); }
.footer__copy { font-family: var(--font-body); font-size: 12px; color: var(--fg3); letter-spacing: 0.04em; }

/* ---------- VARIANT SWITCHER (retired — variant A locked) ---------- */
/* The .psg-switcher block was removed from the UI on 2026-05-23 once
   Playfair Display was chosen as the production heading. CSS kept
   intentionally empty here for the historical record. */

/* Heading variants — A (Playfair Display) is locked as the brand's
   primary; tokens stay defined so dev-mode previews can experiment
   without changing the production setting. */
html { /* default = variant A, no attribute required */ }

/* ---------- ABOUT PAGE ---------- */
.about-section { padding-top: clamp(3.5rem, 6vw, 6rem); padding-bottom: clamp(3.5rem, 6vw, 6rem); }
.about-narrow { max-width: 720px; margin: 0 auto; }
.about-lede {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2rem);
  line-height: 1.35;
  color: var(--fg1);
}
.about-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg2);
  margin: 0 0 1.1em;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--fg1); }

/* Pullquote — used for the Trevino quote + the "Belief..." closing lines */
.pullquote {
  position: relative;
  padding: 14px 0 14px 36px;
  margin: 36px 0;
  border-left: 2px solid var(--psg-color-gold);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2.125rem);
  line-height: 1.3;
  color: var(--fg1);
}
.pullquote--center {
  border-left: 0;
  padding: 0;
  text-align: center;
  font-size: clamp(1.625rem, 2vw + 0.5rem, 2.375rem);
  color: var(--fg-accent);
  max-width: 760px;
  margin: 56px auto;
}
.pullquote__attr {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-accent);
}

/* Handicap progression chart — the showpiece of the page */
.hcap-chart {
  margin-top: 56px;
  background: var(--bg3);
  border: 1px solid var(--psg-border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-card), var(--shadow-inset);
  position: relative;
}
.hcap-chart__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px;
  flex-wrap: wrap; gap: 14px;
}
.hcap-chart__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-accent);
}
.hcap-chart__legend {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg3);
  letter-spacing: 0.04em;
}
.hcap-chart__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 18px);
  align-items: end;
  min-height: 280px;
  position: relative;
}
.hcap-col {
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 280px;
  position: relative;
}
.hcap-col__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw + 0.5rem, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg1);
  margin-bottom: 14px;
  transition: color var(--dur-base) var(--ease-out);
}
.hcap-col:nth-child(4) .hcap-col__value { color: var(--fg-accent); }
.hcap-col__bar {
  width: 100%;
  background: linear-gradient(180deg, rgba(201,168,76,0.55) 0%, rgba(201,168,76,0.18) 100%);
  border: 1px solid var(--psg-border-gold);
  border-radius: 8px 8px 0 0;
  position: relative;
}
.hcap-col:nth-child(4) .hcap-col__bar {
  background: linear-gradient(180deg, var(--psg-color-gold) 0%, rgba(201,168,76,0.4) 100%);
  border-color: var(--psg-border-strong);
  box-shadow: 0 0 24px rgba(201,168,76,0.25);
}
.hcap-col__year {
  margin-top: 18px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg2);
}
.hcap-chart__caption {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--psg-border-mid);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hcap-chart__caption div {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg2);
}
.hcap-chart__caption strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-accent);
  margin-bottom: 6px;
}
@media (max-width: 700px) {
  .hcap-chart__caption { grid-template-columns: 1fr; gap: 14px; }
  .hcap-col__value { font-size: 2.25rem; }
  .hcap-col__year { font-size: 10.5px; }
}

/* About — section eyebrow + heading, slightly tighter than home */
.about-section .sec-head { margin-bottom: 16px; }
.about-section .sec-head h2 { font-size: clamp(1.75rem, 2.5vw + 0.75rem, 2.5rem); }
.about-section--final h2 {
  font-size: clamp(1.875rem, 2vw + 1rem, 2.75rem);
  line-height: 1.2;
}

/* CTA banner at end of About */
.about-cta {
  margin-top: 48px;
  text-align: center;
}

/* ---------- TESTIMONIALS PAGE ---------- */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 12px;
}
@media (max-width: 760px) { .tests-grid { grid-template-columns: 1fr; } }
.tests-grid .test-card {
  background: var(--bg3);
  border: 1px solid var(--psg-border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card), var(--shadow-inset);
}
.tests-coming {
  margin-top: 48px;
  padding: 28px 32px;
  border: 1px dashed var(--psg-border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--fg3);
}
.tests-coming strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-accent);
  margin-bottom: 6px;
}

/* ---------- THE SYSTEM PAGE ---------- */
.system-tool__head { max-width: 760px; margin: 0 auto 16px; text-align: center; }
.system-tool__head .sec-head__eyebrow { justify-content: center; }
.system-tool__head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg1);
  margin: 0;
}
.system-tool__head h2 em { font-style: italic; color: var(--fg-accent); }
.system-tool__head p {
  margin-top: 11px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg2);
}
.system-tool__body { margin-top: 16px; }

.wheel-wrap { margin: 36px auto 0; max-width: 720px; display: flex; justify-content: center; overflow: visible; }
.wheel-svg { width: 100%; height: auto; filter: drop-shadow(0 12px 36px rgba(0,0,0,0.45)); }

.skill-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--psg-border-gold);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card), var(--shadow-inset);
}
@media (max-width: 760px) { .skill-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .skill-grid { grid-template-columns: 1fr; } }
.skill-grid__cell {
  display: flex; align-items: baseline; gap: 14px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--psg-border-mid);
}
.skill-grid__num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: var(--fg-accent);
  min-width: 26px;
}
.skill-grid__name {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--fg1);
  letter-spacing: 0.01em;
}

.slope {
  background: var(--bg3);
  border: 1px solid var(--psg-border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card), var(--shadow-inset);
}
.slope__head { max-width: 640px; margin-bottom: 19px; }
.slope__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg1);
  margin: 0;
}
.slope__title em { font-style: italic; color: var(--fg-accent); }
.slope__intro {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg2);
}
.slope__rows { display: flex; flex-direction: column; gap: 12px; }
.slope__row {
  display: grid;
  grid-template-columns: 220px 1fr 70px;
  gap: 18px;
  align-items: center;
  padding: 10px 0;
}
@media (max-width: 700px) {
  .slope__row { grid-template-columns: 1fr 60px; }
  .slope__row-label { grid-column: 1 / -1; font-weight: 500; }
}
.slope__row-label { font-family: var(--font-body); font-size: 14px; color: var(--fg1); letter-spacing: 0.02em; }
.slope__row-bar {
  height: 8px;
  background: rgba(240, 237, 230, 0.06);
  border-radius: 9999px;
  overflow: hidden;
}
.slope__row-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(201,168,76,0.4), var(--psg-color-gold));
  border-radius: 9999px;
}
.slope__row-tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-accent);
  text-align: right;
}

.together-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}
@media (max-width: 900px) { .together-grid { grid-template-columns: 1fr; } }
.together-card {
  background: var(--bg3);
  border: 1px solid var(--psg-border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card), var(--shadow-inset);
}
.together-card__num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  color: var(--fg-accent);
  margin-bottom: 18px;
}
.together-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--fg1);
  margin-bottom: 4px;
}
.together-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg2);
  margin: 0;
}

.faq-list { max-width: 820px; margin: 0 auto; }
.faq { border-top: 1px solid var(--psg-border-mid); }
.faq:last-child { border-bottom: 1px solid var(--psg-border-mid); }
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  color: var(--fg1);
  cursor: pointer;
  text-align: left;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq__q:hover { color: var(--fg-accent); }
.faq__sign {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 9999px;
  border: 1px solid var(--psg-border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-accent);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1;
}
.faq.is-open .faq__sign { background: rgba(201, 168, 76, 0.12); }
.faq__a {
  padding: 0 60px 24px 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg2);
}

/* ---------- CONTACT PAGE ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-form {
  background: var(--bg3);
  border: 1px solid var(--psg-border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: var(--shadow-card), var(--shadow-inset);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .contact-form__row { grid-template-columns: 1fr; } }

.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-field__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-accent);
}
.contact-field__opt {
  color: var(--fg3);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  font-size: 11.5px;
}
.contact-field__input {
  background: var(--bg2);
  border: 1px solid var(--psg-border-gold);
  color: var(--fg1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  width: 100%;
}
.contact-field__input::placeholder { color: var(--fg3); }
.contact-field__input:focus {
  border-color: var(--psg-border-strong);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
.contact-field__textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.contact-field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.contact-form__submit { margin-top: 8px; }
.contact-form__submit .btn { width: 100%; }

.contact-aside {
  background: var(--bg2);
  border: 1px solid var(--psg-border-mid);
  border-radius: var(--radius-xl);
  padding: 32px;
  align-self: start;
}
.contact-aside__body {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.4;
  color: var(--fg1);
  margin: 14px 0 0;
}
.contact-aside__body em { color: var(--fg-accent); font-style: italic; }
.contact-aside__divider {
  height: 1px;
  background: var(--psg-border-mid);
  margin: 28px 0;
}
.contact-aside__meta-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-accent);
  margin-bottom: 10px;
}
.contact-aside__meta p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg2);
  margin: 0;
}

/* ---------- BLOG PAGE ---------- */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 56px 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--psg-border-mid);
}
.blog-chip {
  background: transparent;
  border: 1px solid var(--psg-border-mid);
  color: var(--fg2);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 9px 16px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.blog-chip:hover { border-color: var(--psg-border-strong); color: var(--fg1); }
.blog-chip.is-active {
  background: var(--psg-color-gold);
  border-color: var(--psg-color-gold);
  color: var(--bg1);
  font-weight: 600;
}

.blog-empty {
  margin-top: 12px;
  padding: clamp(48px, 8vw, 96px) clamp(28px, 5vw, 64px);
  background: var(--bg3);
  border: 1px dashed var(--psg-border-strong);
  border-radius: var(--radius-xl);
  text-align: center;
}
.blog-empty__inner { max-width: 560px; margin: 0 auto; }
.blog-empty__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 2vw + 1rem, 2.75rem);
  line-height: 1.15;
  color: var(--fg-accent);
  margin: 0;
}
.blog-empty__body {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg2);
}
*/

/* Page-content offset for fixed nav */
.page { padding-top: 0; }

/* Sub-page transitions */
.page-frame { min-height: 100vh; }

.psg-nav__link--home { display: none; }

/* ── MOBILE HAMBURGER NAV ── */
.psg-nav__hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 10000;
  color: var(--fg1);
}
.psg-nav__hamburger svg { display: block; }

@media (max-width: 760px) {
  .psg-nav { padding: 18px 0; }
  .psg-nav__logo img { height: 54px; }
  .psg-nav__brand-text { font-size: 1.5rem; }
  .psg-nav__tagline { font-size: 12px; }

  .psg-nav__hamburger { display: block; }
  .psg-nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: rgba(7, 26, 14, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 80px 24px 40px;
    overflow-y: auto;
  }
  .psg-nav__links.is-open {
    display: flex;
  }
  .psg-nav__link--home { display: block; }
  .psg-nav__link {
    font-size: 22px;
    font-weight: 500;
    padding: 18px 0;
    color: var(--fg1);
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--psg-border-mid);
  }
  .psg-nav__link:first-child { border-top: 1px solid var(--psg-border-mid); }
  .psg-nav__links .btn {
    margin-top: 28px;
    width: 100%;
    max-width: 280px;
    font-size: 15px;
    padding: 16px 28px;
  }

  /* ── HERO MOBILE ── */
  .hero__content { padding-top: 100px; padding-bottom: 60px; }
  .hero--sub { min-height: auto !important; height: auto; }
  .hero--sub .hero__content { padding-top: 100px !important; padding-bottom: 48px !important; }
  .hero__sub { font-size: 17px; }
  .hero h1 { font-size: clamp(1.75rem, 6vw + 0.5rem, 2.8rem); }

  /* ── NARRATIVE MOBILE ── */
  .hero__narrative-line1 {
    font-size: clamp(2.056rem, 7.475vw, 3.364rem);
  }
  .hero__narrative-line2 {
    font-size: clamp(2.43rem, 8.97vw, 4.111rem);
  }
  .hero__narrative-statement {
    width: 90%;
  }

  /* ── PAIN POINTS MOBILE ── */
  .pain-list {
    margin-top: 40px;
    padding: 0 24px;
    gap: 24px;
  }
  .pain {
    grid-template-columns: 12px 1fr;
    gap: 6px;
  }
  .pain__bullet {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 5px;
  }
  .pain__title { font-size: 13px; letter-spacing: 0.1em; }
  .pain__body { font-size: 15px; }

  .tools-coda { color: #d8e8d0; }

  /* ── WADE IMAGE MOBILE ── */
  .wade__visual {
    background-image: linear-gradient(180deg, rgba(15,79,44,0.2) 0%, rgba(7,26,14,0.55) 100%), url('assets/sunsetgolfer.png') !important;
  }

  /* ── FOOTER MOBILE ── */
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}
