:root {
  --green: #5da271;
  --green-dark: #2d6941;
  --mint: #eef8f1;
  --cream: #fff8ec;
  --orange: #f2a35e;
  --ink: #173021;
  --muted: #65756b;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 48, 33, .13);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fffdf8;
  font-family: "Manrope", Arial, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; }
h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 78px);
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(93, 162, 113, .16);
}
.logo img { width: 176px; }
.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-weight: 800;
}
.nav a { padding: 18px 0; position: relative; }
.nav a::after {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.header-cta, .btn, .footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
}
.header-cta, .btn-primary, .footer-btn {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 32px rgba(93, 162, 113, .24);
}
.btn-secondary {
  color: var(--green-dark);
  background: var(--cream);
  border: 1px solid rgba(93, 162, 113, .22);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  min-height: calc(100vh - 78px);
  padding: 72px clamp(18px, 5vw, 78px);
  background:
    radial-gradient(circle at 15% 20%, rgba(93, 162, 113, .18), transparent 28%),
    linear-gradient(135deg, #fff8ec 0%, #fffdf8 54%, #eef8f1 100%);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1 { max-width: 650px; font-size: clamp(46px, 6vw, 78px); }
h2 { font-size: clamp(34px, 4.6vw, 58px); }
h3 { font-size: 24px; }
.hero__copy > p:not(.eyebrow) { max-width: 590px; font-size: 18px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__visual { position: relative; }
.hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.interactive-image {
  cursor: none;
  transition: transform .35s ease, filter .35s ease;
}
.interactive-image:hover {
  transform: scale(1.018);
  filter: saturate(1.08) contrast(1.03);
}
.image-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(93, 162, 113, .16), 0 0 28px rgba(93, 162, 113, .45);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.8);
  transition: opacity .18s ease, transform .18s ease;
}
.image-cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.hero-card {
  position: absolute;
  left: -28px;
  bottom: 32px;
  display: grid;
  gap: 3px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-card strong {
  color: var(--green);
  font-size: 32px;
  line-height: 1;
}
.hero-card span { color: var(--muted); font-weight: 800; }

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(93, 162, 113, .18);
}
.intro article {
  padding: 38px clamp(18px, 4vw, 60px);
  background: var(--white);
}
.intro strong { color: var(--orange); font-size: 34px; }
.intro h3 { margin-top: 10px; }

.section, .section-soft { padding: 92px clamp(18px, 5vw, 78px); }
.section { background: var(--white); }
.section-soft { background: var(--mint); }
.about, .why {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}
.about__media img, .why__image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about__media img { aspect-ratio: 4 / 3.25; }
.why__image img { aspect-ratio: 1; }
.section-copy p { max-width: 690px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.stats div {
  padding: 18px;
  border-radius: 18px;
  background: var(--mint);
}
.stats strong {
  display: block;
  color: var(--green);
  font-size: 32px;
}
.stats span { color: var(--muted); font-weight: 800; }

.section-title {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.service-grid article {
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(23, 48, 33, .08);
}
.service-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 18px;
}
.service-grid h3 { font-size: 22px; }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
details {
  margin-bottom: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(23, 48, 33, .08);
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
}
details p { margin: 0; padding: 0 24px 22px; }

.testimonial-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.testimonial-grid article, .blog-grid article {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.testimonial-grid article { padding: 28px; }
.testimonial-grid img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}
.testimonial-grid h3 { color: var(--green-dark); font-size: 22px; }
.blog-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}
.blog-grid div { padding: 24px; }
.blog-grid time {
  color: var(--green);
  font-weight: 900;
}

.appointment {
  background:
    radial-gradient(circle at 90% 15%, rgba(242, 163, 94, .18), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #eef8f1 100%);
}
.appointment-card {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 52px);
  border-radius: 32px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
  border: 1px solid rgba(93, 162, 113, .16);
}
.appointment-copy h2 {
  margin-bottom: 18px;
}
.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.contact-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--mint);
  font-weight: 900;
}
.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.appointment-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(93, 162, 113, .22);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.appointment-form textarea {
  resize: vertical;
}
.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(93, 162, 113, .14);
}
.appointment-form .full {
  grid-column: 1 / -1;
}
.appointment-form button {
  border: 0;
  cursor: pointer;
}

.footer {
  color: var(--white);
  background: linear-gradient(rgba(23, 48, 33, .92), rgba(23, 48, 33, .92)), url("../img/feature.webp") center/cover;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr 1fr;
  gap: 34px;
  padding: 82px clamp(18px, 5vw, 78px);
}
.footer img { width: 180px; margin-bottom: 18px; }
.footer p, .footer a { color: rgba(255,255,255,.82); }
.footer h3 { color: var(--white); font-size: 24px; margin-bottom: 18px; }
.footer a { display: block; margin-bottom: 12px; }
.copyright {
  margin: 0;
  padding: 24px;
  text-align: center;
  background: #173021;
}
.copyright a { display: inline; color: #dff4e6; font-weight: 900; }
.top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 22px;
  opacity: 0;
  transform: translateY(12px);
  transition: .2s ease;
}
.top.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1160px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-button { display: block; justify-self: end; }
  .nav, .header-cta { display: none; }
  .nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    gap: 0;
    padding-top: 8px;
  }
  .nav.is-open a {
    padding: 14px 0;
    border-top: 1px solid rgba(93, 162, 113, .18);
  }
  .hero, .about, .why, .appointment-card { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { padding: 10px 16px; }
  .logo img { width: 150px; }
  h1 { font-size: clamp(38px, 12vw, 54px); }
  h2 { font-size: clamp(30px, 9vw, 42px); }
  .hero, .section, .section-soft { padding-left: 18px; padding-right: 18px; }
  .hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 64px;
  }
  .hero__copy > p:not(.eyebrow) { font-size: 16px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; max-width: 270px; }
  .hero-card { left: 14px; bottom: 16px; padding: 14px 16px; }
  .intro, .service-grid, .testimonial-grid, .blog-grid, .stats, .footer-grid { grid-template-columns: 1fr; }
  .intro article { padding: 28px 18px; }
  .service-grid article { padding: 24px; }
  .about__media img, .why__image img { border-radius: 20px; }
  .footer-grid { padding-top: 62px; padding-bottom: 62px; }
  .image-cursor { display: none; }
  .interactive-image { cursor: auto; }
  .appointment-card {
    padding: 22px;
    border-radius: 24px;
  }
  .appointment-form {
    grid-template-columns: 1fr;
  }
  .contact-chips a {
    width: 100%;
    justify-content: center;
  }
}
