:root {
  --black: #0f1010;
  --charcoal: #181a1b;
  --ink: #242626;
  --gray: #6f7472;
  --soft-gray: #f4f2ee;
  --line: #dedbd2;
  --white: #ffffff;
  --gold: #d6a93d;
  --gold-soft: #f3d887;
  --shadow: 0 28px 90px rgba(15, 16, 16, 0.16);
  --radius: 8px;
  --header-height: 82px;
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 2rem, 1160px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 219, 210, 0.74);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  transition: box-shadow 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(15, 16, 16, 0.08);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  width: 132px;
  height: 64px;
  flex: 0 0 132px;
  object-fit: contain;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 240ms ease, transform 240ms ease;
}

.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--gray);
  font-weight: 700;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--black);
  background: var(--soft-gray);
  outline: none;
  transform: translateY(-1px);
}

.nav-menu .nav-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

/* Sections */
.section {
  padding: clamp(4.75rem, 9vw, 8rem) 0;
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(94svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(4.8rem, 7.5vw, 7.4rem) 0 clamp(4.25rem, 7vw, 6.8rem);
  color: var(--white);
}

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

.hero-media {
  z-index: -2;
  overflow: hidden;
  background: var(--black);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 16, 16, 0.82) 0%, rgba(15, 16, 16, 0.62) 42%, rgba(15, 16, 16, 0.2) 100%),
    linear-gradient(0deg, rgba(15, 16, 16, 0.36), rgba(15, 16, 16, 0.06));
}

.hero-inner,
.split,
.coaching,
.why,
.credentials {
  display: grid;
  gap: clamp(2.4rem, 6vw, 5rem);
}

.hero-copy {
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--black);
  line-height: 0.96;
  font-weight: 800;
}

h1 {
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: clamp(3.35rem, 8vw, 6.95rem);
  max-width: 12.8ch;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  max-width: 10.5ch;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.2;
}

.hero-lede,
.section-intro p:not(.eyebrow),
.coaching-copy p,
.why-copy p,
.final-cta p {
  color: var(--gray);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  max-width: 620px;
}

.hero-lede {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.95rem 1.35rem;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 0 0 rgba(15, 16, 16, 0);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(15, 16, 16, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #000000;
}

.btn-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--black);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
}

.trust-line {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.support-image {
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(214, 169, 61, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.support-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.support-image:hover img {
  transform: scale(1.035);
}

.section-quiet {
  background: var(--soft-gray);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.feature-list article,
.step-card,
.testimonial-card,
.credential-grid div,
.quote-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.45rem, 3.3vw, 2.1rem);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-list article {
  border-radius: 0;
}

.feature-list span,
.step-card span {
  display: inline-block;
  margin-bottom: 1.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-list p,
.step-card p,
.testimonial-card p,
.credential-grid span {
  margin-bottom: 0;
  color: var(--gray);
}

.coaching {
  align-items: center;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--black);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.section-heading {
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}

.section-heading h2 {
  max-width: 12ch;
}

.steps,
.testimonials,
.credential-grid {
  display: grid;
  gap: 1.15rem;
}

.step-card,
.testimonial-card,
.credential-grid div {
  border: 1px solid var(--line);
}

.feature-list article:hover,
.step-card:hover,
.testimonial-card:hover,
.credential-grid div:hover {
  border-color: rgba(214, 169, 61, 0.42);
  box-shadow: 0 20px 60px rgba(15, 16, 16, 0.1);
  transform: translateY(-4px);
}

.why {
  align-items: center;
}

.quote-panel {
  background: var(--charcoal);
  border: 1px solid rgba(214, 169, 61, 0.36);
}

.quote-panel p {
  margin-bottom: 1.35rem;
  color: var(--white);
  font-size: clamp(1.65rem, 4.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
}

.quote-panel span {
  color: var(--gold-soft);
  font-weight: 800;
}

.credential-grid strong,
.testimonial-card span {
  display: block;
  color: var(--black);
  font-weight: 800;
}

.credential-grid strong {
  margin-bottom: 0.35rem;
}

.testimonial-card {
  box-shadow: 0 14px 50px rgba(15, 16, 16, 0.06);
}

.testimonial-card p {
  margin-bottom: 1.4rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.testimonial-card span {
  color: var(--gray);
  font-size: 0.88rem;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(214, 169, 61, 0.12), transparent 42%),
    var(--white);
}

.final-cta-inner {
  max-width: 850px;
}

.final-cta h2 {
  max-width: 10ch;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  padding: 2.35rem 0;
}

.footer-inner,
.footer-contact {
  display: grid;
  gap: 1rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold-soft);
  outline: none;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 720px) {
  .shell {
    width: min(100% - 3rem, 1160px);
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding: 0.65rem 0.8rem;
    font-size: 0.86rem;
  }

  .nav-menu .nav-cta {
    margin-left: 0.35rem;
    padding-inline: 1rem;
  }

  .coaching,
  .why {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    align-items: center;
  }

  .split,
  .credentials {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  }

  .coaching .support-image {
    order: 2;
  }

  .steps,
  .testimonials,
  .credential-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-contact {
    display: flex;
    gap: 1.5rem;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 112px;
    height: 56px;
    flex-basis: 112px;
  }

  h1 {
    font-size: clamp(2.8rem, 13.5vw, 3.35rem);
    max-width: 10.6ch;
  }

  .hero-media img {
    object-position: 72% center;
  }

  .hero {
    min-height: calc(91svh - var(--header-height));
  }

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