:root {
  --ink: #151c28;
  --muted: #5f6874;
  --line: #d9dde2;
  --paper: #f4f2ee;
  --white: #ffffff;
  --slate: #7e8a9d;
  --graphite: #3e4a5c;
  --gold: #c4a882;
  --gold-soft: #d6c6aa;
  --teal: #3e4a5c;
  --teal-dark: #151c28;
  --clay: #c4a882;
  --mint: #d6c6aa;
  --shadow: 0 22px 70px rgba(21, 28, 40, 0.16);
  --display-font: Georgia, "Times New Roman", serif;
  --font-sans: Satoshi, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 130px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 18px clamp(14px, 3vw, 34px) auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(21, 28, 40, 0.42);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(244, 242, 238, 0.94);
  border-color: rgba(20, 32, 28, 0.08);
  box-shadow: 0 12px 40px rgba(20, 32, 28, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.menu-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.brand {
  justify-self: start;
}

.brand-logo {
  display: block;
  width: 180px;
  height: auto;
}

.nav {
  gap: 8px;
  justify-self: center;
  font-size: 0.92rem;
}

.nav a {
  padding: 9px 12px;
  border-radius: 999px;
  opacity: 0.86;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.site-header.is-scrolled .nav a:hover {
  background: rgba(11, 107, 104, 0.1);
}

.menu-toggle {
  display: none;
  width: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(8, 31, 29, 0.94);
  box-shadow: 0 18px 60px rgba(20, 32, 28, 0.22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .mobile-menu {
  background: rgba(247, 244, 238, 0.96);
  border-color: rgba(20, 32, 28, 0.08);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 760;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .mobile-menu a:hover {
  background: rgba(11, 107, 104, 0.1);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

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

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 28, 40, 0.9), rgba(21, 28, 40, 0.34) 58%, rgba(21, 28, 40, 0.64)),
    linear-gradient(0deg, rgba(21, 28, 40, 0.88), rgba(21, 28, 40, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100vw - 36px));
  margin: 0 0 20vh clamp(18px, 7vw, 96px);
  color: var(--white);
}

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

.hero h1 {
  margin: 0;
  max-width: 100%;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(3.6rem, 10vw, 8.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 790;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  width: min(520px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(8, 31, 29, 0.28);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.section,
.intro-band,
.team-band,
.contact-section {
  padding: clamp(58px, 6vw, 88px) 0;
}

.manifest-section,
.values-section {
  padding: clamp(72px, 8vw, 118px) 0;
  color: var(--white);
  background: var(--ink);
}

.manifest-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.manifest-section h2,
.values-section h3 {
  color: var(--white);
}

.manifest-section h2 {
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1.02;
}

.manifest-section h2 em {
  color: var(--gold);
  font-style: italic;
}

.manifest-copy {
  display: grid;
  gap: 26px;
}

.manifest-copy,
.team-copy {
  padding-top: 44px;
}

.manifest-copy p,
.values-section p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.values-grid article {
  min-height: 250px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-inner {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
}

.intro-band {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 180px minmax(520px, 880px);
  gap: clamp(20px, 2.6vw, 38px);
  align-items: start;
  justify-content: center;
}

.heading-copy {
  max-width: 880px;
}

.heading-copy h2 {
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.06;
}

.heading-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.intro-grid > *,
.section-heading > *,
.steps > *,
.feature-content,
.program-card,
.procedure-card,
.professional-card,
.team-grid > *,
.contact-grid > * {
  min-width: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1.02;
  font-family: var(--display-font);
  font-weight: 400;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 400;
  font-size: 1.2rem;
  overflow-wrap: break-word;
}

p {
  color: var(--muted);
  overflow-wrap: break-word;
}

.section-heading {
  display: grid;
  grid-template-columns: 180px minmax(520px, 880px);
  gap: clamp(20px, 2.6vw, 38px);
  align-items: start;
  justify-content: center;
  margin-bottom: 32px;
}

.section-heading.compact {
  max-width: 780px;
  display: block;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.steps article {
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--ink);
  color: var(--white);
}

.feature-media img {
  height: 100%;
  object-fit: cover;
}

.feature-content {
  align-self: center;
  width: min(590px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0;
}

.feature-content h2,
.feature-content p,
.feature-content li {
  color: var(--white);
}

.feature-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.program-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(21, 28, 40, 0.05);
}

.program-card p {
  margin-bottom: 18px;
}

.program-card a {
  margin-top: 8px;
  color: var(--teal);
  font-weight: 820;
}

.procedures-section,
.professionals-section {
  background: #eaf7f8;
}

.procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.procedure-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(20, 32, 28, 0.08);
  border-radius: 8px;
  background: var(--white);
}

.procedure-card h3,
.professional-card h3 {
  margin-top: 28px;
}

.procedure-card p {
  margin-top: 18px;
}

.card-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 820;
}

.contact-card {
  justify-content: center;
  color: var(--white);
  background:
    linear-gradient(rgba(6, 77, 75, 0.86), rgba(6, 77, 75, 0.86)),
    url("assets/ciencia-visible.jpg");
  background-position: center;
  background-size: cover;
}

.contact-card p,
.contact-card h3 {
  color: var(--white);
}

.contact-card .button {
  width: fit-content;
  margin-top: 20px;
  background: var(--clay);
}

.professional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.professional-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 430px;
  padding: 18px 20px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.professionals-section .professional-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.professional-photo-frame {
  width: min(260px, 82%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #e8ded0;
}

.professional-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.professional-photo-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(8, 31, 29, 0.24);
  color: rgba(8, 31, 29, 0.44);
}

.professional-photo-placeholder span {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.professional-card-placeholder h3,
.professional-card-placeholder p {
  color: rgba(8, 31, 29, 0.58);
}

.professional-photo-doctor {
  object-position: 52% top;
  transform: none;
  transform-origin: center;
}

.professional-photo-nurse {
  object-position: 50% top;
  transform: none;
  transform-origin: center;
}

.professional-photo-nutritionist {
  object-position: 54% center;
  transform: none;
  transform-origin: center;
}

.professional-photo-camila-levin {
  object-position: 58% center;
  transform: none;
  transform-origin: center;
}

.professional-photo-michelle-candia {
  object-position: center;
  transform: none;
  transform-origin: center;
}

.professional-photo-fernanda-munoz {
  object-position: 52% center;
  transform: none;
  transform-origin: center;
}

.professional-photo-carlos-mayor {
  object-position: 54% center;
  transform: none;
  transform-origin: center;
}

.professional-photo-nayeth-castro {
  object-position: 52% center;
  transform: none;
  transform-origin: center;
}

.professional-photo-sebastian-rojas {
  object-position: 52% center;
  transform: none;
  transform-origin: center;
}

.professional-card h3 {
  margin-top: 34px;
}

.professional-card p {
  margin: 8px 0 0;
}

.team-band {
  padding: clamp(72px, 8vw, 118px) 0;
  background: #eef1f4;
}

.team-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.team-copy p,
.contact-grid p {
  font-size: 1.08rem;
}

.team-copy p {
  margin-top: 0;
}

.team-band .section-heading {
  margin-bottom: 0;
}

.contact-grid > div:first-child > h2 + p {
  margin-top: 24px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 680px;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  padding: 9px 14px;
  border: 1px solid rgba(20, 32, 28, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 690;
}

.preparation-section {
  position: relative;
  padding: clamp(72px, 9vw, 128px) 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 28, 40, 0.93), rgba(62, 74, 92, 0.6)),
    url("assets/preparacion-consulta.jpg");
  background-position: center;
  background-size: cover;
}

.preparation-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.preparation-copy h2,
.preparation-copy p {
  color: var(--white);
}

.preparation-copy p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.preparation-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  color: var(--white);
  cursor: pointer;
  font-weight: 820;
}

summary::after {
  content: "+";
  font-size: 1.8rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  background: var(--white);
}

.booking-panel {
  display: grid;
  gap: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-panel strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  overflow-wrap: break-word;
}

.booking-panel p {
  margin-top: 16px;
  margin-bottom: 0;
}

.booking-button {
  width: fit-content;
}

.footer {
  margin: 0;
  padding: clamp(54px, 7vw, 82px) clamp(18px, 4vw, 56px) 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 28, 40, 0.98), rgba(62, 74, 92, 0.98)),
    repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 38px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 0.75fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.footer .brand-logo {
  width: 200px;
  height: auto;
  opacity: 1;
  filter: none;
}

.footer p,
.footer li,
.footer-bottom {
  color: rgba(255, 255, 255, 0.76);
}

.footer h3 {
  margin-bottom: 18px;
  color: var(--white);
}

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

.footer a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 28px;
  font-size: 0.9rem;
}

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

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 34px rgba(20, 32, 28, 0.26);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 860px;
  }

  .hero-content {
    margin-bottom: 250px;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .section-heading,
  .feature-band,
  .manifest-grid,
  .team-grid,
  .contact-grid,
  .preparation-grid {
    grid-template-columns: 1fr;
  }

  .manifest-copy,
  .team-copy {
    padding-top: 0;
  }

  .steps,
  .values-grid,
  .program-grid,
  .procedure-grid,
  .professional-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .professional-card {
    min-height: auto;
  }

  .feature-band {
    min-height: auto;
  }

  .feature-media {
    min-height: 360px;
  }

  .feature-content {
    padding: 42px 0;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-brand {
    order: 2;
    text-align: center;
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-brand p {
    display: none;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    display: none;
  }

  .footer-grid > div:nth-child(4) {
    order: 1;
    text-align: center;
  }
}

@media (max-width: 640px) {
  [id] {
    scroll-margin-top: 110px;
  }

  .site-header {
    inset: 12px 12px auto;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 9px 10px 9px 12px;
    gap: 10px;
  }

  .nav {
    display: none;
  }

  .brand {
    justify-self: start;
  }

  .brand-logo {
    width: 150px;
    max-width: 48vw;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 132px 0 26px;
  }

  .hero-content {
    width: calc(100vw - 28px);
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.6rem);
    letter-spacing: 0.08em;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 18px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 26px;
  }

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

  .hero-actions .secondary {
    display: none;
  }

  .hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100vw - 28px);
    margin: 22px auto 0;
  }

  .hero-panel div {
    padding: 14px 16px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .section-inner {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .contact-grid,
  .booking-panel {
    width: 100%;
  }

  h2 {
    font-size: clamp(1.62rem, 7.2vw, 2rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  h3 {
    font-size: 1.08rem;
    overflow-wrap: anywhere;
  }

  p {
    font-size: 0.96rem;
  }

  .steps,
  .values-grid,
  .program-grid,
  .procedure-grid,
  .professional-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
  }

  .values-grid article {
    min-height: auto;
    padding: 22px 18px;
  }

  .values-grid article p {
    margin-bottom: 0;
  }

  .steps article {
    min-height: auto;
    padding: 22px 18px;
  }

  .booking-panel {
    padding: 22px;
  }

  .booking-panel strong {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .procedure-card,
  .professional-card {
    padding: 24px;
  }

  .professional-photo-frame {
    width: min(230px, 82%);
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 380px) {
  .site-header {
    inset: 10px 10px auto;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3rem);
    letter-spacing: 0.06em;
  }

  .button {
    padding: 0 16px;
    font-size: 0.92rem;
  }

  h2 {
    font-size: clamp(1.45rem, 6.8vw, 1.75rem);
    line-height: 1.14;
  }

  .section,
  .intro-band,
  .manifest-section,
  .values-section,
  .team-band,
  .contact-section {
    padding: 58px 0;
  }
}

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

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