/* ============================================================
   KVF+ — Kareem Vance Fitness
   Full interactive rebuild — matched to AI mockup
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- Tokens ---------- */
:root {
  --gold:   #C8A84B;
  --gold-h: #b8963e;
  --dark:   #111111;
  --green:  #1e4d2b;
  --green-check: #2d8a40;
  --white:  #ffffff;
  --gray:   #f4f4f2;
  --hdr-h:  74px;
}


/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--dark);
  height: var(--hdr-h);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body { padding-top: var(--hdr-h); }

.hdr-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-svg { width: 110px; height: 44px; flex-shrink: 0; }
.logo-words { display: flex; flex-direction: column; gap: 0; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
}
.logo-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: #888;
}

/* Desktop Nav */
.nav { flex: 1; display: flex; justify-content: center; }
.nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
  padding: 8px 11px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color 0.18s;
}
.nav-a svg { width: 9px; height: 9px; }
.nav-a:hover { color: #fff; }
.nav-a.active {
  color: var(--gold);
}
.nav-a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Header CTA */
.hdr-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.18s;
  border: none;
}
.hdr-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.hdr-btn:hover { background: var(--gold-h); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  margin-left: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mob-nav {
  display: none;
  position: fixed;
  top: var(--hdr-h);
  left: 0; right: 0;
  background: #111;
  border-bottom: 2px solid var(--gold);
  z-index: 299;
  padding: 16px 24px 24px;
}
.mob-nav.open { display: block; }
.mob-nav ul { display: flex; flex-direction: column; }
.mob-nav li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ccc;
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid #222;
}
.mob-nav li a:hover { color: #fff; }
.mob-cta { width: 100%; margin-top: 16px; padding: 14px; font-size: 0.95rem; justify-content: center; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 510px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: #050505;
  isolation: isolate;
}

/* Photo background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('kvf-hero-wide.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Subtle gradient to darken the very bottom edge for green bar contrast */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(5,5,5,0.25) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Left content */
.hero-left { max-width: 530px; flex-shrink: 0; }

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.wh { color: #fff; }
.gd  { color: var(--gold); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin-bottom: 26px;
  max-width: 420px;
}

/* Pillars */
.pillars {
  display: flex;
  gap: 22px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
}
.p-ico {
  width: 28px; height: 28px;
  flex-shrink: 0;
  stroke: var(--gold);
  margin-top: 1px;
}
.pillar div { display: flex; flex-direction: column; gap: 1px; }
.pillar b {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.87rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
.pillar s {
  text-decoration: none;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.5);
}

/* Hero CTA buttons */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.87rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
}
.btn-gold svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-gold:hover { background: var(--gold-h); transform: translateY(-1px); }
.btn-gold:active { transform: translateY(0); }

.btn-outline-w {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.87rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: border-color 0.18s, background 0.18s, transform 0.12s;
}
.btn-outline-w svg { width: 17px; height: 17px; }
.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-1px); }

/* Right side */
.hero-right {
  position: absolute;
  right: 28px;
  top: 8px;
  bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 215px;
  z-index: 3;
  pointer-events: none;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  padding-top: 4px;
}
.hero-kvf {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.hero-sfl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(0.65rem, 1.3vw, 1rem);
  letter-spacing: 0.22em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

.quote-card {
  background: none;
  border: none;
  padding: 0;
  width: 220px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 3;
}
.quote-card p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  margin-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  font-style: italic;
}
.quote-card cite {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-style: normal;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}


/* ============================================================
   GREEN ANNOUNCE BAR
   ============================================================ */
.ann-bar {
  background: var(--green);
  padding: 14px 28px;
  scroll-margin-top: 74px;
}
.ann-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ann-ico { width: 26px; height: 26px; flex-shrink: 0; stroke: #fff; }
.ann-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.ann-pipe { color: rgba(255,255,255,0.3); }
.ann-copy { font-size: 0.91rem; color: rgba(255,255,255,0.82); flex: 1; }
.ann-btn {
  margin-left: auto;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 7px 16px;
  border-radius: 3px;
  white-space: nowrap;
  background: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
}
.ann-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }


/* ============================================================
   THREE-COLUMN GRID
   ============================================================ */
.grid3 { background: #e8e4dd; padding: 52px 28px; scroll-margin-top: 74px; }
.grid3-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* LEFT col */
.ss-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.05;
  margin-bottom: 4px;
}
.ss-sub {
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.ss-body {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}
.checks { display: flex; flex-direction: column; gap: 9px; }
.checks li { display: flex; align-items: center; gap: 10px; }
.checks li svg { width: 20px; height: 20px; flex-shrink: 0; }
.checks li span { font-size: 0.9rem; color: #222; font-weight: 500; }

/* CENTER col */
.col-c {
  display: flex;
  flex-direction: column;
}
.ctr-photo {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #e0dcd5;
  flex: 1;
  min-height: 0;
}
.ctr-photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.ctr-photo:hover img { transform: scale(1.03); }

.sg-card {
  background: var(--gray);
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sg-ico { width: 30px; height: 30px; flex-shrink: 0; stroke: #555; }
.sg-t {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 2px;
}
.sg-s { font-size: 0.82rem; color: #666; }

/* RIGHT col */
.wcs-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.wcs-qmark {
  font-family: Georgia, serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 0.8;
}
.wcs-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
}
.testi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.t-item { display: flex; flex-direction: column; gap: 8px; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.t-avatar svg { width: 100%; height: 100%; }
.t-body p { font-size: 0.8rem; color: #333; line-height: 1.5; margin-bottom: 5px; }
.t-body cite {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #555;
  font-style: normal;
}
.cred-card {
  background: var(--gray);
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cred-ico { width: 28px; height: 28px; flex-shrink: 0; stroke: var(--gold); margin-top: 2px; }
.cred-txt { display: flex; flex-direction: column; gap: 3px; }
.cred-txt strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}
.cred-txt span { font-size: 0.8rem; color: #555; line-height: 1.5; }


/* ============================================================
   DARK CTA BAR
   ============================================================ */
.cta-bar { background: #111; padding: 30px 28px; scroll-margin-top: 74px; }
.cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cta-l {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}
.cta-cal {
  width: 46px; height: 46px;
  border: 2px solid rgba(200,168,75,0.45);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-cal svg { width: 22px; height: 22px; stroke: var(--gold); }
.cta-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 5px;
}
.cta-p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.btn-cta-gold {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 14px 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
}
.btn-cta-gold svg { width: 18px; height: 18px; }
.btn-cta-gold:hover { background: var(--gold-h); transform: translateY(-1px); }

.cta-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  min-width: 175px;
}
.btn-cta-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.28);
  padding: 10px 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: border-color 0.18s, background 0.18s, transform 0.12s;
}
.btn-cta-phone svg { width: 18px; height: 18px; stroke: var(--gold); }
.btn-cta-phone:hover { border-color: var(--gold); background: rgba(200,168,75,0.07); transform: translateY(-1px); }
.cta-loc { font-size: 0.77rem; color: rgba(255,255,255,0.38); text-align: right; }


/* ============================================================
   MODAL
   ============================================================ */
.modal-wrap {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.18s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: #fff;
  border-radius: 8px;
  padding: 36px;
  width: 100%;
  max-width: 520px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.2s ease;
}
@keyframes slideUp { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-x {
  position: absolute;
  top: 12px; right: 14px;
  padding: 6px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.18s;
}
.modal-x:hover { color: #111; }
.modal-x svg { width: 20px; height: 20px; display: block; }

.modal-box h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 6px;
  padding-right: 28px;
}
.modal-box > p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 22px;
}
.mf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.mf-g {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.mf-row .mf-g { margin-bottom: 0; }
.mf-g label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #444;
}
.mf-g input, .mf-g select {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  padding: 10px 12px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.mf-g input:focus, .mf-g select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
}
.modal-submit {
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 14px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.18s, transform 0.12s;
}
.modal-submit:hover { background: var(--gold-h); transform: translateY(-1px); }

/* Success state */
.modal-success {
  text-align: center;
  padding: 20px 0;
}
.modal-success .check-circle {
  width: 56px; height: 56px;
  background: var(--green-check);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.modal-success .check-circle svg { width: 28px; height: 28px; stroke: #fff; }
.modal-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 8px;
}
.modal-success p { font-size: 0.9rem; color: #555; line-height: 1.55; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hdr-btn { display: none; }
  .hero-right { display: none; }
  .quote-card { display: none; }
  .hero-left { max-width: 100%; }
  .grid3-inner { grid-template-columns: 1fr 1fr; }
  .col-r { grid-column: 1 / -1; }
  .testi-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hdr-inner { padding: 0 16px; }
  .hero-inner { padding: 36px 16px; }
  .hero-h1 { font-size: 2.2rem; }
  .pillars { gap: 14px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-gold, .btn-outline-w { width: 100%; justify-content: center; text-align: center; }
  .ann-inner { gap: 10px; }
  .ann-pipe { display: none; }
  .ann-btn { width: 100%; text-align: center; margin-left: 0; }
  .grid3 { padding: 36px 16px; }
  .grid3-inner { grid-template-columns: 1fr; gap: 24px; }
  .col-r { grid-column: auto; }
  .testi-row { grid-template-columns: 1fr; }
  .cta-bar { padding: 24px 16px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cta-r { align-items: flex-start; }
  .btn-cta-gold { width: 100%; justify-content: center; }
  .mf-row { grid-template-columns: 1fr; }
  .modal-box { padding: 24px 20px; }
}

/* ========== STRONGER AT 55+ ON-RAMP CARD ========== */
.onramp-card {
  margin-top: 24px;
  background: #111;
  border: 2px solid #C8A84B;
  border-radius: 8px;
  padding: 20px 22px 22px;
  position: relative;
}
.onramp-badge {
  display: inline-block;
  background: #C8A84B;
  color: #111;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.onramp-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin: 0 0 2px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.onramp-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #aaa;
  margin: 0 0 12px;
}
.onramp-price {
  margin: 0 0 14px;
}
.onramp-dollar {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: #C8A84B;
  line-height: 1;
}
.onramp-freq {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #999;
  margin-left: 4px;
}
.onramp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.onramp-list li {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #ddd;
  padding-left: 18px;
  position: relative;
}
.onramp-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C8A84B;
  font-weight: 700;
}
.btn-onramp {
  width: 100%;
  background: #C8A84B;
  color: #111;
  border: none;
  border-radius: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 0;
  cursor: pointer;
  transition: background 0.18s;
}
.btn-onramp:hover {
  background: #b8963e;
}

/* Third testimonial item fits in same row */
.testi-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ========== SILVER STRONG MEMBERSHIPS PRICING ========== */
.pricing-section {
  background: #0d0d0d;
  padding: 72px 24px 80px;
  scroll-margin-top: 74px;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.pricing-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: #aaa;
  text-align: center;
  margin: 0 0 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 800px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
.price-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 28px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s;
}
.price-card:hover { border-color: #C8A84B44; }
.price-card--featured {
  background: #111;
  border: 2px solid #C8A84B;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(200,168,75,0.18);
}
@media (max-width: 800px) {
  .price-card--featured { transform: none; }
}
.pc-popular {
  display: inline-block;
  background: #C8A84B;
  color: #111;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.pc-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pc-dollar {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #C8A84B;
  line-height: 1;
}
.pc-mo {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #888;
}
.pc-sessions {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ccc;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a2a2a;
}
.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.pc-features li {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #ccc;
  padding-left: 20px;
  position: relative;
}
.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2d8a40;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: #666;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-top: 4px;
}
.pc-btn {
  width: 100%;
  background: #1e4d2b;
  color: #fff;
  border: 1px solid #2d8a40;
  border-radius: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 0;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  margin-top: auto;
}
.pc-btn:hover { background: #2d8a40; }
.pc-btn--gold {
  background: #C8A84B;
  color: #111;
  border-color: #C8A84B;
}
.pc-btn--gold:hover { background: #b8963e; border-color: #b8963e; }
.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pricing-trust span, .pricing-trust svg {
  color: #aaa;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
}
.pricing-trust svg { color: #2d8a40; flex-shrink: 0; }
.trust-dot { color: #444 !important; }

/* On-Ramp card limit note */
.onramp-limit {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: #C8A84B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 10px;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #080808;
  border-top: 1px solid #1e1e1e;
  padding: 56px 24px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #C8A84B;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.footer-tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}
.footer-tagline span { color: #888; }
.footer-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8A84B;
  margin: 0 0 14px;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.15s;
}
.footer-phone:hover { color: #C8A84B; }
.footer-phone svg { color: #C8A84B; flex-shrink: 0; }
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin: 0 0 10px;
}
.footer-address svg { color: #C8A84B; flex-shrink: 0; margin-top: 2px; }
.footer-web {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #666;
  margin: 0;
  text-transform: uppercase;
}
.footer-hours-detail {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  margin: 0 0 20px;
}
.footer-cta {
  background: transparent;
  border: 1px solid #C8A84B;
  color: #C8A84B;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.footer-cta:hover { background: #C8A84B; color: #111; }
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 16px 0;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom p {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #444;
  text-align: center;
  margin: 0;
}

/* ========== BLOG — SHARED ========== */
.blog-hero {
  background: #0d0d0d;
  border-bottom: 1px solid #1e1e1e;
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.blog-hero-inner { max-width: 720px; margin: 0 auto; }
.blog-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C8A84B;
  margin: 0 0 14px;
}
.blog-hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.blog-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  color: #999;
  line-height: 1.6;
  margin: 0;
}

/* ========== BLOG INDEX ========== */
.blog-section { background: #111; padding: 64px 24px 80px; }
.blog-inner { max-width: 1100px; margin: 0 auto; }

.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-chip {
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #888;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.18s;
}
.filter-chip:hover { border-color: #C8A84B; color: #C8A84B; }
.filter-chip--active { background: #C8A84B; border-color: #C8A84B; color: #111; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

/* ========== BLOG CARD ========== */
.blog-card {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: #C8A84B44; transform: translateY(-3px); }
.blog-card--coming { opacity: 0.55; pointer-events: none; }

.blog-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.blog-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}
.blog-card-img-wrap:hover .blog-card-img { transform: scale(1.03); }

/* Gradient placeholder backgrounds for each post */
.blog-card-img--1 {
  background: linear-gradient(135deg, #1e4d2b 0%, #111 60%, #0d0d0d 100%);
  position: relative;
}
.blog-card-img--1::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23C8A84B' stroke-width='1' opacity='0.15'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E") center/80px no-repeat;
}
.blog-card-img--2 {
  background: linear-gradient(135deg, #2a1f0e 0%, #111 60%, #0d0d0d 100%);
  position: relative;
}
.blog-card-img--2::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23C8A84B' stroke-width='1' opacity='0.15'%3E%3Ccircle cx='5.5' cy='12' r='2.5'/%3E%3Ccircle cx='18.5' cy='12' r='2.5'/%3E%3Cline x1='8' y1='12' x2='16' y2='12'/%3E%3C/svg%3E") center/80px no-repeat;
}
.blog-card-img--coming {
  height: 120px;
  background: #161616;
}

.blog-card-tag {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: #C8A84B;
  color: #111;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  transform: none;
}
.blog-card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #666;
  margin: 0 0 10px;
}
.blog-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 10px;
  flex: 1;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: #C8A84B; }
.blog-card-title--coming { color: #555; font-size: 16px; }
.blog-card-excerpt {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin: 0 0 16px;
}
.blog-card-read {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #C8A84B;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: auto;
}
.blog-card-read:hover { color: #fff; }
.blog-coming-tag {
  display: inline-block;
  background: #1e1e1e;
  color: #555;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  border: 1px solid #2a2a2a;
  margin-top: 8px;
}

/* ========== BLOG CTA STRIP ========== */
.blog-cta-strip {
  background: #C8A84B;
  padding: 24px;
}
.blog-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-cta-text {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: #111;
  margin: 0;
}
.blog-cta-btn {
  background: #111;
  color: #C8A84B;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s;
}
.blog-cta-btn:hover { background: #1e4d2b; color: #fff; }

/* ========== POST PAGE ========== */
.post-hero {
  background: #0d0d0d;
  border-bottom: 1px solid #1e1e1e;
  padding: 56px 24px 52px;
}
.post-hero-inner { max-width: 760px; margin: 0 auto; }
.post-back {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.post-back:hover { color: #C8A84B; }
.post-tag-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.post-meta-inline {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #666;
}
.post-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}
.post-byline {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
}

.post-body {
  background: #111;
  padding: 56px 24px 80px;
}
.post-inner {
  max-width: 760px;
  margin: 0 auto;
}
.post-inner p {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  color: #ccc;
  line-height: 1.75;
  margin: 0 0 22px;
}
.post-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 44px 0 16px;
  padding-top: 12px;
  border-top: 1px solid #1e1e1e;
}
.post-inner em { color: #ddd; font-style: italic; }
.post-inner strong { color: #fff; font-weight: 600; }
.post-inner a { color: #C8A84B; text-decoration: underline; text-underline-offset: 3px; }
.post-inner a:hover { color: #fff; }

.post-pullquote {
  border-left: 3px solid #C8A84B;
  margin: 32px 0;
  padding: 16px 24px;
  background: #161616;
  border-radius: 0 6px 6px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: italic;
  color: #e0e0e0;
  line-height: 1.6;
}
.post-pullquote cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #666;
  font-style: normal;
}

.post-list {
  padding-left: 0;
  list-style: none;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post-list li {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  color: #ccc;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}
.post-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C8A84B;
  font-weight: 700;
}

.post-cta-box {
  background: #0d0d0d;
  border: 2px solid #C8A84B;
  border-radius: 10px;
  padding: 32px;
  margin: 48px 0 32px;
}
.post-cta-label {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 22px !important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 20px !important;
}
.post-cta-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.post-cta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.post-cta-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #C8A84B !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.post-cta-item span {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #aaa;
}
.post-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.post-cta-btn {
  background: #C8A84B;
  color: #111 !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.18s;
}
.post-cta-btn:hover { background: #b8963e; color: #111 !important; }
.post-cta-or {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #888;
}
.post-cta-tagline {
  font-family: 'Barlow', sans-serif !important;
  font-size: 13px !important;
  color: #666 !important;
  margin: 0 !important;
  font-style: italic;
}

/* ========== RELATED POSTS ========== */
.related-posts {
  background: #0d0d0d;
  padding: 56px 24px 64px;
  border-top: 1px solid #1a1a1a;
}
.related-inner { max-width: 760px; margin: 0 auto; }
.related-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 28px;
}
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ========== POST HERO IMAGE ========== */
.post-hero-img {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  background: #0d0d0d;
}
.post-hero-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 768px) {
  .post-hero-img,
  .post-hero-img img {
    max-height: 280px;
  }
}

/* ========== WHO WE SERVE — THREE TRACKS ========== */
.who-section {
  background: #111;
  padding: 72px 24px 60px;
  scroll-margin-top: 74px;
}
.who-inner { max-width: 1140px; margin: 0 auto; }
.who-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #C8A84B; margin-bottom: 10px;
}
.who-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4.5vw, 46px); font-weight: 900;
  text-transform: uppercase; color: #fff;
  margin: 0 0 14px; line-height: 1.05;
}
.who-intro {
  font-family: 'Barlow', sans-serif;
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 760px; line-height: 1.6;
  margin: 0 0 44px;
}

/* Track grid */
.who-tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .who-tracks { grid-template-columns: 1fr; } }

.who-track {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 28px 24px 24px;
  border: 1px solid #2a2a2a;
  display: flex; flex-direction: column;
  position: relative;
}
.who-track--primary {
  border-color: rgba(200,168,75,0.45);
  background: #1c1a12;
}
.who-track-badge {
  position: absolute; top: -12px; left: 20px;
  background: #C8A84B; color: #111;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
}
.who-track-ico {
  width: 44px; height: 44px;
  background: rgba(200,168,75,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; margin-top: 8px;
}
.who-track-ico svg { width: 22px; height: 22px; stroke: #C8A84B; }
.who-track-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px; font-weight: 900;
  text-transform: uppercase; color: #fff;
  margin: 0 0 4px;
}
.who-track-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #C8A84B; margin: 0 0 14px;
}
.who-track-body {
  font-family: 'Barlow', sans-serif;
  font-size: 14px; color: #aaa; line-height: 1.6;
  margin: 0 0 16px; flex: 1;
}
.who-track-list {
  list-style: none; padding: 0;
  margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 7px;
}
.who-track-list li {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; color: #ccc;
  padding-left: 16px; position: relative;
}
.who-track-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: #C8A84B; font-weight: 700;
}
.who-track-btn {
  display: inline-block;
  background: #C8A84B; color: #111;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 5px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s; text-align: center;
}
.who-track-btn:hover { background: #b8963e; }
.who-track-btn--outline {
  background: transparent;
  color: #C8A84B;
  border: 1.5px solid rgba(200,168,75,0.5);
}
.who-track-btn--outline:hover {
  background: rgba(200,168,75,0.1);
  border-color: #C8A84B;
}

/* On-Ramp CTA Banner */
.who-onramp-banner {
  background: #C8A84B;
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.who-onramp-text { flex: 1; min-width: 200px; }
.who-onramp-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(0,0,0,0.55); margin: 0 0 4px;
}
.who-onramp-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 900;
  text-transform: uppercase; color: #111;
  margin: 0 0 4px;
}
.who-onramp-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; color: rgba(0,0,0,0.6);
  margin: 0;
}
.who-onramp-price {
  display: flex; flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.08);
  border-radius: 8px; padding: 12px 20px;
  min-width: 90px; text-align: center;
}
.who-onramp-amt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 900; color: #111; line-height: 1;
}
.who-onramp-per {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; color: rgba(0,0,0,0.55);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.who-onramp-btn {
  display: inline-block;
  background: #111; color: #C8A84B;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.who-onramp-btn:hover { background: #1a1a1a; }
@media (max-width: 680px) {
  .who-onramp-banner { flex-direction: column; align-items: flex-start; }
  .who-onramp-price { align-self: flex-start; }
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: #f4f4f2;
  padding: 80px 24px;
  scroll-margin-top: 74px;
}
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Photo */
.about-photo-col { position: sticky; top: 100px; }
@media (max-width: 860px) { .about-photo-col { position: static; } }
.about-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-photo {
  width: 100%;
  max-width: 340px;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  object-position: top center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: #1a1a1a;
}
.about-photo-badge {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  background: #C8A84B;
  border-radius: 6px;
  padding: 8px 18px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.about-badge-line1 {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #111;
}
.about-badge-line2 {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 11px; color: rgba(0,0,0,0.65);
  margin-top: 1px;
}

/* Text */
.about-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #C8A84B; margin-bottom: 10px;
}
.about-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 44px); font-weight: 900;
  text-transform: uppercase; color: #111;
  line-height: 1.05; margin: 0 0 28px;
}
.about-body {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; color: #444; line-height: 1.7;
  margin: 0 0 14px;
}

/* Credentials strip */
.about-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 28px;
}
@media (max-width: 500px) { .about-creds { grid-template-columns: 1fr; } }
.about-cred-item {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border-radius: 8px; padding: 12px 14px;
  border-left: 3px solid #C8A84B;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.about-cred-item svg {
  width: 18px; height: 18px;
  stroke: #C8A84B; flex-shrink: 0;
}
.about-cred-item span {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 600; color: #222;
}

/* Pull quote */
.about-quote {
  position: relative;
  background: #111;
  border-radius: 10px;
  padding: 28px 28px 22px 36px;
  margin: 0;
}
.about-quote-mark {
  position: absolute;
  top: 12px; left: 16px;
  font-family: Georgia, serif;
  font-size: 52px; line-height: 1;
  color: #C8A84B; opacity: 0.6;
}
.about-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  font-style: italic; color: #fff;
  line-height: 1.4;
}
.about-quote-cite {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 600;
  font-style: normal; color: #C8A84B;
  margin-top: 12px; letter-spacing: 0.04em;
}

/* ── Coming Soon badge ── */
.nav-soon {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #C8A84B;
  color: #111;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1.4;
}

/* ========== BACK TO SCHOOL PROMO ========== */
.bts-promo {
  background: #0e0e0e;
  padding: 80px 40px;
  border-top: 3px solid #C8A84B;
  border-bottom: 3px solid #C8A84B;
}
.bts-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px 240px;
  gap: 40px;
  align-items: center;
}
.bts-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A84B;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.bts-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 50px);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 16px;
}
.bts-title span { color: #C8A84B; }
.bts-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 20px;
}
.bts-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bts-list li {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #ccc;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.bts-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C8A84B;
  font-weight: 700;
}
.bts-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.bts-btn-gold {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #C8A84B;
  color: #111;
  padding: 14px 26px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.bts-btn-gold:hover { background: #b8923a; }
.bts-btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  padding: 14px 26px;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.bts-btn-outline:hover { border-color: #C8A84B; color: #C8A84B; }

/* Badge */
.bts-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bts-badge-inner {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #C8A84B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 0 8px rgba(200,168,75,0.15), 0 0 0 16px rgba(200,168,75,0.07);
}
.bts-badge-top {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 2px;
}
.bts-badge-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: #111;
}
.bts-badge-off {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: #111;
  margin-top: -4px;
}
.bts-badge-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #333;
  margin-top: 4px;
}
.bts-badge-exp {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: #555;
  margin-top: 4px;
  font-style: italic;
}

@media (max-width: 768px) {
  .bts-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .bts-badge { order: -1; }
  .bts-photo { order: -2; max-height: 260px; }
  .bts-badge-inner { width: 180px; height: 180px; }
  .bts-badge-amount { font-size: 56px; }
  .bts-ctas { justify-content: center; }
  .bts-promo { padding: 60px 24px; }
}


/* BTS Photo */
.bts-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  flex-shrink: 0;
  height: 420px;
}
.bts-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 14px;
}

/* ── Countdown Timer ── */
.bts-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.bts-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.35);
  border-radius: 8px;
  padding: 10px 16px;
  min-width: 64px;
}
.bts-cd-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: #C8A84B;
}
.bts-cd-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-top: 4px;
}
.bts-cd-sep {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #C8A84B;
  line-height: 1;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .bts-countdown { justify-content: center; }
  .bts-cd-unit { min-width: 52px; padding: 8px 10px; }
  .bts-cd-num { font-size: 28px; }
}

/* Geo service area line */
.hero-loc {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
