:root {
  --ink: #1f2a2f;
  --muted: #647070;
  --paper: #fbfaf6;
  --cream: #f2eee4;
  --sage: #9fb9ab;
  --sage-dark: #52786f;
  --clay: #5f7f9a;
  --blue: #2f566e;
  --line: rgba(31, 42, 47, 0.14);
  --shadow: 0 24px 80px rgba(37, 68, 79, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: var(--sage-dark);
  font-family: "Libre Baskerville", Georgia, serif;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--paper) !important;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.section,
.intro,
.how-it-works,
.beliefs,
.good-fit,
.approach,
.contact,
.footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 48px 0 70px;
}

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

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

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.2vw, 6.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.25rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-lede,
.hero-support,
.section-heading p,
.intro p,
.contact p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
}

.hero-support {
  max-width: 680px;
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 3px solid rgba(166, 107, 81, 0.35);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: var(--paper);
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.45);
}

.button.full {
  width: 100%;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: -24px;
  bottom: 26px;
  width: min(310px, 82%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 7px;
  background: rgba(251, 250, 246, 0.92);
  box-shadow: 0 16px 50px rgba(31, 37, 34, 0.16);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 5vw, 76px);
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.how-it-works {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

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

.steps-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.48);
}

.steps-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--clay);
  font-weight: 800;
}

.steps-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.beliefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-bottom: 82px;
}

.beliefs article {
  min-height: 240px;
  padding: 28px;
  background: var(--cream);
}

.beliefs span {
  display: block;
  margin-bottom: 44px;
  color: var(--clay);
  font-weight: 800;
}

.beliefs p {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.32;
}

.section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 790px;
}

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

.service-card,
.price-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.48);
}

.service-card {
  padding: 28px;
}

.service-card.featured {
  background: var(--blue);
  color: var(--paper);
}

.service-card p {
  color: var(--muted);
}

.service-card.featured p,
.service-card.featured li {
  color: rgba(251, 250, 246, 0.82);
}

.good-fit {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

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

.fit-list li {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--cream);
  font-weight: 700;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 10px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.price-panel {
  padding: 30px;
}

.price {
  margin: 18px 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.price span {
  display: inline-block;
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.about {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 7px;
}

.about-copy p {
  color: var(--muted);
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 44px;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

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

.approach-list li {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.48);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: center;
  padding: 78px clamp(22px, 5vw, 58px);
  border-radius: 7px;
  background: var(--cream);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.contact-panel > a:not(.button) {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0;
  color: var(--muted);
}

.footer span {
  color: var(--ink);
  font-weight: 800;
}

.footer nav {
  display: flex;
  gap: 18px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 71px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .hero,
  .intro,
  .good-fit,
  .section-heading,
  .about,
  .approach,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-note {
    right: 14px;
  }

  .beliefs,
  .steps-grid,
  .service-grid,
  .pricing-layout,
  .fit-list,
  .approach-list {
    grid-template-columns: 1fr;
  }

  .beliefs article {
    min-height: auto;
  }

  .beliefs span {
    margin-bottom: 22px;
  }

  .contact {
    padding: 58px 22px;
  }
}

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

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

  .hero,
  .section,
  .intro,
  .how-it-works,
  .beliefs,
  .good-fit,
  .approach,
  .contact,
  .footer {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .section {
    padding: 68px 0;
  }

  .how-it-works,
  .good-fit {
    padding: 68px 0;
  }

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

  .footer nav {
    flex-wrap: wrap;
  }
}
