:root {
  --green: #96bd0d;
  --green-dark: #6f9f00;
  --green-ink: #96bd0d;
  --mint: #edf7d5;
  --mint-strong: #96bd0d;
  --cream: #f3f1ed;
  --paper: #fffdf9;
  --white: #ffffff;
  --ink: #242526;
  --muted: #5c6262;
  --line: #e4e0da;
  --shadow: 0 24px 70px rgba(41, 43, 42, 0.1);
  --max: 1740px;
  --content: 1320px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

button {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 850;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

section[id] {
  scroll-margin-top: 112px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 3.6vw, 60px);
  min-height: 92px;
  padding: 14px clamp(20px, 3vw, 52px);
  background: rgba(255, 253, 249, 0.96);
  border-top: 4px solid var(--ink);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(36, 37, 38, 0.08);
}

.brand {
  width: 188px;
}

.brand img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(7%) saturate(323%) hue-rotate(145deg) brightness(93%) contrast(90%);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1.6vw, 26px);
}

.site-nav a,
.header-phone,
.header-appointment,
.btn,
.site-footer a {
  text-decoration: none;
}

.site-nav a {
  padding: 10px 4px;
  color: var(--ink);
  font-size: clamp(0.94rem, 1.05vw, 1.1rem);
  font-weight: 760;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone,
.header-appointment,
.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.header-phone {
  color: var(--ink);
}

.header-appointment,
.btn-primary {
  padding: 0 30px;
  color: var(--white);
  background: var(--mint-strong);
  box-shadow: 0 18px 42px rgba(150, 189, 13, 0.22);
}

.btn-primary {
  min-height: 66px;
  padding-inline: 30px;
}

.btn-muted {
  min-height: 66px;
  padding: 0 32px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 42px rgba(150, 189, 13, 0.18);
}

.btn-quiet {
  min-height: 58px;
  padding: 0 26px;
  color: var(--ink);
  background: var(--white);
}

.btn-outline {
  min-height: 66px;
  padding: 0 32px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 86px) 0 0;
}

.hero-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  width: min(100%, var(--content));
  margin: 0 auto clamp(34px, 4vw, 56px);
}

.hero-content {
  grid-column: 1 / -1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(4.6rem, 6.3vw, 7.35rem);
  line-height: 0.94;
}

.hero h1 span,
.section-head h2 span {
  display: inline-block;
  color: var(--green-ink);
}

.hero-booking {
  grid-column: 2;
  justify-self: end;
  display: grid;
  justify-items: start;
  gap: 18px;
  width: min(100%, 430px);
  margin-top: clamp(-38px, -2.2vw, -16px);
  padding-bottom: 8px;
}

.hero-booking p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 48vw, 760px);
  margin: 0;
  border-radius: var(--radius-xl);
  background: var(--cream);
  --hero-parallax: 0px;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: calc(100% + 150px);
  min-height: calc(clamp(520px, 48vw, 760px) + 150px);
  object-fit: cover;
  object-position: center 42%;
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.06);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-image img {
    height: 100%;
    min-height: clamp(520px, 48vw, 760px);
    transform: none;
    will-change: auto;
  }
}

.hero-chips {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 3vw, 48px);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(78%, 1160px);
  padding: 14px;
  margin: 0;
  transform: translateX(-50%);
  background: rgba(223, 229, 218, 0.84);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-weight: 820;
  white-space: nowrap;
}

.section {
  padding: clamp(86px, 10vw, 156px) clamp(20px, 3vw, 52px);
}

.intro-strip,
.about-layout,
.section-head,
.service-feature,
.service-list,
.conditions-layout,
.steps,
.contact-layout,
.faq-list {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: end;
}

.intro-statement h2 {
  max-width: 1260px;
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 4.15rem);
  line-height: 1.24;
  font-weight: 720;
}

.intro-side {
  display: grid;
  gap: 34px;
  justify-items: start;
  align-content: end;
}

.review-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.review-note strong {
  color: var(--green-ink);
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  line-height: 1;
  font-weight: 520;
}

.review-note span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.4;
}

.about-section {
  padding-top: clamp(20px, 3vw, 44px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  border-radius: var(--radius-xl);
  background: var(--mint);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 18%;
}

.about-copy {
  max-width: 900px;
}

.about-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.2vw, 5.2rem);
  line-height: 1.03;
}

.about-copy p:not(.eyebrow) {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-points span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 760;
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--green-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.services {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-inline: clamp(34px, 5.5vw, 110px);
  background: var(--cream);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.36fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 76px);
}

.section-head .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.section-head h2 {
  grid-column: 1;
  grid-row: 2;
}

.section-head > p:last-child {
  grid-column: 2;
  grid-row: 2;
}

.section-head h2,
.conditions-copy h2,
.difference h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.15rem, 5vw, 6.6rem);
  line-height: 1.02;
}

.section-head p:last-child,
.conditions-copy p,
.difference p,
.contact p,
.steps p,
.faq p,
.contact-details p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-feature {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.service-feature article {
  overflow: hidden;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-feature article:hover,
.service-feature article:focus-within {
  background: var(--mint);
  border-color: rgba(150, 189, 13, 0.34);
  box-shadow: 0 20px 55px rgba(150, 189, 13, 0.16);
  transform: translateY(-4px);
}

.service-feature img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: 18px;
}

.service-feature div {
  position: relative;
  margin: -58px auto 0;
  min-height: 230px;
  padding: 42px 24px 26px;
  text-align: center;
  background: var(--white);
  border-radius: 54px 54px 18px 18px;
}

.service-feature h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.34vw, 1.62rem);
  line-height: 1.12;
  font-weight: 620;
  overflow-wrap: normal;
  hyphens: auto;
}

.service-feature h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 22px auto;
  background: var(--line);
}

.service-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.service-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 760;
}

.conditions {
  background: var(--paper);
}

.conditions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.95fr);
  gap: clamp(44px, 8vw, 128px);
  align-items: center;
}

.conditions-copy p {
  max-width: 610px;
  margin-top: 28px;
}

.condition-list {
  display: grid;
  margin-top: 42px;
}

.condition-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}

.condition-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.condition-list span {
  color: var(--green-ink);
  font-size: 1rem;
  font-weight: 850;
}

.condition-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1.16;
  font-weight: 540;
}

.condition-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.conditions-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: clamp(520px, 50vw, 820px);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background: var(--cream);
}

.conditions-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 50vw, 820px);
  object-fit: cover;
}

.conditions-media figcaption {
  position: absolute;
  left: clamp(28px, 4vw, 74px);
  bottom: clamp(28px, 4vw, 74px);
  width: min(70%, 420px);
  min-height: 230px;
  display: grid;
  align-content: space-between;
  padding: 38px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(71, 118, 111, 0.92), rgba(84, 65, 47, 0.78));
  border-radius: 26px;
  backdrop-filter: blur(6px);
}

.conditions-media strong {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 0.86;
}

.conditions-media span {
  max-width: 300px;
  font-weight: 760;
  line-height: 1.25;
}

.difference {
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  min-height: clamp(520px, 45vw, 760px);
  margin: 0 auto clamp(84px, 9vw, 140px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--ink);
}

.difference::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.04) 58%);
}

.difference > img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 45vw, 760px);
  object-fit: cover;
}

.difference > div {
  position: absolute;
  left: clamp(42px, 6vw, 118px);
  right: clamp(42px, 6vw, 118px);
  bottom: clamp(38px, 5vw, 86px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: end;
}

.difference .contact-buttons {
  justify-self: end;
}

.difference .eyebrow {
  display: none;
}

.difference h2 {
  max-width: 1120px;
  color: var(--white);
  font-size: clamp(3rem, 4.4vw, 5.9rem);
  text-wrap: balance;
}

.difference p {
  display: none;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.process {
  background: var(--paper);
}

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

.steps article,
.contact-details article,
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.steps article {
  padding: 26px;
}

.steps span,
.contact-details span {
  display: block;
  color: var(--green-ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steps h3 {
  margin: 16px 0 12px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.16;
}

.contact {
  background: var(--mint);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact h2 {
  max-width: 850px;
}

.contact p {
  max-width: 620px;
  margin-top: 24px;
}

.contact .contact-buttons {
  margin-top: 38px;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details article {
  padding: 22px;
}

.contact-details a {
  display: inline-block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-details p {
  margin: 7px 0 0;
}

.faq {
  background: var(--paper);
}

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

.faq details {
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
}

.faq details p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 44px clamp(20px, 3vw, 52px);
  color: rgba(255, 255, 255, 0.76);
  background: #303a38;
}

.site-footer img {
  width: 154px;
}

.site-footer p,
.site-footer address {
  margin: 12px 0 0;
  font-style: normal;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer a:hover {
  color: var(--white);
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    justify-self: end;
  }

  .header-appointment {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .services,
  .difference {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-top,
  .intro-strip,
  .about-layout,
  .section-head,
  .conditions-layout,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 9.8vw, 5.8rem);
  }

  .hero-booking {
    grid-column: 1;
    justify-self: start;
    width: min(100%, 430px);
    margin-top: 0;
    padding-bottom: 0;
  }

  .hero-image,
  .hero-image img {
    min-height: 520px;
  }

  .hero-chips {
    width: calc(100% - 32px);
    border-radius: 24px;
  }

  .services {
    padding-inline: 24px;
  }

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

  .conditions-media {
    border-radius: var(--radius-xl);
  }

  .difference > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 76px;
    padding-inline: 16px;
  }

  .brand {
    width: 146px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 9.5vw, 3rem);
  }

  .hero-image,
  .hero-image img {
    min-height: 430px;
  }

  .hero-chips {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 14px;
    background: transparent;
    padding: 0;
  }

  .hero-chips span {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 72px 18px;
  }

  .intro-strip,
  .about-layout,
  .section-head,
  .service-feature,
  .service-list,
  .conditions-layout,
  .steps,
  .contact-layout,
  .faq-list {
    width: min(100%, calc(100vw - 36px));
    max-width: none;
    margin-inline: 0;
  }

  .services {
    width: 100%;
    padding-inline: 18px;
    border-radius: 28px 28px 0 0;
  }

  .section-head h2,
  .section-head > p:last-child,
  .section-head .eyebrow {
    grid-column: 1;
  }

  .section-head > p:last-child {
    grid-row: auto;
  }

  .section-head h2 {
    grid-row: auto;
  }

  .section-head h2,
  .about-copy h2,
  .conditions-copy h2,
  .difference h2,
  .contact h2 {
    font-size: clamp(2.75rem, 13vw, 4.25rem);
  }

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

  .about-media,
  .about-media img {
    min-height: 440px;
  }

  .conditions-layout {
    gap: 36px;
  }

  .conditions-media,
  .conditions-media img {
    min-height: 430px;
  }

  .conditions-media figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    min-height: 180px;
    padding: 26px;
  }

  .difference {
    width: calc(100% - 28px);
    min-height: 500px;
  }

  .difference > img {
    min-height: 500px;
  }

  .difference > div {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
    max-width: calc(100% - 48px);
  }

  .btn,
  .contact-buttons,
  .condition-actions {
    width: 100%;
  }

  .btn {
    min-width: 0;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 8px;
  }
}
