:root {
  --cream: #faf4ee;
  --warm: #f2e4d8;
  --blush: #ecd1c4;
  --ink: #5b3b31;
  --muted: #776156;
  --clay: #bf705e;
  --clay-dark: #9f594b;
  --sage: #969886;
  --line: rgba(169, 116, 96, 0.26);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, Montserrat, Helvetica, Arial, sans-serif;
  --script: "Allura", "Snell Roundhand", "Apple Chancery", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(20px, 6vw, 110px);
  background: rgba(250, 244, 238, 0.95);
  border-bottom: 1px solid rgba(91, 59, 49, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  white-space: nowrap;
}

.nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6c5147;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a.active::after,
.nav a:hover::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--clay);
  content: "";
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  background: var(--clay);
  box-shadow: 0 10px 22px rgba(159, 89, 75, 0.22);
  color: #fffdf9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-cta:hover,
.button:hover {
  background: var(--clay-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(330px, 0.86fr);
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(250, 244, 238, 0.98) 0%, rgba(250, 244, 238, 0.84) 38%, rgba(250, 244, 238, 0.14) 66%),
    radial-gradient(circle at 22% 30%, rgba(236, 209, 196, 0.52), transparent 34%),
    var(--cream);
  overflow: hidden;
}

.hero-copy {
  z-index: 1;
  align-self: center;
  padding: 54px 20px 44px clamp(34px, 8vw, 118px);
}

.hero-title {
  margin: 0;
  color: #74483c;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 5.2vw, 4.7rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-title span,
.testimonial h2 {
  color: var(--clay);
  font-family: var(--script);
  font-size: 0.84em;
  font-weight: 400;
}

.hero-text {
  max-width: 365px;
  margin: 30px 0 28px;
  color: #463934;
  font-size: 1.03rem;
}

.trust {
  margin: 22px 0 0;
  color: #8c665b;
  font-size: clamp(0.62rem, 0.82vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-image {
  min-height: 520px;
  background: url("assets/hero-coach.png") center top / cover no-repeat;
}

.section {
  padding-right: clamp(24px, 8vw, 110px);
  padding-left: clamp(24px, 8vw, 110px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(250px, 390px) minmax(320px, 510px) 190px;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-top: 54px;
  padding-bottom: 32px;
  background: #fffaf5;
}

.portrait {
  width: 100%;
  min-height: 300px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(91, 59, 49, 0.08);
}

.eyebrow,
.intro-copy .eyebrow {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.intro-copy h2 {
  margin: 0 0 18px;
  color: var(--clay);
  font-family: var(--script);
  font-size: clamp(2.15rem, 3.6vw, 3.2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.95;
}

.intro-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 0 18px;
  color: #3f3430;
}

.botanical,
.sprig,
.footer-sprig,
.specialty-botanical {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.95;
  filter:
    contrast(1.18)
    saturate(1.18)
    drop-shadow(0 0 0.45px rgba(116, 72, 60, 0.8))
    drop-shadow(0 0 0.45px rgba(116, 72, 60, 0.62));
  pointer-events: none;
}

.botanical {
  max-width: 245px;
  justify-self: end;
}

.sprig {
  grid-row: 1 / span 2;
  max-width: 118px;
  align-self: start;
  justify-self: center;
}

.footer-sprig {
  max-width: 112px;
  align-self: start;
}

.support-panel {
  margin: 0 clamp(16px, 4vw, 54px) 0;
  padding-top: 22px;
  padding-bottom: 30px;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(169, 116, 96, 0.18);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 18px 50px rgba(91, 59, 49, 0.06);
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.support-panel h2 {
  margin-bottom: 22px;
  text-align: center;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.support-grid article {
  padding: 12px 26px 0;
  text-align: center;
}

.support-grid article + article {
  border-left: 1px solid var(--line);
}

.support-grid span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 12px;
  border: 1px solid rgba(191, 112, 94, 0.32);
  border-radius: 50%;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 2.1rem;
}

h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.12;
}

.support-grid p,
.pathways p,
.footer p {
  margin: 0;
  color: #564842;
  font-size: 0.94rem;
}

.specialties {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(110px, 165px) minmax(250px, 380px);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  padding-top: 50px;
  padding-bottom: 48px;
  background:
    linear-gradient(rgba(246, 225, 213, 0.72), rgba(246, 225, 213, 0.72)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.25) 0 2px, transparent 2px 10px);
}

.specialty-botanical {
  max-width: 160px;
  justify-self: center;
}

.specialties h2::after {
  display: block;
  width: 58px;
  height: 1px;
  margin: 14px 0 24px;
  background: var(--clay);
  content: "";
}

.leaf-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px 52px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.leaf-list li {
  position: relative;
  padding-left: 26px;
  color: #493b36;
}

.leaf-list li::before {
  position: absolute;
  left: 0;
  color: var(--clay);
  content: "❧";
}

.specialties img {
  width: 100%;
  aspect-ratio: 1.45;
  border-radius: 52% 52% 0 0;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(91, 59, 49, 0.1);
}

.specialties .specialty-botanical {
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fffaf5;
}

.pathways article {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 24px;
  padding: 44px clamp(22px, 3vw, 40px);
}

.pathways article + article {
  border-left: 1px solid var(--line);
}

.pathways h2 {
  grid-column: 2;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
}

.pathways p,
.pathways a {
  grid-column: 2;
}

.pathways a {
  margin-top: 8px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(340px, 1.35fr);
  gap: 48px;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 34px;
  background: #f7e3d7;
}

.testimonial .eyebrow {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.testimonial h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

blockquote {
  position: relative;
  margin: 0;
  color: #493b36;
}

blockquote > span {
  float: left;
  margin: -20px 14px 0 0;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  opacity: 0.55;
}

cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
}

.closing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  background: var(--sage);
  color: #fffaf5;
}

.closing p {
  display: grid;
  gap: 2px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.closing-script {
  font-family: var(--script);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 400;
}

.button.light {
  background: #fffaf5;
  color: #9f594b;
  box-shadow: 0 8px 18px rgba(70, 57, 52, 0.18);
}

.footer {
  display: grid;
  grid-template-columns: 120px 1.2fr 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  padding: 34px clamp(28px, 10vw, 150px) 42px;
  background: #fffaf5;
}

.footer h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.footer a {
  display: block;
  margin-top: 4px;
  color: #7d574c;
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro,
  .pathways,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 26px;
  }

  .support-grid article:first-child {
    border-top: 0;
  }

  .pathways article,
  .pathways article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 12px 18px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.62rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 48px 24px 34px;
  }

  .hero-image {
    min-height: 360px;
    order: -1;
  }

  .trust {
    line-height: 1.8;
  }

  .leaf-list,
  .specialties,
  .testimonial,
  .footer {
    grid-template-columns: 1fr;
  }

  .intro {
    padding-top: 36px;
  }

  .portrait {
    min-height: 260px;
  }

  .specialties img {
    max-width: 380px;
  }

  .pathways article {
    grid-template-columns: 70px 1fr;
    padding: 34px 24px;
  }

  .botanical {
    display: none;
  }

  .closing {
    justify-content: flex-start;
  }

  .footer-sprig {
    display: none;
  }
}
