:root {
  color-scheme: light;
  --ink: #16252a;
  --muted: #60727a;
  --paper: #f6f4ee;
  --surface: #fffefb;
  --line: #d9e3df;
  --mint: #2f806f;
  --mint-dark: #1d5c4e;
  --rose: #b76566;
  --blue: #5f8795;
  --cream: #ebe4d7;
  --shadow: 0 24px 70px rgba(23, 33, 43, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(246, 244, 238, 0.9);
  border-bottom: 1px solid rgba(217, 227, 223, 0.9);
  backdrop-filter: blur(14px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--mint);
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: 0;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  min-height: calc(100vh - 75px);
  padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(246, 244, 238, 0.98), rgba(246, 244, 238, 0.82)),
    radial-gradient(circle at 8% 12%, rgba(47, 128, 111, 0.14), transparent 28%);
}

.local-hero {
  min-height: auto;
}

.hero-copy {
  max-width: 740px;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-text {
  max-width: 650px;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  background: var(--mint);
  box-shadow: 0 14px 28px rgba(45, 143, 115, 0.24);
}

.button.primary:hover {
  background: var(--mint-dark);
}

.button.secondary {
  color: var(--mint-dark);
  background: var(--surface);
  border-color: var(--line);
}

.care-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.care-visual img,
.service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 8px;
  width: min(250px, calc(100% - 40px));
  padding: 16px;
  background: rgba(255, 254, 251, 0.9);
  border: 1px solid rgba(217, 227, 223, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(23, 33, 43, 0.11);
  backdrop-filter: blur(12px);
}

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

.section {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 70px);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.intro > div {
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
}

.stat {
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 36px;
  font-weight: 900;
}

.split,
.method,
.local-grid,
.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.topic-card,
.zone-card,
.step,
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.topic-card,
.zone-card,
.step {
  padding: 22px;
}

.topic-card {
  border-left: 4px solid rgba(47, 128, 111, 0.52);
}

.topic-card p,
.zone-card p,
.step p {
  margin-bottom: 0;
}

.zone-card {
  display: block;
}

.zone-card:hover {
  border-color: rgba(45, 143, 115, 0.55);
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.1);
}

.service-media {
  display: grid;
  gap: 18px;
}

.service-photo {
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.care-note {
  padding: 22px;
  background: #eaf3ef;
  border: 1px solid rgba(47, 128, 111, 0.18);
  border-radius: 8px;
}

.care-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mint-dark);
  font-size: 18px;
}

.care-note p {
  margin-bottom: 0;
}

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

.step span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 900;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(22px, 5vw, 70px);
  padding: clamp(30px, 5vw, 56px);
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.contact h2,
.contact p {
  max-width: 780px;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

.site-footer {
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 70px);
  background: #101820;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.footer-brand {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.footer-links a {
  display: block;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(45, 143, 115, 0.55);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.34);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  background: #1fb85a;
  box-shadow: 0 18px 38px rgba(18, 140, 126, 0.42);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .split,
  .method,
  .local-grid,
  .faq,
  .intro,
  .contact,
  .footer-inner {
    display: block;
  }

  .site-header {
    position: static;
  }

  .nav {
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .care-visual {
    min-height: 430px;
    margin-top: 42px;
  }

  .topic-grid,
  .zone-grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .steps,
  .faq-list {
    margin-top: 26px;
  }

  .faq-heading {
    position: static;
  }

  .contact .button {
    width: 100%;
    margin-top: 24px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 16px;
  }

  .brand {
    align-items: flex-start;
  }

  .nav {
    gap: 14px;
  }

  .hero,
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-text,
  p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .care-visual {
    min-height: 360px;
    padding: 18px;
  }

  .foot-shape {
    width: 146px;
    height: 230px;
  }

  .visual-card {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .contact {
    margin: 16px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
