:root {
  --ink: #201c1a;
  --charcoal: #302a27;
  --muted: #6f635e;
  --soft: #f5efe8;
  --paper: #fffdf9;
  --line: rgba(32, 28, 26, 0.14);
  --rose: #9f455b;
  --rose-deep: #7d3446;
  --sage: #72806d;
  --gold: #b59568;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(32, 28, 26, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
button,
input,
select,
textarea {
  font: 500 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 12px 40px rgba(32, 28, 26, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(158px, 21vw, 268px);
  line-height: 0;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.brand-logo-dark,
.site-header.is-scrolled .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark {
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-cta {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px clamp(18px, 5vw, 72px) 58px;
  color: var(--white);
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(20, 17, 16, 0.82), rgba(20, 17, 16, 0.46) 45%, rgba(20, 17, 16, 0.05) 76%),
    url("./assets/hero-people-training.jpg");
  background-position: center 42%;
  background-size: cover;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 26%, rgba(181, 149, 104, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(32, 28, 26, 0.56), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 810px;
  padding-bottom: 68px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ecc3cb;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 750;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.4vw, 4.55rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

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

.button,
.call-link,
.contact-form button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  color: var(--white);
  background: var(--rose);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  z-index: 1;
  width: min(384px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(32, 28, 26, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
  margin-bottom: 9px;
  color: #ecc3cb;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.statement,
.approach,
.coach,
.contact {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

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

.statement div {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
}

.statement h2,
.statement p {
  margin-bottom: 0;
}

.statement p,
.approach-copy p,
.coach-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 36px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.coaching-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 56px rgba(32, 28, 26, 0.08);
}

.coaching-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.coaching-card div {
  padding: 24px;
}

.coaching-card p {
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coaching-card span {
  color: var(--muted);
}

.dark-card {
  color: var(--white);
  background: var(--charcoal);
}

.dark-card span {
  color: rgba(255, 255, 255, 0.74);
}

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

.approach-copy h2 {
  font-size: clamp(2.05rem, 3.8vw, 4.1rem);
}

.approach-list {
  display: grid;
  gap: 14px;
}

.approach-list article,
.results-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--soft);
}

.approach-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-weight: 950;
}

.approach-list p,
.results-grid p {
  margin: 0;
  color: var(--muted);
}

.coach {
  grid-template-columns: minmax(300px, 0.82fr) minmax(300px, 0.75fr);
  align-items: center;
}

.coach-media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1.05 / 1;
  box-shadow: var(--shadow);
}

.coach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rose-deep);
  background: var(--paper);
  font-weight: 850;
}

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

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

.results-grid strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(32, 28, 26, 0.92), rgba(125, 52, 70, 0.94)),
    var(--rose-deep);
}

.contact .eyebrow,
.contact-copy p {
  color: #eec8cf;
}

.call-link {
  margin-top: 14px;
  color: var(--rose-deep);
  background: var(--paper);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px;
  color: var(--ink);
  background: var(--soft);
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  resize: vertical;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

footer span,
footer a {
  font-weight: 850;
}

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

  .nav-links {
    display: none;
  }

  .statement,
  .statement div,
  .approach,
  .coach,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .coaching-card {
    min-height: auto;
  }
}

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

  .brand {
    width: 142px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 13px;
  }

  .hero {
    min-height: 96vh;
    padding: 106px 18px 30px;
  }

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

  .hero-inner {
    padding-bottom: 230px;
  }

  h1 {
    font-size: clamp(2.85rem, 16vw, 4.4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    bottom: 20px;
    width: auto;
  }

  section {
    padding: 64px 18px;
  }

  .coaching-card img {
    min-height: 250px;
  }

  .coach-media {
    aspect-ratio: 1 / 0.92;
  }

  footer {
    flex-direction: column;
  }
}
