:root {
  --ink: #14231f;
  --muted: #62706a;
  --paper: #fbfaf7;
  --cream: #f4efe6;
  --mint: #dcecdf;
  --green: #2d765d;
  --teal: #0f5f67;
  --coral: #d97858;
  --line: rgba(20, 35, 31, 0.12);
  --shadow: 0 24px 70px rgba(24, 42, 38, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(24, 42, 38, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 34px;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
}

.mobile-contact-link {
  display: none;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(45, 118, 93, 0.24);
}

.btn.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.btn.light {
  color: var(--green);
  background: #fff;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 76px) 48px;
  background:
    linear-gradient(110deg, rgba(220, 236, 223, 0.9), rgba(251, 250, 247, 0.3) 44%, rgba(244, 239, 230, 0.85)),
    var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(31px, 4.1vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-media img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.care-card,
.note-card {
  position: absolute;
  right: clamp(12px, 3vw, 34px);
  bottom: -24px;
  width: min(260px, 82%);
  padding: 22px;
  color: #fff;
  border-radius: 8px;
  background: var(--teal);
  box-shadow: var(--shadow);
}

.care-card span,
.note-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.care-card strong,
.note-card strong {
  display: block;
  margin-top: 7px;
  font-size: 25px;
  line-height: 1.1;
}

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

.metric {
  padding: 30px clamp(18px, 4vw, 54px);
  background: #fff;
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.metric span,
.section-copy p,
.service-card p,
.service-list,
.contact-list,
.testimonial cite {
  color: var(--muted);
}

.section {
  padding: clamp(66px, 9vw, 120px) clamp(18px, 5vw, 76px);
}

.two-col,
.why,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.section-copy {
  max-width: 650px;
}

.image-stack {
  position: relative;
}

.main-image,
.testimonial img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.note-card {
  left: -18px;
  right: auto;
  bottom: 22px;
  background: var(--coral);
}

.services {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.services > *:not(.services-watermark) {
  position: relative;
  z-index: 1;
}

.services-watermark {
  position: absolute;
  right: clamp(12px, 5vw, 80px);
  top: 50%;
  width: min(560px, 68vw);
  max-height: 70%;
  object-fit: contain;
  opacity: 0.055;
  transform: translateY(-50%);
  pointer-events: none;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbf8);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 118, 93, 0.28);
  box-shadow: 0 18px 44px rgba(24, 42, 38, 0.12);
}

.service-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  color: var(--green);
  font-weight: 900;
  background: var(--mint);
}

.why {
  background: var(--cream);
}

.why-panel {
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.why-panel .eyebrow {
  color: #f0b59e;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--coral);
}

.testimonial {
  display: grid;
  gap: 22px;
}

.testimonial blockquote {
  margin: 0;
  font-size: clamp(24px, 3vw, 35px);
  line-height: 1.17;
  font-weight: 800;
}

.cta-band {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin: 0 clamp(18px, 5vw, 76px);
  padding: clamp(34px, 5vw, 58px);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  overflow: hidden;
}

.cta-band h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.cta-band .eyebrow {
  color: #f7c8b6;
}

.contact {
  position: relative;
  align-items: start;
  overflow: hidden;
}

.contact > *:not(.contact-watermark) {
  position: relative;
  z-index: 1;
}

.contact-watermark {
  position: absolute;
  left: clamp(10px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 70px);
  width: min(430px, 58vw);
  max-height: 72%;
  object-fit: contain;
  opacity: 0.045;
  pointer-events: none;
}

.contact-simple {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-size: clamp(21px, 2.6vw, 32px);
  line-height: 1.3;
  font-weight: 700;
}

.contact .section-copy h2 {
  font-size: clamp(23px, 2.6vw, 34px);
}

.contact-list a {
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hidden-field {
  display: none;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(18px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--cream);
}

.thank-you-panel {
  width: min(760px, 100%);
  padding: clamp(32px, 6vw, 70px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.thank-you-panel h1 {
  font-size: clamp(32px, 4vw, 52px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

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

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
    padding-top: 12px;
  }

  .site-header.menu-open .site-nav {
    display: grid;
    gap: 12px;
  }

  .mobile-contact-link {
    display: block;
  }

  .hero,
  .two-col,
  .why,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media img {
    height: 460px;
  }

  .intro-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: 31px;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
    height: 360px;
  }

  .care-card,
  .note-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 14px;
  }

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