:root {
  --leaf: #1f6b4b;
  --leaf-deep: #114730;
  --mint: #dff3e8;
  --sage: #779d78;
  --gold: #d89a2b;
  --clay: #a85f3d;
  --ink: #17211c;
  --muted: #5e6b62;
  --paper: #fbfaf5;
  --white: #ffffff;
  --line: #d9e3d9;
  --shadow: 0 18px 45px rgba(23, 33, 28, 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: radial-gradient(circle at top left, rgba(216, 154, 43, 0.12), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(31, 107, 75, 0.08), transparent 18%),
    var(--paper);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(217, 227, 217, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf), var(--gold));
  font-weight: 800;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

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

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--leaf);
}

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

.header-cta,
.primary-btn {
  color: var(--white);
  background: var(--leaf);
  box-shadow: 0 10px 24px rgba(31, 107, 75, 0.22);
}

.header-cta:hover,
.primary-btn:hover {
  background: var(--leaf-deep);
}

.primary-btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.secondary-btn {
  color: var(--leaf-deep);
  background: var(--mint);
  border: 1px solid rgba(31, 107, 75, 0.18);
}

.secondary-btn:hover {
  border-color: var(--leaf);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--leaf-deep);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(28px, 5vw, 42px);
  min-height: auto;
  padding: clamp(32px, 6vw, 80px) clamp(18px, 5vw, 72px) 34px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(216, 154, 43, 0.12), transparent 34%);
  pointer-events: none;
}

.hero-copy {
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.03;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  margin-bottom: 18px;
}

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

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lede {
  max-width: none;
  width: 100%;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
}

.hero-stats span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  line-height: 1.4;
}

.hero-stats strong {
  display: block;
  color: var(--leaf-deep);
  font-size: 1.2rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  max-height: 460px;
  border-radius: 28px;
  box-shadow: 0 34px 72px rgba(23, 33, 28, 0.14);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 clamp(18px, 5vw, 72px);
}

.trust-strip div {
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(31, 107, 75, 0.12);
  box-shadow: 0 16px 38px rgba(31, 107, 75, 0.08);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 10px;
  color: var(--leaf-deep);
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section,
.doctor-band {
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

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

.treatment-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.treatment-grid article,
.testimonial-grid figure,
.hours-panel,
.booking-form,
.contact-card {
  border: 1px solid rgba(31, 107, 75, 0.12);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23, 33, 28, 0.08);
}

.treatment-grid article {
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.treatment-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(23, 33, 28, 0.14);
}

.treatment-image {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.treatment-image img {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(223, 243, 232, 0.86);
  padding: 14px;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf), var(--gold));
  font-weight: 900;
}

.doctor-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin: 0 auto;
  max-width: 90%;
  background: linear-gradient(135deg, #14402c, #1f6b4b);
  border-radius: 24px;
  overflow: hidden;
}

.doctor-band h2,
.doctor-band h3,
.doctor-band p,
.doctor-band li,
.doctor-band dt,
.doctor-band dd {
  color: var(--white);
}

.doctor-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 780px;
}

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

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold);
  font-weight: 800;
}

.hours-panel {
  padding: 32px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.hours-panel dl {
  display: grid;
  gap: 18px;
  margin: 24px 0 30px;
}

.hours-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hours-panel dt {
  font-weight: 800;
}

.hours-panel dd {
  margin: 0;
  text-align: right;
}

.wide {
  width: 100%;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.booking-intro {
  position: sticky;
  top: 108px;
  background: rgba(255, 255, 255, 0.92);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(31, 107, 75, 0.12);
  box-shadow: 0 24px 54px rgba(23, 33, 28, 0.08);
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  margin-top: 24px;
  border-radius: 18px;
  border: 1px solid rgba(31, 107, 75, 0.12);
  background: #f6faf4;
}

.contact-card a,
.site-footer a {
  color: var(--leaf);
  font-weight: 700;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--leaf-deep);
  font-weight: 800;
}

.booking-form label:has(textarea),
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd9cf;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 107, 75, 0.18);
  border-color: var(--leaf);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--leaf);
  font-weight: 700;
}

.testimonials {
  background: #eef5ec;
}

.testimonial-grid figure {
  margin: 0;
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(31, 107, 75, 0.12);
  box-shadow: 0 18px 38px rgba(23, 33, 28, 0.08);
}

blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.7;
}

figcaption {
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.7fr;
  gap: 30px;
  padding: 42px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #10241a;
}

.site-footer strong,
.site-footer .brand strong {
  display: block;
  color: var(--white);
  margin-bottom: 10px;
}

.site-footer p,
.site-footer small,
.site-footer address {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer address {
  font-style: normal;
  line-height: 1.8;
}

.site-footer div:last-child {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand {
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .hero-section,
  .doctor-band,
  .booking-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

  .booking-intro {
    position: static;
  }

  .treatment-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .site-header {
    min-height: 68px;
    gap: 16px;
  }

  .menu-toggle {
    display: inline-block;
    order: 2;
  }

  .language-switch {
    order: 3;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-stats,
  .trust-strip,
  .treatment-grid,
  .testimonial-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin: 0 18px;
  }

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

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .booking-form label:has(textarea),
  .form-submit,
  .form-status {
    grid-column: auto;
  }
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  border: 1px solid rgba(31, 107, 75, 0.16);
  border-radius: 999px;
  padding: 9px 14px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--leaf);
  color: var(--white);
}
