:root {
  --ink: #15211e;
  --muted: #5d6864;
  --green: #123b33;
  --green-2: #1b5146;
  --gold: #855923;
  --gold-soft: #ead8b8;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --white: #fff;
  --line: #d9ded9;
  --danger: #8b3030;
  --shadow: 0 24px 64px rgba(22, 43, 37, 0.1);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shell: 1180px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e2a94f;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--green-2);
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.45rem, 11vw, 4.2rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 8vw, 3.25rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 5vw, 1.8rem);
}

p,
li {
  text-wrap: pretty;
}

address {
  font-style: normal;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--green);
  border-radius: 0.5rem;
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 100;
  min-height: var(--header-h);
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid rgba(18, 59, 51, 0.12);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  min-width: 0;
  display: grid;
  line-height: 1.05;
}

.brand b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.brand small {
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 1px solid rgba(18, 59, 51, 0.24);
  border-radius: 50%;
  cursor: pointer;
}

.js .menu-toggle {
  display: grid;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 4px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: rotate(-45deg);
}

.site-nav {
  width: 100%;
  padding: 0.5rem 0 1rem;
}

.site-nav > ul {
  display: grid;
  gap: 0;
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
}

.site-nav > ul > li {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.site-nav > ul > li > a,
.nav-dropdown summary {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0.7rem 0;
  color: inherit;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.nav-dropdown summary[aria-current="page"] {
  color: var(--green-2);
}

.nav-dropdown details {
  position: relative;
}

.nav-dropdown summary {
  justify-content: space-between;
  gap: 0.55rem;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-chevron {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.nav-dropdown details[open] .nav-chevron {
  transform: rotate(180deg);
}

.nav-submenu {
  display: grid;
  gap: 0.1rem;
  margin: -0.2rem 0 0.65rem 0.3rem;
  padding: 0.2rem 0 0.2rem 0.9rem;
  list-style: none;
  border-left: 1px solid rgba(133, 89, 35, 0.28);
}

.nav-submenu li {
  border: 0;
}

.nav-submenu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  border-radius: 0.65rem;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-submenu a[aria-current="page"] {
  color: var(--green);
  background: rgba(18, 59, 51, 0.07);
}

.js .site-nav {
  position: fixed;
  inset: var(--header-h) 0 auto;
  height: calc(100dvh - var(--header-h));
  padding: 1rem max(1rem, calc((100vw - var(--shell)) / 2)) 6rem;
  background: var(--paper);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.75rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.js .site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button svg,
.mobile-action svg,
.whatsapp-float svg,
.facts-grid svg,
.text-link svg,
.check-list svg,
.summary-card li svg,
.hero-points svg,
.source-box a svg,
.related-grid a svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button .icon-whatsapp,
.whatsapp-float .icon-whatsapp,
.contact-card .icon-whatsapp {
  fill: currentColor;
  stroke: none;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(18, 59, 51, 0.18);
}

.button-secondary {
  color: var(--green);
  background: transparent;
  border-color: rgba(18, 59, 51, 0.28);
}

.button-light {
  color: var(--green);
  background: var(--white);
}

.button-compact {
  min-height: 46px;
  padding-inline: 1rem;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  overflow: hidden;
}

.home-hero {
  padding: 2.5rem 0 3rem;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 5%, rgba(209, 172, 107, 0.18), transparent 30rem),
    var(--green);
}

.home-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -14rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  animation: ambient-ring 16s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
}

.hero-copy h1 {
  max-width: 13ch;
}

.home-hero .hero-copy > * {
  animation: hero-rise 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-hero .hero-copy > :nth-child(2) {
  animation-delay: 90ms;
}

.home-hero .hero-copy > :nth-child(3) {
  animation-delay: 170ms;
}

.home-hero .hero-copy > :nth-child(4) {
  animation-delay: 250ms;
}

.home-hero .hero-copy > :nth-child(5) {
  animation-delay: 330ms;
}

.hero-lead {
  max-width: 64ch;
  margin-bottom: 1.7rem;
  color: inherit;
  font-size: clamp(1.05rem, 3.5vw, 1.24rem);
  line-height: 1.65;
}

.home-hero .hero-lead {
  color: rgba(255, 255, 255, 0.82);
}

.home-hero .button-primary {
  color: var(--green);
  background: var(--gold-soft);
  box-shadow: none;
}

.home-hero .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-points {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-points svg {
  color: var(--gold-soft);
}

.hero-media {
  position: relative;
  width: min(100%, 540px);
  margin-inline: auto;
  animation: hero-media-in 900ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-media picture,
.hero-media img {
  width: 100%;
}

.hero-media img {
  aspect-ratio: 0.965;
  object-fit: cover;
  border-radius: 50% 50% 1.25rem 1.25rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.media-note {
  position: absolute;
  right: -0.25rem;
  bottom: 1rem;
  max-width: 13rem;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  animation: note-float 5s 1.2s ease-in-out infinite;
}

.media-note span,
.media-note b {
  display: block;
}

.media-note span {
  margin-bottom: 0.2rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-note b {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.25;
}

.facts-bar {
  background: var(--cream);
  border-bottom: 1px solid rgba(18, 59, 51, 0.1);
}

.facts-grid {
  display: grid;
}

.facts-grid > a {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(18, 59, 51, 0.1);
  text-decoration: none;
}

.facts-grid > a:last-child {
  border-bottom: 0;
}

.facts-grid svg,
.fact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0.55rem;
  color: var(--gold);
  background: rgba(184, 138, 70, 0.12);
  border-radius: 50%;
}

.fact-icon {
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.facts-grid span:not(.fact-icon) {
  display: grid;
}

.facts-grid b {
  font-size: 0.92rem;
}

.facts-grid small {
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  padding: 4.75rem 0;
}

.section-tint {
  background: var(--cream);
}

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

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 66ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, box-shadow 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -2.5rem;
  bottom: -3.8rem;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(184, 138, 70, 0.25);
  border-radius: 50%;
  content: "";
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-index,
.section-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
}

.service-card h3 a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.service-card p:not(.eyebrow) {
  color: var(--muted);
}

.doctor-section {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.doctor-section::before {
  position: absolute;
  top: -10rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(133, 89, 35, 0.18);
  border-radius: 50%;
  content: "";
}

.doctor-card {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0.65rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(234, 216, 184, 0.13), transparent 24rem),
    var(--green);
  border-radius: clamp(1.5rem, 5vw, 3rem);
  box-shadow: 0 30px 80px rgba(18, 59, 51, 0.18);
  overflow: hidden;
}

.doctor-portrait {
  position: relative;
  min-height: 340px;
  margin: 0;
  border-radius: calc(clamp(1.5rem, 5vw, 3rem) - 0.35rem);
  overflow: hidden;
}

.doctor-portrait::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(10, 28, 24, 0.82));
  content: "";
}

.doctor-portrait img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
}

.doctor-portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: grid;
}

.doctor-portrait figcaption span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.doctor-portrait figcaption small {
  color: rgba(255, 255, 255, 0.72);
}

.doctor-copy {
  padding: 2rem 1.15rem 1.75rem;
}

.doctor-copy h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.55rem, 11vw, 4.4rem);
}

.doctor-intro {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.credential-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-block: 1.5rem;
  padding: 0.9rem;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(234, 216, 184, 0.24);
  border-radius: 1rem;
  text-decoration: none;
}

.credential-pill > span {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--gold-soft);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.credential-pill strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.credential-pill small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

.doctor-principles {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.doctor-principles > div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0 0.65rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.doctor-principles span {
  grid-row: 1 / 3;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.doctor-principles p {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.doctor-copy .button-primary {
  color: var(--green);
  background: var(--gold-soft);
}

.doctor-copy .text-link {
  color: var(--white);
}

.reviews-section {
  background:
    linear-gradient(rgba(18, 59, 51, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 51, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

.reviews-section .section-heading {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(22, 43, 37, 0.06);
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.review-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.review-stars {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.review-stars small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: 1.4rem 0 1.5rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.55;
}

.review-card blockquote p {
  margin: 0;
}

.review-author {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.review-author > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--gold-soft);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.review-author p {
  display: grid;
  margin: 0;
  line-height: 1.35;
}

.review-author small {
  color: var(--muted);
  font-size: 0.75rem;
}

.review-author a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.review-author svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.reviews-note {
  max-width: 760px;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.treatment-media-section {
  padding-top: clamp(2rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 94% 10%, rgba(181, 138, 73, 0.12), transparent 24rem),
    var(--cream);
}

.treatment-media-heading {
  max-width: 800px;
}

.treatment-media-heading h2 {
  max-width: 720px;
  margin: 0;
}

.treatment-media-heading > p:last-child {
  max-width: 690px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.treatment-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.treatment-media-card {
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid rgba(18, 59, 51, 0.1);
  border-radius: 1.35rem;
  box-shadow: 0 16px 38px rgba(18, 59, 51, 0.1);
  overflow: hidden;
}

.treatment-media-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #102a25;
  overflow: hidden;
  isolation: isolate;
}

.treatment-media-frame img,
.treatment-media-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.treatment-media-frame video {
  pointer-events: none;
}

.treatment-media-frame--contain img {
  object-fit: contain;
}

.treatment-video-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  padding: 0.42rem 0.62rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(9, 35, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.treatment-media-card figcaption {
  min-height: 5.25rem;
  padding: 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--green);
  font-weight: 780;
}

.treatment-media-card figcaption small {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 560;
}

.treatment-media-note {
  max-width: 760px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

@media (min-width: 560px) {
  .treatment-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-gallery--1 {
    max-width: 430px;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 900px) {
  .treatment-gallery--2 {
    max-width: 790px;
  }

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

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

@media (min-width: 900px) and (hover: hover) {
  .treatment-media-card {
    transition: transform 240ms ease, box-shadow 240ms ease;
  }

  .treatment-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(18, 59, 51, 0.15);
  }
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--green);
  font-weight: 750;
  text-decoration: none;
  min-height: 44px;
}

.text-link svg {
  transition: transform 160ms ease;
}

.split-grid,
.split-content,
.location-grid,
.location-detail {
  display: grid;
  gap: 2.5rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.75rem;
  color: var(--white);
  background: rgba(18, 59, 51, 0.88);
  border-radius: 0.75rem;
  font-size: 0.78rem;
  backdrop-filter: blur(10px);
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
}

.principles {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.principles > div {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(18, 59, 51, 0.14);
}

.principles b {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.case-grid {
  display: grid;
  gap: 1.25rem;
}

.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.case-card > div {
  position: relative;
  min-width: 0;
}

.case-card > div:first-child {
  border-right: 1px solid var(--white);
}

.case-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.case-card > div span {
  position: absolute;
  z-index: 1;
  top: 0.55rem;
  left: 0.55rem;
  padding: 0.25rem 0.5rem;
  color: var(--white);
  background: rgba(18, 33, 30, 0.82);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card figcaption {
  grid-column: 1 / -1;
  display: grid;
  padding: 0.9rem 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.case-card figcaption small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
}

.process-section {
  color: var(--white);
  background: var(--green);
}

.process-section .section-heading .eyebrow {
  color: var(--gold-soft);
}

.process-grid,
.priority-list,
.contact-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid {
  display: grid;
  gap: 1rem;
}

.process-grid li {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 180ms ease, transform 180ms ease;
}

.process-grid span {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
}

.process-grid h3 {
  margin: 0.6rem 0;
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.faq-layout {
  display: grid;
  gap: 0.5rem 2.5rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2.5rem 1rem 0;
  font-weight: 750;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  right: 0.25rem;
  width: 16px;
  height: 2px;
  background: var(--green);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details > div {
  padding: 0 2rem 1.25rem 0;
}

.faq-list details p {
  max-width: 65ch;
  margin: 0;
  color: var(--muted);
}

.faq-more {
  margin-top: 1.5rem;
}

.location-section {
  color: var(--white);
  background: #0c2e27;
}

.location-section address p,
.location-detail address p {
  margin-bottom: 0.4rem;
}

.location-section address a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin: 0.8rem 0 1.4rem;
  color: var(--gold-soft);
  font-size: 1.2rem;
  font-weight: 800;
}

.location-section .button-primary {
  color: var(--green);
  background: var(--gold-soft);
}

.location-section .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.location-mark {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  color: var(--gold-soft);
  background:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    rgba(255,255,255,.04);
  background-size: 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background-position: 0 0;
  animation: map-drift 18s linear infinite;
}

.location-mark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 15vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.location-mark span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.appointment-panel {
  padding: 4rem 0;
  color: var(--white);
  background: var(--green);
}

.appointment-inner {
  display: grid;
  gap: 1.5rem;
}

.appointment-inner h2 {
  max-width: 18ch;
}

.appointment-inner p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.76);
}

.appointment-inner .button-primary {
  color: var(--green);
  background: var(--gold-soft);
}

.appointment-inner .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.appointment-inner > small {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
}

.breadcrumbs {
  padding-top: 1rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.76rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.6rem;
  color: var(--gold);
  content: "/";
}

.breadcrumbs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.page-hero {
  padding: 3.5rem 0 4rem;
}

.page-hero-grid {
  display: grid;
  gap: 2rem;
}

.page-hero h1 {
  max-width: 16ch;
}

.summary-card {
  align-self: start;
  padding: 1.5rem;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.summary-card > span {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-card > p {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.45;
}

.summary-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  list-style: none;
}

.summary-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.summary-card li svg {
  margin-top: 0.2rem;
  color: var(--gold-soft);
}

.article-grid {
  display: grid;
  gap: 2rem;
}

.article-main > section {
  position: relative;
  padding: 0 0 3.5rem 2rem;
  border-left: 1px solid var(--line);
}

.article-main > section:last-child {
  padding-bottom: 0;
}

.section-number {
  position: absolute;
  top: 0;
  left: -0.9rem;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  background: var(--paper);
}

.article-main h2 {
  font-size: clamp(1.8rem, 7vw, 2.65rem);
}

.article-main p {
  color: #45514d;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.check-list svg {
  margin-top: 0.25rem;
  color: var(--gold);
}

.article-aside {
  align-self: start;
}

.aside-card {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.aside-card h2 {
  font-size: 1.9rem;
}

.aside-card ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(22, 43, 37, 0.05);
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}

th,
td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

thead th {
  color: var(--white);
  background: var(--green);
}

tbody th {
  width: 24%;
  color: var(--green);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.sources-section {
  padding-top: 2rem;
}

.source-box {
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(18, 59, 51, 0.1);
  border-radius: var(--radius);
}

.source-box h2 {
  font-size: 1.85rem;
}

.source-box p {
  color: var(--muted);
}

.source-box ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.source-box a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 750;
}

.related-section {
  padding-top: 2.5rem;
}

.related-section h2 {
  font-size: 2rem;
}

.related-grid {
  display: grid;
  gap: 0.75rem;
}

.related-grid a {
  position: relative;
  display: grid;
  padding: 1.2rem 3rem 1.2rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms var(--reveal-delay, 0ms) cubic-bezier(0.22, 1, 0.36, 1), transform 620ms var(--reveal-delay, 0ms) cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hero-rise {
  from { transform: translateY(24px); }
  to { transform: translateY(0); }
}

@keyframes hero-media-in {
  from { opacity: 0; transform: translateY(28px) scale(0.97); clip-path: inset(12% 0 0 round 50% 50% 1.25rem 1.25rem); }
  to { opacity: 1; transform: translateY(0) scale(1); clip-path: inset(0 0 0 round 50% 50% 1.25rem 1.25rem); }
}

@keyframes note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes ambient-ring {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-22px, -16px, 0) scale(1.08); }
}

@keyframes map-drift {
  to { background-position: 32px 32px; }
}

@keyframes whatsapp-pulse {
  0% { opacity: 0.7; transform: scale(0.92); }
  70%, 100% { opacity: 0; transform: scale(1.32); }
}

@keyframes nav-dropdown-in {
  from { opacity: 0; transform: translate(-50%, -6px) scale(0.98); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

.related-grid span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.related-grid small {
  margin-top: 0.25rem;
  color: var(--muted);
}

.related-grid svg {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--gold);
  transform: translateY(-50%);
}

.overview-grid,
.method-grid,
.prepare-grid {
  display: grid;
  gap: 1rem;
}

.overview-grid article,
.method-grid article,
.prepare-grid > div {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.overview-grid article > span,
.method-grid article > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.overview-grid h2,
.method-grid h2 {
  margin: 0.65rem 0;
  font-size: 1.4rem;
}

.overview-grid p,
.method-grid p,
.prepare-grid p {
  color: var(--muted);
}

.priority-list {
  display: grid;
  gap: 0;
}

.priority-list li,
.contact-steps li {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(18, 59, 51, 0.14);
}

.priority-list span,
.contact-steps span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.priority-list p,
.contact-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.notice {
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem;
  color: var(--green);
  background: rgba(184, 138, 70, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.notice-large {
  margin-top: 2.5rem;
  padding: 1.25rem;
}

.notice-large p {
  margin: 0.4rem 0 0;
}

.quote-card {
  align-self: start;
  padding: 1.5rem;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
}

.quote-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.45;
}

.quote-card small {
  color: var(--gold-soft);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.8rem;
  color: var(--white);
  background: rgba(18, 59, 51, 0.84);
  border-radius: 0.65rem;
}

.center-heading {
  text-align: center;
}

.center-heading .hero-lead {
  margin-inline: auto;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 1.3rem;
  padding: 0.65rem;
  color: var(--gold);
  background: rgba(184, 138, 70, 0.12);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.contact-card h2 {
  font-size: 1.75rem;
}

.contact-card p:not(.eyebrow) {
  color: var(--muted);
}

.contact-card-primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.contact-card-primary > svg {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.1);
}

.contact-card-primary p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.location-detail .location-mark {
  color: var(--green);
  background:
    linear-gradient(rgba(18,59,51,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,59,51,.06) 1px, transparent 1px),
    var(--cream);
  border-color: rgba(18,59,51,.12);
}

.legal-page h1 {
  max-width: 15ch;
}

.legal-page h2 {
  margin-top: 2.25rem;
  font-size: 1.6rem;
}

.legal-page p {
  color: #45514d;
}

.legal-date {
  margin-bottom: 2rem;
  font-size: 0.84rem;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding: 5rem 0;
  text-align: center;
}

.error-code {
  margin-bottom: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 28vw, 10rem);
  line-height: 0.9;
}

.not-found .button-row {
  margin-top: 1.5rem;
}

.site-footer {
  padding: 4.5rem 0 5.5rem;
  color: rgba(255, 255, 255, 0.78);
  background: #09241f;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
}

.brand-footer {
  color: var(--white);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
  max-width: 38ch;
  margin-top: 1rem;
}

.site-footer h2 {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: inherit;
}

.site-footer li a,
.site-footer address a,
.social-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.site-footer address p {
  margin-bottom: 0.5rem;
}

.site-footer address a {
  display: block;
  margin-top: 0.45rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.footer-bottom {
  display: grid;
  gap: 0.3rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0.55rem max(0.6rem, env(safe-area-inset-right)) calc(0.55rem + env(safe-area-inset-bottom)) max(0.6rem, env(safe-area-inset-left));
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 28px rgba(22, 43, 37, 0.1);
  backdrop-filter: blur(12px);
}

.mobile-action {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-action-call {
  color: var(--green);
}

.mobile-action-chat {
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
}

.whatsapp-float {
  position: fixed;
  z-index: 88;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(1rem + env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #168b61;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(15, 87, 62, 0.34);
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float.is-suppressed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.88);
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.whatsapp-ring {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(22, 139, 97, 0.45);
  border-radius: inherit;
  animation: whatsapp-pulse 2.6s ease-out infinite;
}

.whatsapp-label {
  position: absolute;
  right: calc(100% + 0.65rem);
  padding: 0.45rem 0.65rem;
  color: var(--white);
  background: var(--green);
  border-radius: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

@media (min-width: 540px) {
  .button-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button-row .button {
    width: auto;
  }

  .service-grid,
  .case-grid,
  .overview-grid,
  .method-grid,
  .prepare-grid,
  .contact-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card img {
    height: 200px;
  }

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

  .facts-grid > a {
    padding-inline: 0.85rem;
    border-right: 1px solid rgba(18, 59, 51, 0.1);
    border-bottom: 0;
  }

  .facts-grid > a:last-child {
    border-right: 0;
  }

  .gallery-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .contact-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  :root {
    --header-h: 86px;
  }

  .shell {
    width: min(calc(100% - 3rem), var(--shell));
  }

  .section {
    padding-block: 6.5rem;
  }

  .home-hero {
    padding-block: 4.5rem;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .location-grid,
  .location-detail {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    align-items: center;
  }

  .home-hero .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  }

  .image-frame-tall {
    min-height: 620px;
  }

  .split-content,
  .faq-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

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

  .process-grid li {
    padding: 1.35rem 1.2rem 0 0;
  }

  .appointment-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .appointment-inner > small {
    grid-column: 1 / -1;
  }

  .source-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    gap: 2rem;
    padding: 2rem;
  }

  .source-box ul {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.8fr 1.1fr;
  }

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

  .doctor-card {
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  }

  .doctor-portrait,
  .doctor-portrait img {
    min-height: 100%;
  }

  .doctor-copy {
    padding: 3rem clamp(1.75rem, 4vw, 3.5rem);
  }

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

}

@media (min-width: 1180px) {
  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(14px);
  }

  .menu-toggle,
  .js .menu-toggle {
    display: none;
  }

  .site-nav,
  .js .site-nav {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0;
    background: transparent;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
  }

  .site-nav > ul > li {
    border: 0;
  }

  .site-nav > ul > li + li {
    margin-left: 0.28rem;
    padding-left: 0.28rem;
  }

  .site-nav > ul > li + li::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 20px;
    background: rgba(18, 59, 51, 0.18);
    content: "";
    transform: translateY(-50%);
  }

  .site-nav > ul > li > a,
  .nav-dropdown summary {
    min-height: 48px;
    padding: 0.75rem 0.52rem;
    font-size: 0.8rem;
  }

  .site-nav > ul > li > a[aria-current="page"]::after,
  .nav-dropdown.is-active summary::after {
    position: absolute;
    right: 0.52rem;
    bottom: 0.35rem;
    left: 0.52rem;
    height: 2px;
    background: var(--gold);
    content: "";
  }

  .nav-dropdown summary {
    justify-content: flex-start;
  }

  .nav-dropdown .nav-chevron {
    width: 0.82rem;
    height: 0.82rem;
  }

  .nav-submenu {
    position: absolute;
    z-index: 4;
    top: calc(100% - 0.1rem);
    left: 50%;
    width: 220px;
    gap: 0;
    margin: 0;
    padding: 0.45rem;
    background: rgba(255, 253, 248, 0.99);
    border: 1px solid rgba(18, 59, 51, 0.13);
    border-radius: 0.9rem;
    box-shadow: 0 20px 46px rgba(22, 43, 37, 0.16);
    transform: translateX(-50%);
    animation: nav-dropdown-in 170ms ease both;
  }

  .nav-submenu li + li {
    border-top: 1px solid rgba(18, 59, 51, 0.08);
  }

  .nav-submenu a {
    min-height: 42px;
    padding: 0.65rem 0.75rem;
    font-size: 0.83rem;
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    color: var(--green);
    background: rgba(18, 59, 51, 0.07);
  }

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

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

  .case-card img {
    height: 240px;
  }

  .article-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 5rem;
  }

  .article-aside {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .overview-grid,
  .method-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .contact-grid article:last-child {
    grid-column: auto;
  }

  .mobile-actions {
    display: none;
  }

  .whatsapp-float {
    right: 0.35rem;
    bottom: 1.5rem;
    width: 62px;
    height: 62px;
  }

  .media-note {
    right: 5rem;
  }

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

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

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

  .doctor-principles span {
    grid-row: auto;
  }

  .site-footer {
    padding-bottom: 3.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button-primary:hover {
    background: var(--green-2);
  }

  .button-secondary:hover {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
  }

  .text-link:hover svg,
  .related-grid a:hover svg,
  .source-box a:hover svg {
    transform: translateX(4px);
  }

  .service-card:hover,
  .related-grid a:hover {
    border-color: rgba(184, 138, 70, 0.55);
    box-shadow: 0 18px 42px rgba(22, 43, 37, 0.08);
  }

  .service-card:hover {
    transform: translateY(-7px);
  }

  .service-card:hover::after {
    transform: translate(-14px, -12px) scale(1.12);
  }

  .case-card:hover,
  .related-grid a:hover {
    transform: translateY(-4px);
  }

  .process-grid li:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
  }

  .doctor-card:hover .doctor-portrait img {
    filter: contrast(1.04);
    transform: scale(1.045);
  }

  .review-card:hover {
    transform: translateY(-7px);
    border-color: rgba(133, 89, 35, 0.34);
    box-shadow: 0 24px 56px rgba(22, 43, 37, 0.11);
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    background: #0f7953;
    box-shadow: 0 18px 42px rgba(15, 87, 62, 0.42);
    transform: translateY(-4px) scale(1.03);
  }

  .whatsapp-float:hover .whatsapp-label,
  .whatsapp-float:focus-visible .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .mobile-actions,
  .whatsapp-float,
  .button-row,
  .appointment-panel {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding-block: 1.5rem;
  }

  a {
    color: inherit;
  }
}
