/* =========================================================
   NOMADCOACH
   Main stylesheet
========================================================= */


/* =========================================================
   RESET + GLOBAL VARIABLES
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --background: #f4f1ec;
  --surface: #ffffff;

  --text: #131313;
  --muted: #67645f;

  --dark: #141414;
  --dark-soft: #222222;

  --accent: #b59a56;

  --line: #d4d0ca;
  --line-dark: #383838;

  --page-width: 1240px;
}

body {
  margin: 0;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;

  background: var(--background);
  color: var(--text);

  line-height: 1.5;

  overflow-x: hidden;
}

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

a {
  color: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  width: min(var(--page-width), calc(100% - 48px));
  min-height: 88px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
}

.logo {
  flex-shrink: 0;

  color: var(--text);

  text-decoration: none;

  font-size: 1.1rem;
  font-weight: 800;

  letter-spacing: 0.08em;
}

.logo span {
  color: var(--accent);
}

.desktop-nav {
  display: flex;
  align-items: center;

  gap: 32px;

  margin-left: auto;
}

.desktop-nav a {
  position: relative;

  color: var(--text);

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 500;

  transition: opacity 0.2s ease;
}

.desktop-nav a:hover {
  opacity: 0.55;
}

.header-cta {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding: 0 18px;

  background: var(--dark);
  color: #ffffff;

  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 650;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  width: min(var(--page-width), calc(100% - 48px));

  min-height: calc(100vh - 88px);

  margin: 0 auto;

  padding: 70px 0 90px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(400px, 0.85fr);

  gap: 72px;

  align-items: center;
}


/* HERO COPY */

.hero-copy {
  min-width: 0;

  max-width: 720px;
}

.eyebrow {
  margin: 0 0 26px;

  color: var(--accent);

  font-size: 0.75rem;
  font-weight: 800;

  line-height: 1.4;

  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 800px;

  margin: 0;

  font-size: clamp(3.8rem, 6.7vw, 7rem);

  line-height: 0.9;

  letter-spacing: -0.065em;

  font-weight: 760;
}

.hero h1 span {
  display: block;

  margin-top: 8px;

  color: var(--muted);

  font-weight: 430;
}

.hero-text {
  max-width: 650px;

  margin: 34px 0 0;

  color: #3f3d39;

  font-size: clamp(1.05rem, 1.5vw, 1.25rem);

  line-height: 1.65;
}


/* HERO BUTTONS */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 38px;
}

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 24px;

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 650;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--dark);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid #aaa59d;

  color: var(--text);

  background: transparent;
}


/* HERO PROOF POINTS */

.hero-proof {
  width: 100%;

  margin-top: 52px;
  padding-top: 24px;

  border-top: 1px solid var(--line);

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.hero-proof strong {
  font-size: 0.9rem;
}

.hero-proof span {
  color: var(--muted);

  font-size: 0.77rem;

  line-height: 1.45;
}


/* =========================================================
   HERO BLACK PANEL
========================================================= */

.hero-panel {
  width: 100%;
  max-width: 500px;

  min-height: 580px;

  justify-self: end;

  padding: 46px;

  background: var(--dark);
  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-label {
  margin: 0 0 20px;

  color: var(--accent);

  font-size: 0.7rem;
  font-weight: 800;

  line-height: 1.4;

  letter-spacing: 0.15em;
}

.hero-panel h2 {
  max-width: 400px;

  margin: 0 0 42px;

  font-size: clamp(2rem, 3vw, 3.2rem);

  line-height: 1;

  letter-spacing: -0.045em;
}

.system-item {
  padding: 21px 0;

  border-top: 1px solid var(--line-dark);

  display: grid;

  grid-template-columns: 42px 1fr;

  gap: 15px;
}

.system-item > span {
  color: var(--accent);

  font-size: 0.72rem;
  font-weight: 700;
}

.system-item strong {
  display: block;

  margin-bottom: 5px;

  font-size: 0.97rem;
}

.system-item p {
  margin: 0;

  color: #aaaaaa;

  font-size: 0.84rem;

  line-height: 1.55;
}

.panel-footer {
  margin-top: 30px;
  padding-top: 22px;

  border-top: 1px solid var(--line-dark);

  color: #888888;

  font-size: 0.75rem;

  line-height: 1.5;

  letter-spacing: 0.04em;
}


/* =========================================================
   COACHING SECTION
========================================================= */

.coaching-section {
  padding:
    120px
    max(24px, calc((100% - var(--page-width)) / 2));

  background: var(--surface);
}

.section-intro {
  max-width: 820px;

  margin-bottom: 70px;
}

.section-label {
  margin: 0 0 22px;

  color: var(--accent);

  font-size: 0.72rem;
  font-weight: 800;

  line-height: 1.4;

  letter-spacing: 0.16em;
}

.section-intro h2 {
  margin: 0 0 30px;

  font-size: clamp(2.8rem, 5vw, 5rem);

  line-height: 0.98;

  letter-spacing: -0.05em;
}

.section-intro h2 span {
  display: block;

  color: var(--muted);

  font-weight: 430;
}

.section-intro > p:not(.section-label) {
  max-width: 700px;

  margin: 0 0 16px;

  color: #4e4b46;

  font-size: 1.08rem;

  line-height: 1.7;
}


/* =========================================================
   COACHING CARDS
========================================================= */

.coaching-paths {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}

.coaching-card {
  min-height: 570px;

  padding: 46px;

  background: var(--background);

  display: flex;
  flex-direction: column;
}

.coaching-card-dark {
  background: var(--dark);
  color: #ffffff;
}

.card-number {
  margin: 0 0 58px;

  color: var(--accent);

  font-size: 0.75rem;
  font-weight: 800;
}

.coaching-card h3 {
  margin: 0 0 20px;

  font-size: clamp(2rem, 3vw, 3.2rem);

  line-height: 1;

  letter-spacing: -0.04em;
}

.card-intro {
  max-width: 500px;

  margin: 0 0 30px;

  color: var(--muted);

  font-size: 1rem;

  line-height: 1.6;
}

.coaching-card-dark .card-intro {
  color: #b7b7b7;
}

.coaching-card ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.coaching-card li {
  padding: 13px 0;

  border-top: 1px solid #d5d0c8;

  font-size: 0.92rem;

  line-height: 1.45;
}

.coaching-card-dark li {
  border-color: #373737;
}

.card-note {
  margin: auto 0 0;

  padding-top: 35px;

  color: var(--muted);

  font-size: 0.85rem;

  line-height: 1.6;
}

.coaching-card-dark .card-note {
  color: #929292;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
  padding:
    120px
    max(24px, calc((100% - var(--page-width)) / 2));

  background: var(--background);
}

.about-heading {
  max-width: 900px;

  margin-bottom: 70px;
}

.about-heading h2 {
  margin: 0;

  font-size: clamp(3rem, 5.5vw, 5.8rem);

  line-height: 0.95;

  letter-spacing: -0.055em;
}

.about-heading h2 span {
  display: block;

  color: var(--muted);

  font-weight: 430;
}

.about-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.8fr);

  gap: 90px;

  align-items: start;
}


/* ABOUT STORY */

.about-story {
  max-width: 690px;
}

.about-story p {
  margin: 0 0 22px;

  color: #4b4945;

  font-size: 1.02rem;

  line-height: 1.75;
}

.about-story .about-lead {
  color: var(--text);

  font-size: clamp(1.3rem, 2vw, 1.65rem);

  line-height: 1.55;
}


/* =========================================================
   CREDENTIALS
========================================================= */

.credibility {
  border-top: 1px solid #ccc7bf;
}

.credential {
  padding: 26px 0;

  border-bottom: 1px solid #ccc7bf;

  display: grid;

  grid-template-columns: 40px 1fr;

  gap: 18px;
}

.credential > span {
  color: var(--accent);

  font-size: 0.72rem;
  font-weight: 800;
}

.credential strong {
  display: block;

  margin-bottom: 8px;

  font-size: 1rem;
}

.credential p {
  margin: 0;

  color: var(--muted);

  font-size: 0.88rem;

  line-height: 1.55;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .hero {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 48px;

    padding-top: 60px;
  }

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

  .hero-panel {
    max-width: none;

    min-height: auto;

    justify-self: stretch;
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .credibility {
    max-width: 720px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

  /* HEADER */

  .site-header {
    width: calc(100% - 36px);

    min-height: 72px;

    gap: 12px;
  }

  .logo {
    font-size: 0.95rem;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    min-height: 38px;

    padding: 0 14px;

    font-size: 0.78rem;
  }


  /* HERO */

  .hero {
    width: calc(100% - 36px);

    min-height: auto;

    padding: 50px 0 70px;

    grid-template-columns: 1fr;

    gap: 42px;
  }

  .eyebrow {
    margin-bottom: 20px;

    font-size: 0.67rem;

    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);

    line-height: 0.92;

    letter-spacing: -0.055em;
  }

  .hero h1 span {
    margin-top: 6px;
  }

  .hero-text {
    margin-top: 27px;

    font-size: 1rem;

    line-height: 1.65;
  }

  .hero-buttons {
    margin-top: 30px;

    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 42px;

    padding-top: 0;

    grid-template-columns: 1fr;

    gap: 0;
  }

  .hero-proof div {
    padding: 16px 0;

    border-bottom: 1px solid var(--line);
  }


  /* HERO PANEL */

  .hero-panel {
    min-height: auto;

    padding: 34px 26px;
  }

  .hero-panel h2 {
    margin-bottom: 30px;

    font-size: 2.3rem;
  }

  .system-item {
    grid-template-columns: 34px 1fr;
  }


  /* COACHING */

  .coaching-section {
    padding: 80px 18px;
  }

  .section-intro {
    margin-bottom: 45px;
  }

  .section-intro h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .section-intro > p:not(.section-label) {
    font-size: 1rem;
  }

  .coaching-paths {
    grid-template-columns: 1fr;
  }

  .coaching-card {
    min-height: auto;

    padding: 34px 26px;
  }

  .card-number {
    margin-bottom: 40px;
  }

  .card-note {
    margin-top: 35px;
  }


  /* ABOUT */

  .about-section {
    padding: 80px 18px;
  }

  .about-heading {
    margin-bottom: 45px;
  }

  .about-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.3rem);
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .about-story .about-lead {
    font-size: 1.25rem;
  }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

  .hero h1 {
    font-size: 3rem;
  }

  .hero-panel h2 {
    font-size: 2rem;
  }

  .coaching-card h3 {
    font-size: 2.2rem;
  }

  .about-heading h2 {
    font-size: 2.8rem;
  }

}/* =========================================================
   RESULTS / TESTIMONIALS
========================================================= */

.results-section {
  padding:
    120px
    max(24px, calc((100% - var(--page-width)) / 2));

  background: var(--surface);
}

.results-heading {
  max-width: 900px;

  margin-bottom: 70px;
}

.results-heading h2 {
  margin: 0;

  font-size: clamp(3rem, 5.4vw, 5.7rem);

  line-height: 0.96;

  letter-spacing: -0.055em;
}

.results-heading h2 span {
  display: block;

  color: var(--muted);

  font-weight: 430;
}

.results-intro {
  max-width: 650px;

  margin: 30px 0 0;

  color: #4e4b46;

  font-size: 1.08rem;

  line-height: 1.7;
}


/* TESTIMONIAL GRID */

.testimonial-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}


/* TESTIMONIAL CARD */

.testimonial-card {
  min-height: 430px;

  padding: 42px;

  background: var(--background);

  display: flex;
  flex-direction: column;
}

.testimonial-featured {
  background: #ece7df;
}

.testimonial-dark {
  background: var(--dark);
  color: #ffffff;
}


/* QUOTE MARK */

.testimonial-mark {
  margin-bottom: 42px;

  color: var(--accent);

  font-family: Georgia, serif;

  font-size: 4rem;

  line-height: 0.7;
}


/* TESTIMONIAL TEXT */

.testimonial-card blockquote {
  max-width: 560px;

  margin: 0;

  font-size: clamp(1.35rem, 2vw, 1.8rem);

  line-height: 1.45;

  letter-spacing: -0.025em;

  font-weight: 500;
}

.testimonial-dark blockquote {
  color: #ffffff;
}


/* CLIENT LABEL */

.testimonial-meta {
  margin-top: auto;
  padding-top: 45px;

  display: flex;
  flex-direction: column;

  gap: 4px;
}

.testimonial-meta strong {
  font-size: 0.92rem;
}

.testimonial-meta span {
  color: var(--muted);

  font-size: 0.8rem;
}

.testimonial-dark .testimonial-meta span {
  color: #8f8f8f;
}


/* EXPERIENCE STRIP */

.experience-strip {
  margin-top: 70px;
  padding: 28px 0;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  display: flex;
  flex-wrap: wrap;

  gap: 14px 30px;
}

.experience-strip span {
  color: var(--muted);

  font-size: 0.76rem;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* =========================================================
   RESULTS TABLET
========================================================= */

@media (max-width: 850px) {

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 380px;
  }

}


/* =========================================================
   RESULTS MOBILE
========================================================= */

@media (max-width: 720px) {

  .results-section {
    padding: 80px 18px;
  }

  .results-heading {
    margin-bottom: 45px;
  }

  .results-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .results-intro {
    font-size: 1rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .testimonial-card {
    min-height: auto;

    padding: 32px 26px;
  }

  .testimonial-mark {
    margin-bottom: 30px;
  }

  .testimonial-card blockquote {
    font-size: 1.3rem;
  }

  .testimonial-meta {
    margin-top: 45px;
    padding-top: 0;
  }

  .experience-strip {
    margin-top: 50px;

    gap: 12px 22px;
  }

}
