:root {
  --ink: #16211b;
  --muted: #647168;
  --forest: #173d2a;
  --leaf: #2f6f47;
  --moss: #7d9360;
  --clay: #b25f3a;
  --gold: #d8aa55;
  --cream: #fbf7ee;
  --paper: #ffffff;
  --line: rgba(22, 33, 27, 0.12);
  --shadow: 0 24px 70px rgba(22, 33, 27, 0.15);
  --radius: 8px;
  --max: 1180px;
}

/* Final visual polish */
:root {
  --ink: #102017;
  --muted: #607268;
  --forest: #153d29;
  --leaf: #2f7a4d;
  --clay: #b85f39;
  --gold: #d9aa55;
  --cream: #f7f2e8;
  --paper: #ffffff;
  --soft: #eef5ec;
  --line: rgba(16, 32, 23, 0.12);
  --shadow: 0 24px 80px rgba(16, 32, 23, 0.14);
  --shadow-soft: 0 12px 36px rgba(16, 32, 23, 0.09);
  --radius: 14px;
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(217, 170, 85, 0.14), transparent 30%),
    linear-gradient(180deg, #fbf8ef 0%, #f7f2e8 48%, #f3efe5 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--paper);
  font-weight: 900;
  background: var(--forest);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 32, 23, 0.08);
  box-shadow: 0 16px 50px rgba(16, 32, 23, 0.08);
  backdrop-filter: blur(18px);
}

.top-contact {
  background: linear-gradient(90deg, #0e1a13, #153d29 48%, #0e1a13);
}

.top-contact-inner {
  min-height: 44px;
}

.top-contact-links {
  width: 100%;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
}

.top-contact-links a {
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.top-contact-links span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.nav-shell {
  min-height: 112px;
  column-gap: clamp(18px, 3vw, 38px);
}

.nav-shell .brand-logo {
  width: clamp(210px, 18vw, 270px);
  height: 108px;
  filter: drop-shadow(0 10px 20px rgba(16, 32, 23, 0.12));
}

.nav-shell .nav-links {
  justify-content: center;
  gap: 6px;
}

.nav-shell .nav-links a {
  color: #223329;
  font-size: 0.94rem;
  font-weight: 900;
}

.nav-shell .nav-links a:hover,
.nav-shell .nav-links a:focus-visible {
  color: var(--forest);
  background: rgba(47, 122, 77, 0.12);
}

.nav-cta,
.button {
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(184, 95, 57, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(184, 95, 57, 0.34);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.hero {
  min-height: clamp(620px, calc(100vh - 154px), 860px);
  padding-top: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(247, 242, 232, 0.9));
  pointer-events: none;
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(7, 22, 13, 0.94) 0%, rgba(12, 37, 23, 0.78) 42%, rgba(12, 37, 23, 0.28) 100%),
    radial-gradient(circle at 72% 30%, rgba(217, 170, 85, 0.22), transparent 28%);
}

.hero-slide img {
  filter: saturate(1.08) contrast(1.04);
}

.hero-content {
  min-height: clamp(560px, calc(84vh - 120px), 760px);
  padding: clamp(70px, 9vw, 118px) 0;
}

.hero h1 {
  max-width: 780px;
  text-wrap: balance;
}

.hero-copy {
  max-width: 610px;
  line-height: 1.75;
}

.hero-badges span,
.hero-stats div {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.slider-dots button {
  height: 12px;
  width: 42px;
  background: rgba(255, 255, 255, 0.52);
}

.section {
  padding-top: clamp(72px, 9vw, 118px);
  padding-bottom: clamp(72px, 9vw, 118px);
}

.section-heading h2,
.intro h2,
.about-spotlight h2,
.clinic h2,
.contact h2,
.footer-cta h2 {
  text-wrap: balance;
}

.service-band,
.blog-preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 235, 0.96)),
    radial-gradient(circle at 90% 5%, rgba(217, 170, 85, 0.14), transparent 24%);
}

.service-card,
.why-grid article,
.steps article,
.quote-grid figure,
.blog-grid article,
.faq-list details,
.about-values article,
.service-overview-card,
.testimonial-card {
  border: 1px solid rgba(16, 32, 23, 0.1);
  box-shadow: var(--shadow-soft);
}

.service-card,
.why-grid article,
.steps article,
.quote-grid figure,
.blog-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.why-grid article:hover,
.steps article:hover,
.quote-grid figure:hover,
.blog-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 122, 77, 0.22);
  box-shadow: var(--shadow);
}

.service-symbol {
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  box-shadow: 0 14px 28px rgba(21, 61, 41, 0.2);
}

.clinic {
  position: relative;
  isolation: isolate;
}

.clinic-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 170, 85, 0.18), transparent 34%),
    linear-gradient(135deg, #153d29, #102017);
}

.contact {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 170, 85, 0.22), transparent 34%),
    linear-gradient(135deg, #153d29, #0f2116);
}

.contact-form {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.newsletter {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 82px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #0d1710;
}

.footer-cta {
  position: relative;
  overflow: hidden;
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 23, 16, 0.14), rgba(13, 23, 16, 0.5));
  pointer-events: none;
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
}

.footer-main {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-mark img {
  width: 180px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.column-links a,
.contact-item {
  font-size: 0.94rem;
}

.floating-whatsapp {
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  padding: 0 20px;
  background: linear-gradient(135deg, #1fa75a, #0f7f41);
  box-shadow: 0 18px 44px rgba(20, 128, 72, 0.34);
}

.back-to-top {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-shell .brand {
    grid-column: 1;
  }

  .nav-shell .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    top: 112px;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
  }

  .nav-shell {
    min-height: 92px;
  }

  .nav-shell .brand-logo {
    width: 180px;
    height: 82px;
  }

  .nav-links {
    top: 92px;
    border-radius: 22px;
  }

  .mobile-nav-action {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: 650px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 86px;
  }

  .nav-shell .brand-logo {
    width: 168px;
    height: 78px;
  }

  .nav-links {
    top: 86px;
  }

  .hero-content {
    min-height: 680px;
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .hero .eyebrow {
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .slider-dots {
    bottom: 18px;
  }

  .newsletter,
  .contact {
    border-radius: 22px;
  }

  .footer-cta-actions .button,
  .floating-whatsapp {
    width: auto;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.page-header {
  background: rgba(251, 247, 238, 0.98);
  border-bottom: 1px solid var(--line);
}

.utility {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 38px;
  padding: 6px 20px;
  color: var(--cream);
  font-size: 0.82rem;
  background: var(--forest);
}

.utility a {
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--max));
  min-height: 82px;
  margin: 0 auto;
}

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

.brand-logo {
  display: block;
  width: 150px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand strong {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #29352e;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links .menu-primary-items {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links .menu-primary-items li {
  display: flex;
  align-items: center;
}

.nav-links .menu-primary-items a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: #25332c;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links .menu-primary-items a:hover,
.nav-links .menu-primary-items a:focus-visible {
  color: var(--leaf);
  background: rgba(47, 111, 71, 0.08);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid rgba(23, 61, 42, 0.12);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(23, 61, 42, 0.12);
    transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    transform: scale(1.04);
    background: #fff;
    border-color: rgba(47, 111, 71, 0.2);
    box-shadow: 0 14px 30px rgba(23, 61, 42, 0.18);
  }

  .nav-toggle:focus-visible {
    outline: 3px solid rgba(216, 170, 85, 0.45);
    outline-offset: 4px;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--forest);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  color: var(--paper);
  font-weight: 800;
  line-height: 1;
  background: var(--clay);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(178, 95, 58, 0.25);
  cursor: pointer;
}

.button.small {
  min-height: 40px;
  padding: 11px 16px;
}

.button.secondary {
  color: var(--forest);
  background: var(--paper);
  box-shadow: none;
}

.button:active,
.nav-links a:active,
.text-link:active,
.service-card:active {
  transform: scale(0.98);
}

.top-contact {
  color: rgba(255, 255, 255, 0.88);
  background: #101913;
}

.top-contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 40px, var(--max));
  min-height: 42px;
  margin: 0 auto;
}

.top-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.84rem;
  font-weight: 800;
}

.top-contact-links a,
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-contact-links a:hover {
  color: var(--gold);
}

.top-contact-links svg,
.nav-actions svg,
.contact-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 28px;
  align-items: center;
  width: min(100% - 40px, var(--max));
  min-height: 104px;
  padding: 8px 0;
  background: var(--paper);
}

.nav-shell .brand {
  grid-column: 1;
}

.nav-shell .nav-links {
  grid-column: 2;
}

.nav-shell .nav-actions {
  grid-column: 3;
}

.nav-shell .nav-toggle {
  grid-column: 3;
  justify-self: end;
}

.site-header {
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(22, 33, 27, 0.08);
  backdrop-filter: none;
}

.nav-shell .brand-logo {
  width: 250px;
  height: 112px;
}

.nav-shell .nav-links {
  gap: 4px;
  justify-content: center;
}

.nav-shell .nav-links a {
  padding: 10px 14px;
  color: #25332c;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-shell .nav-links a:hover,
.nav-shell .nav-links a:focus-visible {
  color: var(--leaf);
  background: rgba(47, 111, 71, 0.08);
  transform: translateY(-1px);
}

.mobile-nav-action {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone,
.nav-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--forest);
  font-weight: 900;
  background: rgba(47, 111, 71, 0.1);
  border: 1px solid rgba(23, 61, 42, 0.12);
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-phone:hover,
.nav-mail:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(22, 33, 27, 0.12);
}

.nav-mail {
  background: rgba(216, 170, 85, 0.16);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--paper);
  font-weight: 900;
  background: linear-gradient(135deg, var(--clay), #c46a3d);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(178, 95, 58, 0.24);
}

.nav-cta svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: clamp(480px, calc(80vh - 60px), 760px);
  overflow: hidden;
  background: var(--forest);
  padding-top: 8px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 29, 18, 0.92) 0%, rgba(9, 29, 18, 0.72) 38%, rgba(9, 29, 18, 0.14) 100%);
  pointer-events: none;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide.is-active img {
  transform: scale(1);
}

.slider-dots {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 34px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--max));
  min-height: clamp(420px, calc(65vh - 60px), 600px);
  margin: 0 auto;
  padding: 48px 0;
  font-size: 0.95rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

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


h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5.6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  word-break: break-word;
  hyphens: auto;
  white-space: normal;
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(1.8rem, 9.5vw, 3rem);
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 12px;
  }
}

.hero h1 {
  color: var(--paper);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 16px;
  max-width: 620px;
  margin: 48px 0 0;
}

.hero-stats div {
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--paper);
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  line-height: 1.4;
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 100px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 70px;
  align-items: start;
}

.lead-stack {
  color: #425047;
  font-size: 1.08rem;
}

.notice {
  padding: 18px;
  color: #30443a;
  background: rgba(216, 170, 85, 0.18);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.about-spotlight {
  padding-top: 18px;
}

.about-spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 22px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(23, 61, 42, 0.96), rgba(47, 111, 71, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(22, 33, 27, 0.14);
}

.about-spotlight-copy {
  color: var(--paper);
}

.about-spotlight-copy h2 {
  margin-bottom: 14px;
  color: var(--paper);
}

.about-spotlight-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.about-spotlight-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.about-spotlight-points > div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
}

.about-spotlight-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--paper);
}

.about-spotlight-points span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.about-spotlight-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  backdrop-filter: blur(8px);
}

.about-spotlight-panel .eyebrow {
  margin-bottom: 8px;
}

.about-spotlight-panel h3 {
  margin-bottom: 10px;
  color: var(--paper);
}

.about-spotlight-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.about-spotlight-panel .button.secondary {
  width: fit-content;
  margin-top: 8px;
  color: var(--forest);
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.text-link {
  color: var(--clay);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.service-band {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 228, 0.96));
  overflow: hidden;
}

.service-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(216, 170, 85, 0.16), transparent 42%);
  pointer-events: none;
}

.service-band > * {
  position: relative;
  z-index: 1;
}

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

.service-card,
.steps article,
.quote-grid figure,
.faq-list details,
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 111, 71, 0.24);
  box-shadow: 0 18px 48px rgba(22, 33, 27, 0.12);
}

.service-card:hover .service-symbol {
  transform: scale(1.06);
}

.service-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  border-radius: 50%;
  transition: transform 180ms ease;
}

.service-symbol svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.service-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--clay);
  font-weight: 900;
}

.service-card p,
.why-grid p,
.blog-grid p,
.steps p,
.quote-grid blockquote,
.faq-list p,
.clinic-panel p,
.contact-copy p,
.footer p {
  color: var(--muted);
}

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

.why-grid article {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(251, 247, 238, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(22, 33, 27, 0.04);
}

.why-grid h3 {
  color: var(--forest);
}

.clinic {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  min-height: 620px;
  background: var(--forest);
}

.clinic-image {
  background:
    linear-gradient(180deg, rgba(23, 61, 42, 0.04), rgba(23, 61, 42, 0.2)),
    url("../img/site-leaf-oil.jpg") center / cover;
}

.clinic-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 7vw, 86px);
  color: var(--paper);
}

.clinic-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 28px;
}

.product-list span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.9rem;
}

.process {
  background:
    linear-gradient(rgba(251, 247, 238, 0.92), rgba(251, 247, 238, 0.92)),
    url("../img/site-forest-canopy.jpg") center / cover fixed;
}

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

.steps article {
  padding: 24px;
}

.steps strong {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--forest);
  background: rgba(216, 170, 85, 0.26);
  border-radius: 50%;
}

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

.quote-grid figure {
  min-height: 230px;
  margin: 0;
  padding: 28px;
  box-shadow: 0 16px 50px rgba(22, 33, 27, 0.08);
}

.client-photo {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 3px solid rgba(216, 170, 85, 0.45);
  border-radius: 50%;
  background: var(--cream);
}

.quote-grid blockquote {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.35;
}

.blog-preview {
  position: relative;
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 228, 0.95));
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid article {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-grid article > div {
  padding: 22px;
}

.blog-grid p {
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-grid a {
  color: var(--forest);
  font-weight: 900;
}

.quote-grid figcaption {
  color: var(--forest);
  font-weight: 900;
}

.faq {
  padding-top: 20px;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 50px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto 90px;
  padding: 54px;
  background: linear-gradient(135deg, var(--forest), #23553c);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 260px;
  height: 260px;
  background: rgba(216, 170, 85, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.contact h2,
.contact-copy {
  color: var(--paper);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  flex-direction: column;
  align-items: flex-start;
}

.contact-methods a {
  color: var(--gold);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #314038;
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(47, 111, 71, 0.14);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 34px;
  align-items: start;
  padding: 42px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: #101913;
}

.footer-brand img {
  display: block;
  width: 130px;
  height: auto;
  margin-bottom: 14px;
}

.footer h3,
.footer strong {
  margin: 0 0 14px;
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--paper);
  font-weight: 800;
}

.fine-print {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

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

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #101913;
}

.footer-cta {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(23, 61, 42, 0.98), rgba(47, 111, 71, 0.9)),
    url("../img/site-hero-herbs-hands.jpg") center / cover;
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 54px 0;
}

.footer-cta h2 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.4vw, 3.3rem);
}

.footer-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-main {
  padding: 62px max(20px, calc((100vw - var(--max)) / 2));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.footer-brand-mark img {
  display: block;
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.column-description,
.site-footer p {
  color: rgba(255, 255, 255, 0.64);
}

.footer-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.footer-proof-list span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.column-title {
  margin: 0 0 18px;
  color: var(--paper);
  font-size: 1rem;
}

.column-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.column-links a,
.contact-info a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.column-links a:hover,
.contact-info a:hover,
.footer-copyright a:hover {
  color: var(--gold);
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-item {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.contact-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--gold);
  background: rgba(216, 170, 85, 0.12);
  border-radius: 50%;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.62);
  background: #0b120e;
}

.footer-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(100% - 40px, var(--max));
  min-height: 66px;
  margin: 0 auto;
  font-size: 0.9rem;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 74px;
  min-height: 50px;
  padding: 0 16px;
  color: var(--paper);
  font-weight: 900;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #25d366, #1f8f52);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(18, 91, 52, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(18, 91, 52, 0.34);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.service-detail {
  background: var(--cream);
}

.service-overview {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 90px 0 50px;
}

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

.service-overview-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(22, 33, 27, 0.05);
}

.service-overview-card h3 {
  margin-bottom: 8px;
  color: var(--forest);
}

.service-overview-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.service-overview-card a {
  color: var(--clay);
  font-weight: 800;
}

.service-intro {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 40px;
  padding: 30px 32px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(22, 33, 27, 0.06);
}

.service-intro p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-highlights {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 16px 0 18px;
  color: var(--ink);
}

.service-highlights li {
  color: var(--muted);
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 32px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto 36px;
  align-items: center;
}

.about-showcase-media img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-showcase-panel {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(22, 33, 27, 0.06);
}

.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-pill-list span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(47, 111, 71, 0.1);
  border-radius: 999px;
}

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

.approach-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(22, 33, 27, 0.05);
}

.approach-grid h3 {
  margin-bottom: 8px;
  color: var(--forest);
}

.approach-grid p {
  margin: 0;
  color: var(--muted);
}

.about-approach {
  padding-top: 0;
  padding-bottom: 52px;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto 32px;
}

.mission-card {
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(23, 61, 42, 0.96), rgba(47, 111, 71, 0.9));
  color: var(--paper);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(22, 33, 27, 0.12);
}

.mission-card h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.2rem;
  line-height: 1.45;
}

.about-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto 32px;
}

.about-trust-card {
  padding: 24px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(22, 33, 27, 0.05);
}

.about-trust-card h3 {
  margin-bottom: 8px;
  color: var(--forest);
}

.about-trust-card p {
  margin: 0;
  color: var(--muted);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(100% - 40px, var(--max));
  margin: 36px auto 0;
}

.home-about-values {
  margin-top: 34px;
}

.about-values article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.about-values h3 {
  margin-bottom: 8px;
  color: var(--forest);
}

.about-values p {
  margin: 0;
  color: var(--muted);
}

.detail-back {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 36px 0 0;
}

.detail-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay);
  font-weight: 800;
}

.detail-hero {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 24px 0 70px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(22, 33, 27, 0.06);
}

.detail-hero h1 {
  color: var(--forest);
}

.detail-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(82, 101, 87, 0.95);
  font-size: 1.2rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 32px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding-bottom: 72px;
}

.detail-grid article,
.detail-grid aside,
.detail-cta {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-grid li + li {
  margin-top: 10px;
}

.detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto 92px;
  padding: 32px 36px;
  color: var(--paper);
  background: var(--forest);
}

.detail-cta h2 {
  margin-bottom: 0;
}

.testimonials {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(251, 247, 238, 0.96));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(22, 33, 27, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(22, 33, 27, 0.12);
}

.testimonial-photo {
  display: block;
  width: min(120px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border: 3px solid rgba(216, 170, 85, 0.4);
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--cream);
  flex-shrink: 0;
  max-width: 100%;
}

.testimonial-star-rating {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  order: -2;
}

.testimonial-text {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  width: 100%;
}

.testimonial-author strong {
  color: var(--forest);
  font-weight: 900;
  font-size: 0.95rem;
}

.testimonial-author span {
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 700;
}

.testimonials-cta {
  text-align: center;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(22, 33, 27, 0.06);
}

.testimonials-cta p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-band {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(135deg, rgba(23, 61, 42, 0.94), rgba(47, 111, 71, 0.88));
  overflow: hidden;
}

.process-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(216, 170, 85, 0.12), transparent 50%);
  pointer-events: none;
}

.process-band .section-heading,
.process-band h2,
.process-band .section-kicker {
  color: var(--paper);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.process-step {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  color: var(--paper);
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.process-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.process-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  line-height: 48px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 900;
  background: rgba(216, 170, 85, 0.2);
  border: 1px solid rgba(216, 170, 85, 0.32);
  border-radius: 50%;
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 1.08rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 920px) {
  .utility,
  .top-contact {
    display: none;
  }

  .nav,
  .nav-shell {
    min-height: 74px;
  }

  .nav-shell .brand-logo {
    width: 140px;
    height: 78px;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 82vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 22px;
    background: linear-gradient(180deg, #fbf7ee 0%, #f1ebdc 62%);
    border-left: 1px solid rgba(22, 33, 27, 0.08);
    box-shadow: -16px 0 50px rgba(22, 33, 27, 0.18);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
    z-index: 1000;
  }

  .nav-shell .nav-links a {
    padding: 16px 14px;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 18, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 950;
  }

  .mobile-menu-overlay.visible {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 18, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 950;
  }

  .mobile-menu-overlay.visible {
    opacity: 1;
    visibility: visible;
  }

  .nav-open .nav-links {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }


  .mobile-nav-action {
    display: block;
    margin-top: 8px;
    color: var(--paper) !important;
    text-align: center;
    background: var(--clay);
    border-radius: var(--radius);
  }

  .nav-links.static {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-links.static a:not(.button) {
    display: none;
  }

  .nav-links a {
    padding: 13px 12px;
  }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(22, 33, 27, 0.2);
  z-index: 999;
}

.back-to-top:hover {
  background: var(--leaf);
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== CARD ANIMATIONS ===== */
.service-overview-card,
.testimonial-card,
.about-values article,
.steps article,
.blog-grid article,
.faq-list details {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.service-overview-card.animate-in,
.testimonial-card.animate-in,
.about-values article.animate-in,
.steps article.animate-in,
.blog-grid article.animate-in,
.faq-list details.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for cards */
.service-overview-card:nth-child(1),
.testimonial-card:nth-child(1),
.about-values article:nth-child(1),
.steps article:nth-child(1),
.blog-grid article:nth-child(1) {
  transition-delay: 0.05s;
}

.service-overview-card:nth-child(2),
.testimonial-card:nth-child(2),
.about-values article:nth-child(2),
.steps article:nth-child(2),
.blog-grid article:nth-child(2) {
  transition-delay: 0.1s;
}

.service-overview-card:nth-child(3),
.testimonial-card:nth-child(3),
.about-values article:nth-child(3),
.steps article:nth-child(3),
.blog-grid article:nth-child(3) {
  transition-delay: 0.15s;
}

.service-overview-card:nth-child(4),
.testimonial-card:nth-child(4),
.about-values article:nth-child(4),
.steps article:nth-child(4) {
  transition-delay: 0.2s;
}

/* ===== ENHANCED CARD HOVER EFFECTS ===== */
.service-overview-card {
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  transition: all 0.3s ease;
}

.service-overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(22, 33, 27, 0.1);
  border-color: var(--leaf);
}

.testimonial-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(47, 111, 71, 0.15);
}

/* ===== NEWSLETTER FORM ===== */
.newsletter {
  background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%);
  color: var(--paper);
  padding: 60px 24px;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter .section-kicker {
  color: var(--gold);
}

.newsletter h2,
.newsletter p {
  color: var(--paper);
}

.newsletter p {
  opacity: 0.95;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(47, 111, 71, 0.1);
}

.newsletter-form button {
  padding: 12px 24px;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--leaf);
  transform: translateX(2px);
}

.newsletter-form button:active {
  transform: translateX(0);
}

/* ===== FORM SUCCESS STATE ===== */
.contact-form button[disabled] {
  opacity: 0.8;
  cursor: not-allowed;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .split,
  .clinic,
  .contact,
  .footer,
  .about-spotlight-card {
    grid-template-columns: 1fr;
  }

  .footer-cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

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

  .services-grid,
  .why-grid,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .about-showcase,
  .about-values,
  .about-trust,
  .approach-grid,
  .mission-vision,
  .service-overview-grid,
  .detail-grid,
  .detail-cta {
    grid-template-columns: 1fr;
  }

  .about-showcase {
    display: block;
  }

  .about-showcase-media img {
    height: 280px;
  }

  .about-showcase-panel {
    margin-top: 20px;
  }

  .about-values {
    display: grid;
  }

  .detail-cta {
    display: block;
  }

  .detail-cta .button {
    margin-top: 18px;
  }

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

  .clinic-image {
    min-height: 380px;
  }

  .contact {
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .nav,
  .nav-shell,
  .section,
  .contact,
  .hero-content,
  .top-contact-inner,
  .footer-cta-inner,
  .footer-copyright-inner {
    width: min(100% - 28px, var(--max));
  }

  body {
    font-size: 16px;
  }

  .site-header {
    box-shadow: 0 8px 24px rgba(22, 33, 27, 0.06);
  }

  .nav-shell {
    min-height: 84px;
    padding: 6px 0;
  }

  .nav-shell .brand-logo {
    width: 170px;
    height: 82px;
  }

  .nav-links {
    top: 84px;
    left: 14px;
    right: 14px;
    padding: 10px;
    border-radius: 18px;
  }

  .nav-shell .nav-links a {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 14px;
  }

  .mobile-nav-action {
    min-height: 50px;
    margin-top: 8px;
  }

  .footer-main {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .footer-copyright-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 17vw, 4.4rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 28px 0 40px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .hero-stats,
  .why-grid,
  .services-grid,
  .steps,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .slider-dots {
    left: 14px;
    right: auto;
    bottom: 16px;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 28px;
  }

  .hero-stats div {
    padding: 16px;
    border-radius: 16px;
    text-align: center;
  }

  .section-heading h2 {
    font-size: clamp(1.7rem, 6.5vw, 2.35rem);
  }

  .about-spotlight {
    padding-top: 8px;
  }

  .about-spotlight-card {
    padding: 22px;
    border-radius: 22px;
    box-shadow: 0 20px 42px rgba(22, 33, 27, 0.12);
  }

  .about-spotlight-panel {
    padding: 20px;
  }

  .section,
  .service-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading {
    display: block;
    margin-bottom: 24px;
  }

  .section-heading .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .service-intro {
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(22, 33, 27, 0.06);
  }

  .service-card,
  .approach-grid article,
  .about-values article,
  .about-trust-card,
  .service-overview-card {
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(22, 33, 27, 0.06);
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .clinic {
    min-height: 0;
  }

  .contact {
    margin-bottom: 54px;
    padding: 24px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 18px;
  }

  .footer-main {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta-actions .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 16px;
  }
}

/* Final cascade overrides */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 32, 23, 0.08);
  box-shadow: 0 16px 50px rgba(16, 32, 23, 0.08);
  backdrop-filter: blur(18px);
}

.top-contact {
  background: linear-gradient(90deg, #0e1a13, #153d29 48%, #0e1a13);
}

.top-contact-inner,
.top-contact-links {
  justify-content: center;
}

.nav-shell {
  min-height: 112px;
  column-gap: clamp(18px, 3vw, 38px);
}

.nav-shell .brand-logo {
  width: clamp(210px, 18vw, 270px);
  height: 108px;
  filter: drop-shadow(0 10px 20px rgba(16, 32, 23, 0.12));
}

.nav-shell .nav-links {
  justify-content: center;
  gap: 6px;
}

.nav-shell .nav-links a {
  color: #223329;
  font-weight: 900;
  border-radius: 999px;
}

.hero {
  min-height: clamp(620px, calc(100vh - 154px), 860px);
  padding-top: 0;
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(7, 22, 13, 0.94) 0%, rgba(12, 37, 23, 0.78) 42%, rgba(12, 37, 23, 0.28) 100%),
    radial-gradient(circle at 72% 30%, rgba(217, 170, 85, 0.22), transparent 28%);
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.hero-content {
  min-height: clamp(560px, calc(84vh - 120px), 760px);
  padding: clamp(70px, 9vw, 118px) 0;
}

.hero h1,
.section-heading h2,
.intro h2,
.about-spotlight h2,
.clinic h2,
.contact h2,
.footer-cta h2 {
  text-wrap: balance;
}

.nav-cta,
.button {
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(184, 95, 57, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(184, 95, 57, 0.34);
}

.service-card,
.why-grid article,
.steps article,
.quote-grid figure,
.blog-grid article,
.faq-list details,
.about-values article,
.service-overview-card,
.testimonial-card {
  border: 1px solid rgba(16, 32, 23, 0.1);
  box-shadow: 0 12px 36px rgba(16, 32, 23, 0.09);
}

.service-card:hover,
.why-grid article:hover,
.steps article:hover,
.quote-grid figure:hover,
.blog-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 122, 77, 0.22);
  box-shadow: 0 24px 80px rgba(16, 32, 23, 0.14);
}

.service-symbol {
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  box-shadow: 0 14px 28px rgba(21, 61, 41, 0.2);
}

.contact,
.clinic-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 170, 85, 0.22), transparent 34%),
    linear-gradient(135deg, #153d29, #0f2116);
}

.newsletter {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 82px;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(16, 32, 23, 0.14);
}

.footer-brand-mark img {
  width: 180px;
}

.floating-whatsapp {
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  padding: 0 20px;
  background: linear-gradient(135deg, #1fa75a, #0f7f41);
  box-shadow: 0 18px 44px rgba(20, 128, 72, 0.34);
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-shell .brand {
    grid-column: 1;
  }

  .nav-shell .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    min-height: 92px;
  }

  .nav-shell .brand-logo {
    width: 180px;
    height: 82px;
  }

  .nav-links {
    top: 92px;
    border-radius: 22px;
  }

  .mobile-nav-action {
    display: block;
  }

  .hero-content {
    min-height: 650px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 86px;
  }

  .nav-shell .brand-logo {
    width: 168px;
    height: 78px;
  }

  .nav-links {
    top: 86px;
  }

  .hero-content {
    min-height: 680px;
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }
}
