/* KnoxFit brand system */
@font-face {
  /* Real brand display font. IMPORTANT: this font only ships as a single
     regular-weight cut — there is no true bold. Never apply font-weight 500+
     to 'KnoxFit Display' or the browser will synthesize ("faux-bold") it,
     which distorts the letterforms (short R leg, closed-up numerals, smudged
     G) and makes it look like a broken/different typeface. Confirmed via
     side-by-side Instagram content: two graphics using the same font file
     looked like different fonts purely because one was faux-bolded. Use
     font-size, letter-spacing, or color/contrast for emphasis instead. If a
     genuinely bolder look is ever needed, source a real bold weight file —
     don't rely on synthetic bold. */
  font-family: 'KnoxFit Display';
  src: url('../assets/fonts/Inge Upright-69b6.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Light.ttf') format('truetype');
  font-weight: 300;
}

:root {
  --kf-black: #000000;
  --kf-charcoal: #1e1e1e;
  --kf-white: #ffffff;
  --kf-harakeke: #263c33;
  --kf-whero: #ac2e2d;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--kf-black);
  color: var(--kf-white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

h1, h2, h3, .headline {
  text-transform: uppercase;
  line-height: 1.15;
}

h1, h2, h3, .headline {
  /* Brand display font — only ships as one weight, so keep font-weight
     normal here always. Do NOT bump this to 600/700/800: the browser will
     synthesize ("faux-bold") it, distorting the letterforms. Use size,
     letter-spacing, or color for emphasis instead. */
  font-family: 'KnoxFit Display', 'Inter', sans-serif;
  font-weight: normal;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Intro offer banner */
.offer-banner {
  background: var(--kf-black);
  color: var(--kf-white);
  text-align: center;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--kf-whero);
}
.offer-banner a {
  text-decoration: underline;
  font-weight: 400;
  margin-left: 8px;
  color: var(--kf-whero);
}

/* Header / nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img { height: 28px; display: block; }
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
nav.main-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s ease;
}
nav.main-nav a:hover { color: var(--kf-whero); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--kf-whero);
  color: var(--kf-white);
  padding: 9px 19px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--kf-whero); }
.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 64px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  color: var(--kf-white);
}
.hero-content h1 span { color: var(--kf-whero); }
.hero-content .eyebrow {
  color: var(--kf-white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  margin-top: 10px;
  color: rgba(255,255,255,0.6);
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  max-width: 480px;
  margin-top: 16px;
  color: rgba(255,255,255,0.85);
}
.hero-ctas { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--kf-white);
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--kf-whero);
  border-color: var(--kf-whero);
}
.btn-primary:hover { background: #8f2423; border-color: #8f2423; }
.btn-outline:hover { background: var(--kf-white); color: var(--kf-black); }

/* Sections */
section { padding: 96px 0; }
.section-dark { background: var(--kf-black); }
.section-charcoal { background: var(--kf-charcoal); }
.section-harakeke { background: var(--kf-harakeke); }

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kf-whero);
  margin-bottom: 12px;
  font-weight: 400;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col img {
  width: 100%;
  border-radius: 2px;
  display: block;
}
.two-col h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 20px; }
.two-col p { max-width: 480px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }

/* Community grid */
.community-heading { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.community-heading h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.community-heading p { margin-top: 16px; color: rgba(255,255,255,0.85); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* Intro offer callout */
.offer-callout {
  text-align: center;
  padding: 96px 24px;
  background: var(--kf-charcoal);
  border-top: 1px solid rgba(172,46,45,0.3);
  border-bottom: 1px solid rgba(172,46,45,0.3);
}
.offer-callout .eyebrow { color: var(--kf-whero); }
.offer-callout h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--kf-white); }
.offer-callout p { max-width: 520px; margin: 20px auto 32px; color: rgba(255,255,255,0.75); }
.lead-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.lead-form input {
  flex: 1 1 150px;
  padding: 14px 16px;
  background: var(--kf-black);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--kf-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border-radius: 2px;
}
.lead-form button {
  background: var(--kf-whero);
  border: none;
  color: var(--kf-white);
  cursor: pointer;
  padding: 14px 28px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  flex: 1 1 100%;
}
.lead-form button:hover { background: #8f2423; }

/* Coach cards */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.coach-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.coach-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.coach-card-body { padding: 24px; }
.coach-card-body .role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kf-whero);
  margin-bottom: 8px;
}
.coach-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.coach-card-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.interview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.interview-grid-3,
.interview-grid-4 {
  display: grid;
  gap: 20px;
  justify-content: center;
}
.interview-grid-3 { grid-template-columns: repeat(3, minmax(220px, 260px)); }
.interview-grid-4 { grid-template-columns: repeat(4, minmax(220px, 260px)); }
.interview-card {
  display: block;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.interview-card:hover { border-color: var(--kf-whero); }
.interview-card .name {
  color: var(--kf-white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.interview-card .watch {
  color: var(--kf-whero);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.placeholder-note {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px dashed rgba(255,255,255,0.25);
  padding: 4px 8px;
  border-radius: 2px;
}
.coach-stats {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.coach-stats div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.coach-stats dt {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.coach-stats dd {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  text-align: right;
  margin: 0;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card .quote {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.testimonial-card .quote::before { content: "\201C"; color: var(--kf-whero); font-size: 1.4rem; }
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-person .name { font-size: 0.9rem; }
.testimonial-person .tag { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* Programming cycle steps */
.cycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.cycle-step {
  border-top: 2px solid var(--kf-whero);
  padding-top: 20px;
}
.cycle-step .step-num {
  font-family: 'KnoxFit Display', 'Inter', sans-serif;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.cycle-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}
.cycle-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--kf-white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--kf-whero);
  margin-left: 16px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 640px;
}

/* Instagram / social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.social-grid a {
  position: relative;
  display: block;
  overflow: hidden;
}
.social-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.85);
}
.social-grid a:hover img { transform: scale(1.05); filter: brightness(0.6); }
.social-handle {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
}
.social-handle a { color: var(--kf-whero); text-decoration: underline; }

/* Pricing tiers (intro offer options) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--kf-whero);
  background: rgba(172,46,45,0.06);
}
.pricing-card .tier-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kf-whero);
  margin-bottom: 12px;
}
.pricing-card .price {
  font-family: 'KnoxFit Display', 'Inter', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.pricing-card .price-desc {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}
.pricing-card .best-for {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Journey steps */
.journey-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 40px;
  counter-reset: journey;
}
.journey-step {
  flex: 1 1 150px;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.journey-step:last-child { border-right: none; }
.journey-step .j-num {
  font-family: 'KnoxFit Display', 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--kf-whero);
  margin-bottom: 8px;
}
.journey-step .j-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* Movement pillars / session types */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.week-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.pillar-tile {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 20px 16px;
  text-align: center;
}
.pillar-tile h3 {
  font-size: 0.95rem;
  text-transform: none;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}
.pillar-tile p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* Newsletter signup */
.newsletter-section {
  background: var(--kf-charcoal);
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.newsletter-section p {
  max-width: 480px;
  margin: 16px auto 0;
  color: rgba(255,255,255,0.75);
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 28px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1 1 240px;
  padding: 14px 16px;
  background: var(--kf-black);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--kf-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border-radius: 2px;
}
.newsletter-form button {
  background: var(--kf-whero);
  border: none;
  color: var(--kf-white);
  cursor: pointer;
  padding: 14px 28px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #8f2423; }
.newsletter-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}

/* Footer */
footer {
  background: var(--kf-black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 0.95rem; }
.footer-logo img { height: 22px; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.hidden-field {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.form-success h3 {
  font-family: 'KnoxFit Display', sans-serif;
  font-weight: normal;
  color: var(--kf-white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.form-success p {
  color: rgba(255,255,255,0.85);
  max-width: 480px;
}
.form-success-inline {
  padding: 12px 0;
}
.form-success-inline p {
  color: var(--kf-white);
  font-weight: 500;
}

@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .coach-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .cycle-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .week-grid { grid-template-columns: 1fr 1fr; }
  .interview-grid-3, .interview-grid-4 { grid-template-columns: 1fr 1fr; }
  .journey-steps { flex-direction: column; }
  .journey-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
