:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5c6862;
  --line: #dde4df;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --sage: #31574a;
  --sage-dark: #203c34;
  --gold: #b88b45;
  --mist: #edf3ef;
  --shadow: 0 18px 42px rgba(23, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a:hover {
  color: var(--sage);
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(221, 228, 223, 0.92);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 14rem;
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 8px;
  background: var(--sage-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.1rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: clamp(34rem, 78vh, 48rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 29, 25, 0.76), rgba(18, 29, 25, 0.2) 58%, rgba(18, 29, 25, 0.08));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.1rem, 5vw, 5rem);
  color: #fff;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.hero p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #191610;
}

.section,
.summary-band,
.page-hero,
.site-footer {
  padding-inline: clamp(1.1rem, 5vw, 5rem);
}

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

.summary-band div {
  min-height: 7rem;
  padding: 1.4rem;
  background: #fff;
}

.summary-band strong,
.summary-band span {
  display: block;
}

.summary-band span {
  margin-top: 0.25rem;
  color: var(--muted);
}

.section {
  max-width: 86rem;
  margin: 0 auto;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.two-col,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.page-hero {
  max-width: 92rem;
  margin: 0 auto;
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.page-hero.compact {
  grid-template-columns: minmax(0, 48rem);
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.page-hero p,
.section p {
  color: var(--muted);
  font-size: 1.03rem;
}

.contact-panel,
.guidance-box,
.area-card,
.price-grid article,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 1.4rem;
}

.contact-panel h2 {
  font-size: 1.35rem;
}

.contact-panel dl {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.contact-panel dl div {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.contact-panel dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0.1rem 0 0;
  font-size: 1.05rem;
  font-weight: 850;
}

.contact-panel small {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.panel-note {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.section-head {
  max-width: 45rem;
  margin-bottom: 1.5rem;
}

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

.area-card {
  min-height: 18rem;
  padding: 1.25rem;
}

.area-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.area-card li,
.tag-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: var(--mist);
  color: var(--sage-dark);
  font-size: 0.8rem;
  font-weight: 750;
}

.info-strip {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  max-width: none;
  background: var(--sage-dark);
  color: #fff;
}

.info-strip p {
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.78);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0;
}

.guidance-box {
  padding: 1.4rem;
  background: var(--mist);
}

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

.price-grid article,
.faq-list article {
  padding: 1.3rem;
}

.step-list {
  counter-reset: step;
  display: grid;
  gap: 0.8rem;
  max-width: 48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  min-height: 4rem;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.step-list li::before {
  content: counter(step);
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 8px;
  background: var(--sage);
  color: #fff;
}

.check-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.check-list li + li {
  margin-top: 0.65rem;
}

.check-list.muted li::marker {
  color: var(--gold);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.ai-summary {
  max-width: 54rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.link-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  background: #fff;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-links {
  justify-content: flex-end;
  max-width: 34rem;
  color: var(--muted);
  font-weight: 750;
}

@media (max-width: 980px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav,
  .footer-links {
    justify-content: flex-start;
  }

  .summary-band,
  .two-col,
  .page-hero,
  .area-grid,
  .price-grid,
  .link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero.compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  nav {
    width: 100%;
    gap: 0.55rem 0.85rem;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 38rem;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(18, 29, 25, 0.18), rgba(18, 29, 25, 0.85));
  }

  .hero-copy {
    padding-top: 8rem;
  }

  .summary-band,
  .two-col,
  .page-hero,
  .area-grid,
  .price-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

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

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