:root {
  --bg: #fbfaf7;
  --paper: #ffffff;
  --muted: #eef3ef;
  --ink: #102027;
  --ink-soft: #53636b;
  --deep: #07151d;
  --deep-2: #0e2630;
  --green: #67a82e;
  --green-dark: #3f7d22;
  --gold: #c5a15d;
  --line: rgba(16, 32, 39, 0.12);
  --white-soft: rgba(255, 255, 255, 0.76);
  --shadow: 0 24px 70px rgba(11, 27, 36, 0.14);
  --radius: 8px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--deep);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.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: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  color: #fff;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(7, 21, 29, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-grid;
  gap: 1px;
  min-width: max-content;
  color: #fff;
}

.brand-mark {
  color: inherit;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark span {
  color: var(--green);
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  box-shadow: 0 16px 36px rgba(103, 168, 46, 0.28);
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #75b83a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  color: #fff;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 42%;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 18, 24, 0.9) 0%, rgba(6, 18, 24, 0.76) 38%, rgba(6, 18, 24, 0.32) 100%),
    linear-gradient(180deg, rgba(6, 18, 24, 0.16) 0%, rgba(6, 18, 24, 0.34) 100%);
}

.hero-content {
  padding: clamp(120px, 16vh, 168px) 0 clamp(64px, 10vh, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.doctor-section .eyebrow,
.final-cta .eyebrow {
  color: #bde58d;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 7vw, 5.9rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 880;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  font-weight: 850;
}

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

.hero-actions,
.final-cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 38px rgba(63, 125, 34, 0.24);
}

.btn-primary:hover {
  background: #75b83a;
}

.btn-secondary {
  background: var(--deep);
  color: #fff;
  box-shadow: 0 18px 38px rgba(7, 21, 29, 0.18);
}

.btn-secondary:hover {
  background: var(--deep-2);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-light {
  background: #fff;
  color: var(--deep);
  min-height: 58px;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.btn-light strong {
  color: var(--green-dark);
  font-size: 0.84rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: clamp(34px, 6vw, 64px);
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(7, 21, 29, 0.32);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.section {
  padding: clamp(76px, 9vw, 124px) 0;
}

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

.section-muted {
  background: var(--muted);
}

.intro-band {
  padding: clamp(44px, 6vw, 70px) 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.intro-grid h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3.4vw, 3.2rem);
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(34px, 6vw, 62px);
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.specialty-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(16, 32, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.specialty-card:hover {
  transform: translateY(-5px);
  border-color: rgba(103, 168, 46, 0.32);
  box-shadow: var(--shadow);
}

.specialty-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.specialty-card:nth-child(3) img {
  object-position: center 24%;
}

.specialty-card:nth-child(4) img {
  object-position: center 20%;
}

.specialty-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(103, 168, 46, 0.12);
  color: var(--green-dark);
}

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

.specialty-body h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.specialty-body p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.specialty-body a {
  width: fit-content;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.9rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: center;
}

.split-copy p:not(.eyebrow),
.doctor-copy p,
.spa-grid p,
.contact-copy p,
.convenio-grid p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.44em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.5);
}

.structure-gallery {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}

.structure-gallery img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(16, 32, 39, 0.12);
}

.structure-gallery .gallery-large {
  grid-row: span 2;
  object-position: center 42%;
}

.doctor-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 39, 48, 0.96), rgba(5, 14, 19, 0.98)),
    var(--deep);
  color: #fff;
}

.doctor-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.doctor-photo-wrap {
  position: relative;
}

.doctor-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(197, 161, 93, 0.48);
  border-radius: var(--radius);
}

.doctor-photo-wrap img {
  position: relative;
  width: 100%;
  max-height: 720px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.doctor-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
}

.authority-grid div {
  min-height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.authority-grid strong,
.authority-grid span {
  display: block;
}

.authority-grid strong {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.authority-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.radioface-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature-list article {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(16, 32, 39, 0.06);
}

.feature-list p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.image-strip {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.85fr;
  gap: 14px;
  margin-top: 42px;
}

.image-strip img {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-strip img:first-child {
  object-position: center 28%;
}

.spa-section {
  background: #fffaf0;
}

.spa-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

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

.pill-list span {
  border: 1px solid rgba(197, 161, 93, 0.36);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.62);
  color: #6d5a32;
  font-size: 0.9rem;
  font-weight: 800;
}

.spa-photos {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: end;
}

.spa-photos img {
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.spa-photos img:first-child {
  height: 620px;
  object-position: center 26%;
}

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

.audience-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(16, 32, 39, 0.08);
}

.audience-panel img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.patient-panel img {
  object-position: center 24%;
}

.dentist-panel img {
  object-position: center 36%;
}

.audience-panel > div {
  padding: clamp(24px, 4vw, 38px);
}

.audience-panel h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.audience-panel p:not(.eyebrow) {
  color: var(--ink-soft);
}

.convenio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.plan-grid span {
  display: grid;
  min-height: 104px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--deep);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(16, 32, 39, 0.06);
}

.contact-card {
  display: grid;
  align-content: center;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
  background: var(--deep);
  color: #fff;
}

.contact-card h3 {
  margin-bottom: 26px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.final-cta {
  padding: clamp(58px, 8vw, 92px) 0;
  background:
    linear-gradient(135deg, rgba(63, 125, 34, 0.96), rgba(12, 73, 49, 0.98)),
    var(--green-dark);
  color: #fff;
}

.final-cta-inner {
  justify-content: space-between;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.final-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
}

.contact-copy {
  border-left: 4px solid var(--green);
  padding-left: 26px;
}

.contact-copy address {
  margin-bottom: 18px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.contact-copy a:not(.btn) {
  color: var(--green-dark);
  font-weight: 850;
}

.map-wrap {
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--muted);
  box-shadow: 0 18px 48px rgba(16, 32, 39, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.site-footer {
  padding: 66px 0 30px;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(170px, 0.8fr));
  gap: clamp(26px, 4vw, 58px);
}

.footer-brand {
  color: #fff;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 14px;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease;
}

.site-footer a:not(.brand):hover {
  color: #fff;
}

.footer-whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 42px rgba(12, 73, 49, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(12, 73, 49, 0.34);
}

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

@media (max-width: 1180px) {
  .nav-toggle {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 74px 20px auto 20px;
    display: grid;
    gap: 0;
    max-height: calc(100svh - 96px);
    overflow: auto;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(7, 21, 29, 0.98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

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

  .specialty-card:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 18, 24, 0.82) 0%, rgba(6, 18, 24, 0.72) 55%, rgba(6, 18, 24, 0.62) 100%);
  }

  .intro-grid,
  .split-layout,
  .doctor-grid,
  .spa-grid,
  .audience-grid,
  .convenio-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .structure-gallery {
    grid-template-rows: 260px 200px;
  }

  .authority-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .image-strip img {
    height: 260px;
  }

  .spa-photos {
    grid-template-columns: 1fr;
  }

  .spa-photos img,
  .spa-photos img:first-child {
    height: 360px;
  }

  .final-cta-inner {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 82px;
  }

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

  .brand-mark {
    font-size: 1.26rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .nav-shell {
    gap: 12px;
  }

  .hero-content {
    padding-top: 116px;
  }

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

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .final-cta .btn,
  .split-copy .btn,
  .doctor-copy .btn,
  .spa-grid .btn,
  .audience-panel .btn,
  .contact-card .btn,
  .contact-copy .btn {
    width: 100%;
  }

  .hero-proof span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

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

  .specialty-card:last-child {
    grid-column: auto;
  }

  .section {
    padding: 66px 0;
  }

  .specialty-body,
  .audience-panel > div {
    padding: 22px;
  }

  .structure-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .structure-gallery .gallery-large {
    grid-row: auto;
  }

  .structure-gallery img {
    height: 260px;
  }

  .doctor-photo-wrap::before {
    inset: 12px -10px -12px 10px;
  }

  .audience-panel img {
    height: 300px;
  }

  .contact-copy {
    border-left: 0;
    padding-left: 0;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 220px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
