:root {
  --ink: #10231f;
  --ink-soft: #30453f;
  --paper: #f8f3ea;
  --paper-deep: #ebe1d2;
  --mint: #dcebdd;
  --moss: #5e7256;
  --rust: #a65f3f;
  --rust-dark: #7a3d28;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 35, 31, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 18, 16, 0.74), rgba(10, 18, 16, 0));
}

.brand,
.site-nav,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.site-nav {
  gap: 20px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-training.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 21, 18, 0.86) 0%, rgba(9, 21, 18, 0.68) 38%, rgba(9, 21, 18, 0.18) 72%),
    linear-gradient(180deg, rgba(9, 21, 18, 0.2) 0%, rgba(9, 21, 18, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0 36px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #f0b58e;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.9rem, 6.6vw, 5.35rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 820;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 820;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--rust);
  box-shadow: 0 14px 40px rgba(122, 61, 40, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--rust-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.button-outline {
  color: var(--ink);
  border-color: rgba(16, 35, 31, 0.22);
  background: transparent;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin: 48px 0 0;
}

.hero-facts div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 760;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 94px 0;
}

.section-band {
  background: var(--paper-deep);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.body-copy {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.body-copy p,
.story-card p,
.quote-panel p,
.fit-list p,
.price-card p,
.faq-list p,
.final-cta p,
.steps p {
  margin: 0;
}

.body-copy p + p,
.story-card p + p {
  margin-top: 18px;
}

.story {
  background:
    linear-gradient(90deg, rgba(248, 243, 234, 0.94), rgba(248, 243, 234, 0.74)),
    radial-gradient(circle at 85% 20%, rgba(220, 235, 221, 0.8), transparent 36%);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.story-card,
.quote-panel,
.price-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-card {
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
}

.story-card h2 {
  margin-bottom: 22px;
}

.quote-panel {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 40px);
  color: var(--white);
  background: var(--ink);
}

.quote-panel p {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 780;
  line-height: 1.08;
}

.quote-panel span {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 700;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 720px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  min-height: 260px;
  padding: 26px;
  border-left: 4px solid var(--moss);
  border-radius: var(--radius);
  background: var(--white);
}

.step-number {
  display: block;
  margin-bottom: 28px;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 900;
}

.steps h3,
.fit-list h3,
.price-card h3 {
  margin-bottom: 14px;
}

.steps p,
.fit-list p,
.price-card p,
.faq-list p,
.final-cta p {
  color: var(--ink-soft);
}

.fit {
  background: var(--paper);
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fit-list article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(16, 35, 31, 0.12);
  border-radius: var(--radius);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
}

.price-card.featured {
  color: var(--white);
  background: var(--ink);
}

.price-card.featured p,
.price-card.featured .plan-label {
  color: rgba(255, 255, 255, 0.75);
}

.plan-label {
  margin: 0 0 22px;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.price-card h3 span {
  display: block;
  margin-top: 4px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
}

.price-card .consult-price {
  font-size: clamp(2.15rem, 3.3vw, 3.45rem);
  line-height: 1.05;
}

.price-card .button {
  width: 100%;
  margin-top: 34px;
}

.price-card p + .button {
  margin-top: 34px;
}

.faq {
  background: var(--paper);
}

.local-seo {
  background: var(--mint);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 68px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(16, 35, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 820;
}

details p {
  padding: 0 22px 20px;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 35, 31, 0.96), rgba(74, 92, 67, 0.9)),
    var(--ink);
}

.final-cta .section-inner {
  max-width: 860px;
  text-align: center;
}

.final-cta p {
  max-width: 640px;
  margin: 20px auto 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.site-footer {
  padding: 26px 18px;
  color: rgba(255, 255, 255, 0.64);
  background: #091310;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .two-column,
  .story-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .fit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card,
  .steps article,
  .fit-list article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
    gap: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 21, 18, 0.58) 0%, rgba(9, 21, 18, 0.91) 56%, rgba(9, 21, 18, 0.96) 100%);
  }

  .hero-content {
    width: auto;
    max-width: none;
    margin-right: 14px;
    margin-left: 14px;
    padding-bottom: 30px;
  }

  .hero .eyebrow {
    max-width: 320px;
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.06em;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.25rem);
  }

  .button,
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .hero-facts,
  .hero-actions {
    max-width: calc(100vw - 28px);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 28px;
  }

  .hero-facts div {
    min-height: auto;
    padding: 14px;
  }

  .section-inner {
    width: calc(100% - 28px);
    max-width: 1120px;
    padding: 66px 0;
  }

  .fit-list {
    grid-template-columns: 1fr;
  }

  .story-card,
  .quote-panel,
  .price-card,
  .steps article,
  .fit-list article {
    padding: 22px;
  }

  .price-card .button,
  .price-card p + .button {
    margin-top: 38px;
  }

  .quote-panel {
    min-height: 280px;
  }
}
