:root {
  --ink: #10231c;
  --muted: #59695f;
  --leaf: #145f48;
  --leaf-deep: #0b3d31;
  --leaf-soft: #e8f3ec;
  --gold: #d59a27;
  --clay: #b95f3d;
  --cream: #fff9ee;
  --stone: #f6f1e8;
  --blue: #244d63;
  --white: #ffffff;
  --border: rgba(16, 35, 28, 0.14);
  --shadow: 0 22px 60px rgba(16, 35, 28, 0.14);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 5vw;
  color: var(--ink);
  background: rgba(255, 249, 238, 0.92);
  border-bottom: 1px solid rgba(16, 35, 28, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--cream);
  background: var(--leaf);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.12);
}

.image-mark {
  overflow: hidden;
  padding: 2px;
  background: var(--cream);
  border: 2px solid rgba(20, 95, 72, 0.18);
  box-shadow: 0 8px 20px rgba(16, 35, 28, 0.12);
}

.image-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 50%;
}

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

.brand > span:last-child {
  min-width: 0;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(16, 35, 28, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--leaf);
  background: var(--leaf-soft);
  outline: none;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--cream);
  background: var(--leaf);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--leaf-deep);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 64px);
  overflow: hidden;
  color: var(--white);
  background: #173328;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 30, 22, 0.84) 0%, rgba(9, 30, 22, 0.64) 44%, rgba(9, 30, 22, 0.14) 100%),
    linear-gradient(180deg, rgba(9, 30, 22, 0.16) 0%, rgba(9, 30, 22, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  min-height: calc(100svh - var(--header-height) - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}

.hero-main {
  align-self: center;
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 13px 8px 8px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.hero-logo-badge img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 50%;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.45rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  width: 100%;
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
}

.hero-actions,
.cta-band,
.site-footer {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 21px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
}

.btn-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #e5ad38;
  outline: none;
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.btn-dark {
  color: var(--cream);
  background: var(--ink);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #000f0b;
  outline: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(118px, 1fr));
  gap: 12px;
  width: min(700px, 100%);
  margin: 42px 0 0;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-metrics dt {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.hero-proof-card {
  align-self: center;
  overflow: hidden;
  width: 100%;
  color: var(--ink);
  background: rgba(255, 249, 238, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-proof-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.proof-card-body {
  padding: 22px;
}

.proof-card-body span,
.doctor-role {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card-body h2 {
  margin-top: 7px;
  font-size: 1.72rem;
}

.proof-card-body p {
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-card-body a {
  color: var(--leaf);
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  color: var(--leaf-deep);
  background: #fbf6ec;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.section {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 90px 0;
}

.intro-section {
  padding-bottom: 70px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(240px, 0.72fr);
  gap: 34px;
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.85rem;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.intro-copy p,
.section-header p,
.treatment-card p,
.timeline p,
.clinic-card p,
.contact-copy p,
.medical-note p {
  color: var(--muted);
}

.intro-copy p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.intro-photo,
.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 35, 28, 0.12);
}

.intro-photo {
  min-height: 340px;
}

.intro-photo img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-photo img {
  min-height: 340px;
}

.intro-photo figcaption,
.gallery-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(7, 25, 20, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.gallery-section {
  padding-top: 40px;
}

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

.gallery-card {
  min-height: 230px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(16, 35, 28, 0.2);
}

.gallery-card img {
  transition: transform 700ms ease, filter 220ms ease;
  cursor: zoom-in;
}

.gallery-card:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.045);
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(4, 18, 14, 0.92);
  cursor: zoom-out;
}

.image-lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  width: min(1100px, 100%);
  max-height: 92vh;
  margin: 0;
  display: grid;
  gap: 14px;
  pointer-events: none;
}

.lightbox-frame img {
  width: 100%;
  max-height: calc(92vh - 56px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-frame figcaption {
  justify-self: center;
  max-width: 720px;
  padding: 9px 14px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(10px);
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: var(--delay, 0ms);
}

.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.doctor-section {
  padding-top: 20px;
}

.doctor-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.doctor-photo {
  min-height: 520px;
  background: var(--leaf-soft);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.doctor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.doctor-copy h2 {
  margin-bottom: 6px;
}

.doctor-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.doctor-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.doctor-facts span,
.symptom-list li {
  color: var(--leaf-deep);
  background: var(--leaf-soft);
  border-radius: 999px;
  font-weight: 800;
}

.doctor-facts span {
  padding: 12px 14px;
}

.doctor-cta {
  width: max-content;
  margin-top: 30px;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header p {
  margin: 0;
  font-size: 1.02rem;
}

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

.treatment-card,
.clinic-card,
.timeline article,
.contact-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
}

.treatment-card {
  min-height: 342px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 35, 28, 0.07);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--leaf);
  background: var(--leaf-soft);
  border-radius: 8px;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.treatment-card h3 {
  margin-bottom: 12px;
}

.treatment-card p {
  margin: 0;
  font-size: 0.95rem;
}

.symptom-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.symptom-list li {
  padding: 7px 10px;
  font-size: 0.78rem;
}

.approach-section {
  width: 100%;
  padding: 96px 5vw;
  background: #edf4ef;
}

.approach-section > .section-header,
.timeline {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

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

.timeline article {
  position: relative;
  min-height: 242px;
  padding: 28px;
  background: var(--cream);
}

.timeline span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 12px;
}

.timeline p {
  margin: 0;
  font-size: 0.95rem;
}

.clinic-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.clinic-card {
  min-height: 258px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 35, 28, 0.07);
}

.clinic-card.featured {
  color: var(--cream);
  background: var(--leaf-deep);
}

.clinic-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clinic-card.featured span,
.clinic-card.featured p {
  color: rgba(255, 249, 238, 0.78);
}

.clinic-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.clinic-card p {
  margin: 0 0 20px;
}

.clinic-details {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.clinic-details div {
  padding: 13px 14px;
  background: #fbfaf5;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.clinic-details dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clinic-details dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.clinic-card.featured .clinic-details div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.clinic-card.featured .clinic-details dt,
.clinic-card.featured .clinic-details dd {
  color: rgba(255, 249, 238, 0.86);
}

.clinic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clinic-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--leaf);
  background: var(--leaf-soft);
  border-radius: 8px;
  font-weight: 900;
}

.clinic-actions a:first-child {
  color: var(--cream);
  background: var(--leaf);
}

.clinic-card.featured .clinic-actions a {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.clinic-card.featured .clinic-actions a:first-child {
  color: var(--ink);
  background: var(--gold);
}

.cta-band {
  justify-content: space-between;
  gap: 24px;
  width: 90%;
  max-width: 1120px;
  margin: 10px auto 0;
  padding: 38px 44px;
  color: var(--cream);
  background: var(--blue);
  border-radius: 8px;
}

.cta-band h2 {
  max-width: 730px;
  font-size: 2.25rem;
}

.contact-section {
  padding-top: 70px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 44px;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-copy {
  padding: 24px 10px 24px 16px;
}

.contact-logo {
  width: min(230px, 100%);
  aspect-ratio: 1 / 1;
  margin-bottom: 26px;
  object-fit: cover;
  object-position: center 46%;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 35, 28, 0.12);
}

.contact-copy h2 {
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list span {
  padding: 14px 16px;
  color: var(--leaf-deep);
  background: var(--leaf-soft);
  border-radius: 8px;
  font-weight: 800;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.appointment-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.appointment-form label:has(textarea) {
  grid-column: 1 / -1;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf5;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
}

.appointment-form textarea {
  resize: vertical;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(20, 95, 72, 0.12);
}

.form-submit {
  width: max-content;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.medical-note {
  width: 90%;
  max-width: 1120px;
  margin: -48px auto 80px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.62);
  border-left: 4px solid var(--gold);
}

.medical-note p {
  margin: 0;
  font-size: 0.93rem;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px 5vw;
  color: rgba(255, 249, 238, 0.78);
  background: #071914;
}

.site-footer p {
  margin: 0;
}

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

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center 40%;
  border: 2px solid rgba(255, 249, 238, 0.18);
  border-radius: 50%;
}

.creator-credit {
  margin-top: 6px;
  color: rgba(255, 249, 238, 0.58);
  font-size: 0.86rem;
}

.creator-credit a {
  color: var(--gold);
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: var(--cream);
  background: #128c4a;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(18, 140, 74, 0.36);
  font-weight: 900;
}

.floating-whatsapp span {
  display: none;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #0f7a40;
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    min-width: 220px;
  }

  .header-action {
    display: none;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: 34px;
  }

  .proof-card-body h2 {
    font-size: 1.42rem;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  }

  .intro-photo {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

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

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

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

  .clinic-card {
    min-height: 0;
  }

  .clinic-card p {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 0 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 24px;
    background: rgba(255, 249, 238, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 42px rgba(16, 35, 28, 0.16);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

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

  .hero {
    min-height: calc(100svh - var(--header-height) - 96px);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 29, 21, 0.78) 0%, rgba(8, 29, 21, 0.78) 44%, rgba(8, 29, 21, 0.56) 100%),
      linear-gradient(90deg, rgba(8, 29, 21, 0.68), rgba(8, 29, 21, 0.18));
  }

  .hero-content {
    width: 90%;
    max-width: 640px;
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: calc(100svh - var(--header-height) - 96px);
    padding: 48px 0 44px;
  }

  .hero-proof-card {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
  }

  .hero-proof-card img {
    height: 100%;
    min-height: 180px;
    aspect-ratio: auto;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

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

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

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

  .section,
  .approach-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .intro-grid,
  .section-header,
  .doctor-panel,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .doctor-photo {
    min-height: 420px;
  }

  .doctor-copy {
    padding: 32px;
  }

  .intro-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-wide,
  .gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }

  h2 {
    font-size: 2.15rem;
  }

  .cta-band {
    display: grid;
    padding: 30px 24px;
  }

  .cta-band h2 {
    font-size: 1.86rem;
  }

  .contact-copy {
    padding: 0;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 560px) {
  .brand strong {
    max-width: calc(100vw - 130px);
    font-size: 0.84rem;
    line-height: 1.08;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .hero-logo-badge {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-proof-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .hero-proof-card img {
    min-height: 168px;
  }

  .proof-card-body {
    padding: 16px;
  }

  .proof-card-body h2 {
    font-size: 1.24rem;
  }

  .proof-card-body p {
    font-size: 0.86rem;
  }

  .trust-strip,
  .treatment-grid,
  .timeline,
  .gallery-grid,
  .appointment-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .contact-panel {
    padding: 24px;
  }

  .doctor-facts,
  .clinic-actions {
    grid-template-columns: 1fr;
  }

  .doctor-photo {
    min-height: 360px;
  }

  .doctor-copy {
    padding: 26px;
  }

  .form-submit {
    width: 100%;
  }

  .medical-note {
    margin-bottom: 54px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 96px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
    height: 56px;
    gap: 10px;
    padding: 12px 18px 12px 14px;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: inline;
  }
}

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

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