:root {
  /* ── Color ──
     Base palette matches the wordmark: pure black/white. Accent is used
     sparingly on purpose (this is the fix for "too much blue"): one CTA
     fill, one focus/underline moment. Swap --accent to Ed's exact brand
     hex once the brand kit is sent. */
  --black: #000000;
  --near-black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f2f0ec;
  --grey: #c9c9c9;
  --dim: rgba(255,255,255,0.92);
  --faint: rgba(255,255,255,0.7);
  --line: rgba(255,255,255,0.09);
  --dark-grey: #141414;
  --mid-grey: #1e1e1e;
  --accent: #38B6FF;
  --accent-dim: rgba(56,182,255,0.14);
  --accent-mid: rgba(56,182,255,0.4);

  /* ── Type ──
     Display = Dagger Square (Ed's brand font). Body stays plain (Inter)
     on purpose. The brand font is used only for headlines, not
     everywhere, per Ed's note. */
  --font-display: 'Dagger Square', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', sans-serif;
}

@font-face {
  font-family: 'Dagger Square';
  src: url('../fonts/DaggerSquare.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dagger Square';
  src: url('../fonts/DaggerSquare-Oblique.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--black); }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

a { color: inherit; }

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

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

.placeholder-block {
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 24px;
}

/* ── REVEAL ON SCROLL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.why-card.in, .offer-card.in, .plan-card.in, .community-photo { transition: transform 0.2s ease-out; }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.in { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.2s; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background-image: url('../images/nav-fade.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
nav.scrolled {
  background: rgba(0,0,0,0.97);
  border-bottom-color: var(--line);
  padding: 14px 48px;
}

.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 50px; width: auto; transition: height 0.35s; }
nav.scrolled .nav-logo-img { height: 38px; }

.nav-links { list-style: none; display: flex; gap: 40px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--dim);
  position: relative; padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--accent);
  transition: right 0.3s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  color: var(--black); background: var(--accent);
  padding: 12px 26px; border-radius: 3px;
  transition: filter 0.25s, transform 0.25s;
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); display: block; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateY(-102%); transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 0.03em;
  text-decoration: none; color: var(--white);
}
.mobile-menu .mobile-cta {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); background: var(--accent);
  padding: 14px 32px; border-radius: 3px; margin-top: 12px;
}
.mobile-close {
  position: absolute; top: 26px; right: 28px; background: none; border: none;
  color: var(--white); font-size: 26px; cursor: pointer;
}

/* ── HERO ──
   Photo sits on its own layer (::before) with a slight saturation/contrast
   boost so it reads vividly instead of washed out. The darkening (::after)
   is concentrated at the top (nav legibility) and bottom (scroll cue),
   staying light through the middle so the photo actually shows. Falls back
   to plain black + subtle texture if the photo isn't in place yet: no
   broken-image state. */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 140px 32px 100px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255,255,255,0.06), transparent 70%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 64px),
    var(--black);
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero.jpg') 35% 20% / cover no-repeat;
  z-index: 0;
}
#hero::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.22);
  z-index: 1;
}
#hero > *:not(.hero-scroll):not(.hero-fade-bottom) { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--white); margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.9rem);
  line-height: 0.96; letter-spacing: 0.01em;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-title .accent-word { color: var(--accent); }
.hero-sub {
  max-width: 560px; margin: 0 auto 40px;
  font-size: 16px; line-height: 1.75; color: var(--dim);
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; padding: 17px 34px; border-radius: 3px;
  transition: filter 0.25s, transform 0.25s, background 0.25s, border-color 0.25s;
}
.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--faint), transparent);
}

.rule { height: 1px; background: var(--line); }

/* ── ETHOS STRIP ── */
#ethos { padding: 90px 32px; background: var(--near-black); }
.ethos-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  text-align: left;
}
.ethos-statement {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.25; letter-spacing: 0.01em;
  color: var(--white); text-transform: uppercase;
  margin: 0 0 24px;
}
.ethos-accent { color: var(--accent); font-size: 1.18em; }
.ethos-sub {
  max-width: 480px; margin: 0; color: var(--dim);
  font-size: 15px; line-height: 1.7;
}
.ethos-image {
  aspect-ratio: 3 / 2; width: 100%; border-radius: 12px;
  background: url('../images/ethos-action.jpg') center / cover no-repeat, var(--black);
  border: 2px solid #333333;
}

/* ── WHY TITAN ── */
#why { padding: 80px 0; background: #101010; }
.why-header { text-align: center; margin-bottom: 40px; }
.why-header .section-label {
  font-family: var(--font-display); font-size: 28px; letter-spacing: 0.08em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 10px;
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  color: var(--white); text-transform: uppercase; line-height: 1.05;
  white-space: nowrap;
}
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.why-card {
  position: relative; overflow: hidden;
  background: var(--black); background-size: cover; background-position: center;
  padding: 40px 30px;
  border-top: 3px solid var(--accent); border-radius: 10px;
  box-shadow: 0 0 0 0 rgba(255,255,255,0);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.62); z-index: 0;
}
.why-card > * { position: relative; z-index: 1; }
.why-card:nth-child(1) { background-image: url('../images/why-structured-programming.jpg'); }
.why-card:nth-child(2) { background-image: url('../images/why-coaching-led.jpg'); }
.why-card:nth-child(3) { background-image: url('../images/why-community.jpg'); }
.why-card:nth-child(4) { background-image: url('../images/why-results-focused.jpg'); }
.why-card:hover { transform: scale(1.06); box-shadow: 0 0 0 1px rgba(255,255,255,0.25); position: relative; z-index: 2; }
.why-num {
  font-family: var(--font-display); font-size: 18px; color: var(--accent);
  letter-spacing: 0.1em; margin-bottom: 18px;
}
.why-name {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
  margin-bottom: 12px;
}
.why-desc { font-size: 13.5px; line-height: 1.7; color: var(--dim); }

/* ── OFFERINGS ── */
#offerings { padding: 120px 0; background: var(--near-black); }
.offerings-header { text-align: center; margin-bottom: 64px; }
.offerings-header .section-label {
  font-family: var(--font-display); font-size: 28px; letter-spacing: 0.08em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 10px;
}
.offerings-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  color: var(--white); text-transform: uppercase; line-height: 1.05;
  white-space: nowrap;
}
.offerings-intro { max-width: 520px; margin: 18px auto 0; color: var(--dim); font-size: 14.5px; line-height: 1.7; }
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card {
  background: var(--black); border: 2px solid rgba(255,255,255,0.18); border-radius: 10px;
  padding: 40px 32px; text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.offer-card:hover { border-color: rgba(255,255,255,0.4); transform: scale(1.06); position: relative; z-index: 2; }
.offer-icon { margin-bottom: 22px; }
.offer-name {
  font-family: var(--font-display); font-size: 21px; letter-spacing: 0.01em;
  color: var(--white); text-transform: uppercase; margin-bottom: 12px;
}
.offer-desc { font-size: 14px; line-height: 1.75; color: var(--dim); margin-bottom: 22px; flex-grow: 1; }
.offer-link {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 6px;
}

/* ── SOCIAL PROOF (placeholder) ── */
#proof { padding: 120px 0; background: #101010; }
.proof-header { text-align: center; margin-bottom: 56px; }
.proof-header .section-label {
  font-family: var(--font-display); font-size: 28px; letter-spacing: 0.08em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 10px;
}
.proof-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white); text-transform: uppercase; line-height: 1.05;
}
.proof-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.proof-viewport { height: 560px; overflow: hidden; position: relative; }
.proof-fade {
  position: absolute; left: 0; right: 0; height: 70px; z-index: 2; pointer-events: none;
  background-image: url('../images/proof-fade.png'); background-size: 100% 100%; background-repeat: no-repeat;
}
.proof-fade-top { top: 0; }
.proof-fade-bottom { bottom: 0; transform: rotate(180deg); }
.proof-track {
  display: flex; flex-direction: column; gap: 16px;
  animation: proofScroll 80s linear infinite;
}
.proof-viewport:hover .proof-track { animation-play-state: paused; }
@keyframes proofScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
.proof-card {
  flex: 0 0 auto; min-height: 176px; background: var(--black); border: 2px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 20px 24px; display: flex; flex-direction: column;
}
.proof-stars { display: flex; gap: 3px; font-size: 13px; color: #FFB400; letter-spacing: 2px; margin-bottom: 10px; }
.proof-quote {
  font-size: 13.5px; line-height: 1.6; color: var(--dim); margin: 0;
}
.proof-author {
  margin-top: 14px; padding-top: 12px; font-size: 15px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--accent); border-top: 1px solid var(--line);
}
.proof-image {
  height: 560px; width: 100%; border-radius: 12px;
  background: url('../images/why-community.jpg') center 30% / cover no-repeat, var(--black);
  border: 2px solid #333333;
}

/* ── FAQ ── */
#faq { padding: 120px 0; background: var(--near-black); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white); text-transform: uppercase; line-height: 1.05;
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 26px 4px; cursor: pointer; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 15.5px; font-weight: 500; color: var(--white);
}
.faq-toggle { color: var(--accent); font-size: 20px; flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, margin-top 0.35s ease;
  font-size: 14px; line-height: 1.75; color: var(--dim);
}
.faq-item.open .faq-a { max-height: 240px; margin-top: 14px; }

/* ── TRIAL CTA (placeholder lead funnel) ── */
#trial { padding: 120px 0; }
.trial-box {
  background: var(--near-black); border: 1px solid var(--line); border-radius: 14px;
  padding: 72px 48px; text-align: center;
}
.trial-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white); text-transform: uppercase; line-height: 1.05;
  margin-bottom: 18px;
}
.trial-sub { max-width: 540px; margin: 0 auto 16px; color: var(--dim); font-size: 15px; line-height: 1.75; }
.trial-note {
  display: inline-block; font-size: 11.5px; letter-spacing: 0.08em;
  color: var(--faint); border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 20px; padding: 7px 18px; margin-bottom: 40px;
}
.trial-contacts { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.trial-contact {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  background: var(--black); border: 1px solid var(--line); border-radius: 8px;
  padding: 16px 24px; color: var(--white); transition: border-color 0.25s, transform 0.25s;
}
.trial-contact:hover { border-color: var(--accent-mid); transform: translateY(-2px); }
.trial-contact-label { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); }
.trial-contact-value { font-size: 14px; font-weight: 500; }
.trial-followup {
  max-width: 560px; margin: 0 auto 32px; padding: 16px 22px;
  background: var(--accent-dim); border: 1px solid var(--accent-mid); border-radius: 8px;
  color: var(--off-white); font-size: 14px; line-height: 1.7;
}
.trial-widget-frame {
  max-width: 640px; margin: 0 auto; border-radius: 12px; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
}
.trial-widget-frame iframe { display: block; width: 100%; border: 0; }
.trial-fallback { margin-top: 24px; font-size: 13.5px; color: var(--faint); }
.trial-fallback a { color: var(--accent); text-decoration: none; }
.trial-fallback a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { padding: 64px 0 40px; border-top: 1px solid var(--line); }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px; margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 28px; width: auto; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; letter-spacing: 0.06em; text-decoration: none; color: var(--dim);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--dim);
  transition: border-color 0.25s, color 0.25s;
}
.footer-socials a:hover { border-color: var(--accent-mid); color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--faint);
}

/* ── PAGE HEADER (interior pages) ── */
.page-hero {
  padding: 170px 32px 90px; text-align: center; background: var(--black);
}
.page-hero:not(.page-hero--photo):not(.page-hero--triptych) {
  border-bottom: 1px solid var(--line);
}
.page-hero--photo { position: relative; overflow: hidden; }
.page-hero--photo::before {
  content: ''; position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat; z-index: 0;
}
.page-hero--photo::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 1;
}
.page-hero--photo > * { position: relative; z-index: 2; }
.page-hero--membership::before { background-image: url('../images/membershiphero.jpg'); background-position: center 75%; }
.page-hero--about::before { background-image: url('../images/aboutbanner.jpg'); background-position: center 35%; }
.page-hero--grouptraining::before { background-image: url('../images/grouptrainingbanner.jpg'); background-position: center 65%; }
.page-hero--freetrial::before { background-image: url('../images/freetrialhero.jpg'); background-position: center 50%; }
.page-hero--triptych { position: relative; overflow: hidden; }
.hero-triptych { position: absolute; inset: 0; z-index: 0; display: flex; overflow: hidden; }
.hero-triptych-panel {
  flex: 1; position: relative; overflow: hidden;
  margin: 0 -30px; transform: skewX(-9deg);
  background-color: var(--black);
}
.hero-triptych-panel-inner {
  position: absolute; top: -5%; bottom: -5%; left: -8%; right: -8%;
  background-size: cover; background-position: center;
  transform: skewX(9deg);
}
.hero-triptych-panel-inner--sauna { background-position: center 15%; }
.page-hero--triptych::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1;
}
.page-hero--triptych > *:not(.hero-triptych) { position: relative; z-index: 2; }
.page-hero-label {
  font-family: var(--font-display); font-size: 28px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4rem); color: var(--white); line-height: 1;
}
.page-hero-sub { margin: 4px auto 0; color: var(--dim); font-size: 15px; line-height: 1.75; white-space: nowrap; }

.hero-fade-bottom {
  position: absolute !important; left: 0; right: 0; bottom: 0; height: 200px; z-index: 2 !important; pointer-events: none;
  background-image: url('../images/hero-fade-bottom.png');
  background-size: 100% 100%; background-repeat: no-repeat;
}
.hero-fade-bottom--tall { height: 320px; }
.hero-fade-bottom--grey { background-image: url('../images/hero-fade-bottom-grey.png'); }

/* ── ABOUT: OUR STORY ── */
#story { padding: 90px 32px; background: #101010; }
#story .ethos-layout { align-items: stretch; }
#story .section-label {
  font-family: var(--font-display); font-size: 28px; letter-spacing: 0.08em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 14px;
}
.story-statement {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25; text-transform: uppercase; color: var(--white); margin-bottom: 22px;
}
.story-body { font-size: 14.5px; line-height: 1.75; color: var(--dim); margin-bottom: 16px; }
.story-image {
  width: 100%; border-radius: 12px;
  background: url('../images/about-owners.jpg') center 30% / cover no-repeat, var(--black);
  border: 2px solid #333333;
}

/* ── ABOUT: WHAT WE STAND FOR ── */
#stand-for { padding: 90px 32px; background: var(--black); text-align: center; }
.stand-header { max-width: 760px; margin: 0 auto; }
.stand-statement {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.3; text-transform: uppercase; color: var(--white); margin: 14px 0 20px;
}
.stand-sub { font-size: 14.5px; line-height: 1.75; color: var(--dim); }

/* ── ABOUT: VALUE GRIDS (What We Reward / Doesn't Last, Community) ── */
#values { padding: 90px 0; background: #101010; }
#coaching-standard { padding: 90px 0; background: #101010; }
#community-values { padding: 90px 0; background: var(--near-black); text-align: center; }
#community-values .ethos-layout { text-align: left; margin-bottom: 56px; }
.community-photo-side {
  aspect-ratio: 3 / 2; width: 100%; border-radius: 12px;
  background: url('../images/community-side.jpg') center 30% / cover no-repeat, var(--black);
  border: 2px solid #333333;
}
.community-statement {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.3; text-transform: uppercase; color: var(--white); margin: 0 0 20px;
}
.community-note {
  max-width: 480px; margin: 0 0 14px; font-size: 14.5px; line-height: 1.75; color: var(--dim);
}
.community-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.community-photo {
  aspect-ratio: 4 / 5; border-radius: 12px; background: var(--black); border: 2px solid #333333;
}
.community-photo:nth-child(1) { background-image: url('../images/community-1.jpg'); background-size: cover; background-position: center; }
.community-photo:nth-child(2) { background-image: url('../images/community-2.jpg'); background-size: cover; background-position: center; }
.community-photo:nth-child(3) { background-image: url('../images/community-3.jpg'); background-size: cover; background-position: center; }

/* ── ABOUT: CLOSING IDENTITY ── */
#identity { padding: 100px 32px; background: var(--black); text-align: center; }
.identity-line { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-bottom: 18px; }
.identity-tagline {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase; color: var(--white); line-height: 1.2;
}

/* ── CHAT WIDGET ── */
.chat-backdrop {
  display: none; position: fixed; inset: 0; z-index: 149;
  background: rgba(0,0,0,0.5);
}
.chat-backdrop.open { display: block; }

.trial-float {
  position: fixed; bottom: calc(20px + env(safe-area-inset-bottom)); left: 32px; z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--black);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 16px 24px; border-radius: 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: filter 0.25s, transform 0.25s, opacity 0.3s ease, visibility 0.3s;
}
.trial-float:hover { filter: brightness(1.1); transform: translateY(-1px); }
.trial-float--hidden { opacity: 0; visibility: hidden; transform: translateY(10px); pointer-events: none; }

.chat-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--near-black); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  transition: transform 0.25s;
}
.chat-bubble:hover { transform: scale(1.06); }
.chat-bubble-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; transform: scale(0.88); }
.chat-bubble-dot {
  position: absolute; top: 2px; right: 2px;
  width: 17px; height: 17px; border-radius: 50%;
  background: #2ECC71; border: 2px solid var(--black);
}

.chat-panel {
  position: fixed; bottom: 130px; right: 28px; z-index: 150;
  width: 340px; max-height: 500px;
  background: var(--near-black); border: 1px solid var(--line); border-radius: 14px;
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}
.chat-panel.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.chat-panel-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
  background: var(--black);
}
.chat-header-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; transform: scale(0.88); }
.chat-header-title { font-size: 13.5px; font-weight: 600; color: var(--white); }
.chat-header-subtitle { font-size: 11.5px; color: var(--dim); margin-top: 2px; }
.chat-close {
  margin-left: auto; background: none; border: none; color: var(--faint);
  font-size: 15px; cursor: pointer; padding: 4px;
}

.chat-messages {
  padding: 16px 18px; overflow-y: auto; flex: 1; min-height: 120px;
  display: flex; flex-direction: column; gap: 10px;
}
.chat-msg { display: flex; }
.chat-msg.user { justify-content: flex-end; }
.chat-msg-bubble {
  max-width: 82%; padding: 10px 14px; border-radius: 12px;
  font-size: 13px; line-height: 1.55;
}
.chat-msg.assistant .chat-msg-bubble { background: var(--mid-grey); color: var(--dim); border-bottom-left-radius: 3px; }
.chat-msg.user .chat-msg-bubble { background: var(--accent); color: var(--black); border-bottom-right-radius: 3px; }

.chat-suggestions { display: flex; flex-direction: column; gap: 8px; padding: 0 18px 12px; }
.chat-suggestion {
  text-align: left; background: var(--black); border: 1px solid var(--line);
  color: var(--dim); font-size: 12.5px; padding: 9px 12px; border-radius: 8px;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.chat-suggestion:hover { border-color: var(--accent-mid); color: var(--white); }

.chat-input-row {
  display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line);
}
.chat-input {
  flex: 1; resize: none; background: var(--black); border: 1px solid var(--line);
  border-radius: 8px; color: var(--white); font-family: var(--font-body);
  font-size: 13px; padding: 10px 12px; max-height: 80px;
}
.chat-input:focus { outline: none; border-color: var(--accent-mid); }
.chat-send {
  width: 38px; height: 38px; border-radius: 8px; border: none; flex-shrink: 0;
  background: var(--accent); color: var(--black); font-size: 15px; cursor: pointer;
}

@media (max-width: 480px) {
  .chat-panel { right: 12px; left: 12px; width: auto; bottom: 100px; }
  .chat-bubble { right: 16px; bottom: 16px; }
  .trial-float { left: 18px; bottom: calc(12px + env(safe-area-inset-bottom)); padding: 13px 18px; font-size: 11.5px; }
}

/* ── MEMBERSHIP: PLANS ── */
#plans { padding: 100px 32px; background: var(--black); }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.plan-card {
  background: var(--near-black); border: 2px solid rgba(255,255,255,0.18); border-radius: 12px;
  padding: 40px 34px; display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform 0.25s, border-color 0.25s; overflow: hidden;
}
.plan-card--primary { border-color: var(--accent); }
.plan-card:hover { transform: translateY(-4px); }
.plan-image {
  aspect-ratio: 16 / 9; margin: -40px -34px 24px; background-size: cover; background-position: center; background-color: var(--black);
}
.plan-image--allin { background-image: url('../images/plan-all-in.jpg'); background-position: center 65%; }
.plan-image--recovery { background-image: url('../images/plan-recovery-lab.jpg'); }
.plan-card--link:hover { border-color: rgba(255,255,255,0.4); }
.plan-badge {
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px; font-weight: 600;
}
.plan-badge--partner { color: var(--grey); }
.plan-name {
  font-family: var(--font-display); font-size: 26px; text-transform: uppercase; color: var(--white); margin-bottom: 10px;
}
.plan-price { font-family: var(--font-display); font-size: 42px; color: var(--white); margin-bottom: 22px; line-height: 1; }
.plan-price-period { font-family: var(--font-body); font-size: 14px; color: var(--dim); margin-left: 4px; }
.plan-price--dual { display: flex; flex-direction: column; gap: 12px; font-size: 30px; }
.plan-price-note {
  display: block; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey); margin-top: 4px;
}
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex-grow: 1; }
.plan-features li { font-size: 14px; color: var(--dim); padding-left: 22px; position: relative; }
.plan-features li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.plan-desc { font-size: 14px; line-height: 1.7; color: var(--dim); margin-bottom: 24px; flex-grow: 1; }
.plan-cta {
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px; border-radius: 6px; background: var(--accent); color: var(--black);
  transition: filter 0.25s;
}
.plan-cta:hover { filter: brightness(1.1); }
.plan-cta--ghost { background: transparent; border: 1px solid var(--line); color: var(--white); }

/* ── MEMBERSHIP: SCHEDULE PLACEHOLDER ── */
#schedule { padding: 100px 0; background: #101010; }
.schedule-sub { max-width: 560px; margin: 18px auto 0; font-size: 14.5px; line-height: 1.75; color: var(--dim); text-align: center; }
.schedule-placeholder {
  max-width: 640px; margin: 48px auto 0; text-align: center; background: var(--black);
  border: 1px dashed rgba(255,255,255,0.16); border-radius: 14px; padding: 48px 32px;
}
.schedule-placeholder-badge {
  display: inline-block; font-size: 11.5px; letter-spacing: 0.08em; color: var(--faint);
  border: 1px dashed rgba(255,255,255,0.18); border-radius: 20px; padding: 7px 18px; margin-bottom: 32px;
}

/* ── GROUP TRAINING ── */
#gt-overview { padding: 90px 32px; background: #101010; }
.gt-image {
  aspect-ratio: 3 / 2; width: 100%; border-radius: 12px;
  background: url('../images/12-week.jpg') center / contain no-repeat, var(--black);
  border: 2px solid #333333;
}
#gt-structure { padding: 90px 0; background: var(--black); }
#gt-who { padding: 90px 32px; background: var(--near-black); text-align: center; }
#gt-who .community-statement, #gt-who .community-note { margin-left: auto; margin-right: auto; }
#gt-who .community-note { max-width: 640px; }
#gt-gallery { padding: 90px 0; background: #101010; }
#gt-gallery .community-photo:nth-child(1) { background-image: url('../images/gt-gallery-1.jpg'); }
#gt-gallery .community-photo:nth-child(2) { background-image: url('../images/gt-gallery-2.jpg'); }
#gt-gallery .community-photo:nth-child(3) { background-image: url('../images/gt-gallery-3.jpg'); }

/* ── RECOVERY ── */
#recovery-partners { padding: 90px 0; background: var(--black); }
.recovery-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1180px; gap: 24px; margin: 0 auto; align-items: stretch; }
.trial-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 980px; gap: 24px; margin: 0 auto; align-items: stretch; }
.trial-grid .plan-name { font-size: 22px; text-align: center; }
.trial-grid .plan-desc { text-align: center; }
.plan-icon { display: flex; justify-content: center; margin-bottom: 16px; }
.recovery-grid .plan-name {
  font-size: 26px; line-height: 1.15; text-align: center; color: var(--accent);
  margin: 0 0 18px; min-height: 62px; display: flex; align-items: center; justify-content: center;
}
.recovery-grid .plan-desc { text-align: center; }
.recovery-grid .plan-cta { margin-top: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gt-image { aspect-ratio: 16 / 10; }
  .plans-grid { grid-template-columns: 1fr; }
  .recovery-grid { grid-template-columns: 1fr 1fr; }
  #trial-included .section-inner { padding: 0 16px; }
  .trial-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .trial-grid .plan-card { padding: 14px 8px; }
  .trial-grid .plan-icon { margin-bottom: 8px; }
  .trial-grid .plan-icon svg { width: 22px; height: 22px; }
  .trial-grid .plan-name { font-size: 12px; margin-bottom: 4px; line-height: 1.25; }
  .trial-grid .plan-desc { font-size: 10px; line-height: 1.35; margin-bottom: 0; }
  .plan-price--dual { font-size: 26px; }
  .why-title { white-space: normal; }
  .offerings-title { white-space: normal; }
  .ethos-layout { grid-template-columns: 1fr; text-align: center; }
  .ethos-sub { margin: 0 auto; }
  .ethos-image { aspect-ratio: 16 / 10; }
  .story-image { aspect-ratio: 4 / 5; background-position: center 22%; }
  .community-photo-side { aspect-ratio: 16 / 10; }
  .story-body { text-align: left; }
  .community-gallery { grid-template-columns: 1fr; }
  .page-hero-sub { white-space: normal; }
  .page-hero { padding: 120px 24px 70px; }
  .page-hero--freetrial .page-hero-label { margin-bottom: 4px; }
  .page-hero--freetrial .page-hero-title { font-size: clamp(1.5rem, 7vw, 2rem); white-space: nowrap; }
  #trial { padding: 64px 0; }
  .proof-image { height: 280px; }
  .proof-viewport { height: 380px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: 1fr; }
  .proof-layout { grid-template-columns: 1fr; }
  #hero, #ethos, #why, #offerings, #proof, #faq, #trial { padding-left: 0; padding-right: 0; }
  .section-inner { padding: 0 24px; }
  .trial-box { padding: 48px 24px; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 560px) {
  nav { padding: 18px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { justify-content: center; width: 100%; }
  .recovery-grid { grid-template-columns: 1fr; }
  #hero { min-height: 85vh; padding: 120px 24px 70px; }
  #hero::before { inset: 88px 0 0 0; background-image: url('../images/hero-mobile.jpg'); background-position: 40% 20%; }
  nav { background: rgba(0,0,0,0.97) !important; background-image: none !important; border-bottom-color: var(--line); }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); margin-bottom: 26px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.24em; margin-bottom: 24px; }
  .hero-sub { margin-bottom: 52px; }
}
