:root {
  --ink: #1e2925;
  --muted: #61716b;
  --sage: #7c958b;
  --sage-dark: #415e54;
  --leaf: #28493f;
  --cream: #f7f3ea;
  --paper: #fffcf6;
  --clay: #bd7359;
  --gold: #d7b56d;
  --line: rgba(30, 41, 37, 0.14);
  --shadow: 0 24px 70px rgba(20, 35, 31, 0.18);
}

* {
  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;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 252, 246, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 232px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: white;
  background: var(--leaf);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: #364842;
  font-size: 0.92rem;
  font-weight: 700;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
}

.header-action {
  padding: 0 18px;
  color: white;
  background: var(--leaf);
  box-shadow: 0 12px 28px rgba(40, 73, 63, 0.24);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 124px clamp(20px, 6vw, 86px) 58px;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.95) 0%, rgba(255, 252, 246, 0.78) 38%, rgba(255, 252, 246, 0.16) 78%),
    linear-gradient(0deg, rgba(30, 41, 37, 0.35), rgba(30, 41, 37, 0.02) 45%);
}

.hero-content {
  position: relative;
  max-width: 680px;
}

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

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

h1,
h2 {
  font-family: Lora, Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 580px;
  color: #40534c;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  color: white;
  background: var(--leaf);
  box-shadow: 0 16px 34px rgba(40, 73, 63, 0.28);
}

.button.secondary {
  color: var(--leaf);
  background: rgba(255, 252, 246, 0.84);
  border-color: rgba(40, 73, 63, 0.18);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-info div {
  min-height: 146px;
  padding: 34px clamp(22px, 5vw, 58px);
  background: #f9f6ef;
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 1rem;
}

.quick-info span {
  color: var(--muted);
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 6vw, 86px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro p,
.section-heading p,
.provider p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 470px;
}

.services {
  background: #eef2ec;
}

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

.service-grid article {
  min-height: 268px;
  padding: 28px;
  border: 1px solid rgba(65, 94, 84, 0.16);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.82);
}

.service-grid span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: white;
  background: var(--sage-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-grid p,
.steps p,
.credential-box span,
footer p {
  color: var(--muted);
}

.approach-band {
  padding: clamp(74px, 10vw, 124px) clamp(20px, 6vw, 86px);
  color: white;
  background: var(--leaf);
}

.approach-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.approach-band .section-kicker {
  color: var(--gold);
}

.approach-band h2 {
  color: white;
}

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

.steps div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  background: var(--clay);
}

.steps p {
  color: rgba(255, 255, 255, 0.74);
}

.provider-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff9ee;
  box-shadow: var(--shadow);
}

.credential-box {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  color: white;
  background: #314d44;
}

.credential-box strong {
  font-family: Lora, Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.credential-box span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(74px, 10vw, 128px) clamp(20px, 6vw, 86px);
  background: #e8ddd0;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-card a:not(.button),
.contact-card span {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--leaf);
  font-weight: 800;
}

.contact-card .button {
  margin-top: 8px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 86px);
  background: var(--ink);
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

footer p:first-child {
  color: white;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .quick-info,
  .intro-grid,
  .section-heading,
  .approach-inner,
  .provider-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .service-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 18px 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 252, 246, 0.97), rgba(255, 252, 246, 0.82)),
      linear-gradient(0deg, rgba(30, 41, 37, 0.24), rgba(30, 41, 37, 0));
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .quick-info,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: 0;
  }

  .provider-panel,
  .contact-card {
    padding: 24px;
  }

  footer {
    display: grid;
  }
}
