:root {
  --ink: #19211f;
  --muted: #5b6864;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --sage: #8ea99d;
  --teal: #164d50;
  --coral: #cf6f5f;
  --plum: #5a3558;
  --gold: #d4a84f;
  --line: rgba(25, 33, 31, 0.13);
  --shadow: 0 18px 50px rgba(15, 35, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-scrolled .site-header {
  background: rgba(255, 253, 248, 0.93);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(25, 33, 31, 0.08);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body.nav-scrolled .site-header {
  color: var(--ink);
}

.brand,
.main-nav,
.hero-actions,
.trust-row,
.site-footer {
  display: flex;
  align-items: center;
}

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.main-nav {
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.header-cta {
  justify-content: center;
  padding: 0 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-art,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  transform-origin: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 26, 26, 0.86) 0%, rgba(12, 26, 26, 0.62) 42%, rgba(12, 26, 26, 0.2) 76%),
    linear-gradient(0deg, rgba(12, 26, 26, 0.55) 0%, rgba(12, 26, 26, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  padding: 128px 0 78px;
  margin-left: clamp(18px, 7vw, 92px);
}

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

.hero .eyebrow {
  color: #ffd9d1;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  line-height: 1.05;
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px rgba(119, 43, 35, 0.25);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.section,
.section-band {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 54px);
}

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

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro-grid,
.approach-grid,
.call-grid,
.stories-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: center;
}

.intro p:not(.eyebrow),
.approach p,
.call p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

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

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

.program-card {
  min-height: 266px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 900;
}

.program-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.approach {
  background: linear-gradient(90deg, var(--teal) 0%, #183838 100%);
  color: #fff;
}

.approach .eyebrow {
  color: #ffd0c8;
}

.approach p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 54px;
  padding: 15px 18px 15px 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 18px;
  content: "✓";
  color: #ffd0c8;
  font-weight: 900;
}

.quote-panel {
  padding-right: clamp(0px, 3vw, 46px);
}

blockquote {
  color: var(--plum);
  font-size: clamp(2.05rem, 4.2vw, 4.35rem);
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.metrics {
  display: grid;
  gap: 16px;
}

.metrics div {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.metrics strong {
  color: var(--teal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-weight: 800;
}

.call {
  background:
    linear-gradient(135deg, rgba(212, 168, 79, 0.22), rgba(142, 169, 157, 0.28)),
    var(--cream);
}

.consult-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

.consult-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

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

  .main-nav {
    display: none;
  }

  .intro-grid,
  .approach-grid,
  .call-grid,
  .stories-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 145px;
    line-height: 1.1;
  }

  .header-cta {
    padding: 0 13px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 91vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 26, 26, 0.86) 0%, rgba(12, 26, 26, 0.7) 54%, rgba(12, 26, 26, 0.46) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.5rem);
  }

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

  .trust-row span {
    width: 100%;
  }

  .metrics div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
