:root {
  --navy-900: #102a56;
  --navy-800: #17396e;
  --navy-700: #1d497f;
  --teal-600: #17889a;
  --teal-500: #22a1b5;
  --teal-100: #d9f1f3;
  --teal-050: #eff9fa;
  --white: #ffffff;
  --text-900: #183043;
  --text-700: #4f6273;
  --text-500: #6c7d8d;
  --shadow-soft: 0 20px 60px rgba(16, 42, 86, 0.08);
  --shadow-card: 0 12px 34px rgba(16, 42, 86, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-900);
  background:
    radial-gradient(circle at top left, rgba(34, 161, 181, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(16, 42, 86, 0.05), transparent 28%),
    linear-gradient(180deg, #f9fbfc 0%, #ffffff 22%, #f7fafb 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  z-index: 1001;
}

.skip-link:focus {
  top: 16px;
}

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

main section[id] {
  scroll-margin-top: 110px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(239, 249, 250, 0.9), rgba(255, 255, 255, 0.7));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.section-heading h2,
.hero-copy h1,
.doctor-copy h2,
.booking-copy h2,
.cta-band-inner h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.97;
  color: var(--navy-900);
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--text-700);
}

.top-strip {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.top-strip-inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.top-strip-inner p,
.top-strip-inner a {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-shell {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 42, 86, 0.08);
}

.nav-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 118px;
  height: auto;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  color: var(--navy-900);
  font-size: 0.98rem;
  letter-spacing: 0.05em;
}

.brand-copy span:last-child {
  color: var(--text-500);
  font-size: 0.9rem;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-menu > a {
  color: var(--text-700);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-menu > a:hover,
.site-menu > a.is-active {
  color: var(--navy-900);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
}

.nav-cta.ghost {
  border: 1px solid rgba(16, 42, 86, 0.14);
}

.nav-cta.solid {
  background: linear-gradient(135deg, #20b95e, #1f9d54);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(31, 157, 84, 0.2);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 50%;
  background: var(--teal-050);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
  padding: 72px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  max-width: 12ch;
}

.hero-lead {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--text-700);
  font-size: 1.05rem;
}

.hero-microtrust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-microtrust span,
.doctor-badges span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 42, 86, 0.08);
  color: var(--navy-800);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(16, 42, 86, 0.06);
}

.hero-actions,
.booking-actions,
.cta-band-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  box-shadow: 0 18px 36px rgba(16, 42, 86, 0.18);
}

.button-whatsapp {
  background: linear-gradient(135deg, #20b95e, #1f9d54);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(31, 157, 84, 0.2);
}

.button-secondary {
  background: var(--white);
  color: var(--navy-900);
  border-color: rgba(16, 42, 86, 0.14);
  box-shadow: 0 14px 26px rgba(16, 42, 86, 0.09);
}

.button-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.hero-note {
  max-width: 44ch;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(239, 249, 250, 0.95), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(23, 136, 154, 0.14);
  color: var(--text-700);
}

.hero-media {
  position: relative;
}

.hero-visual-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(228, 244, 246, 0.98));
  box-shadow: var(--shadow-soft);
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid rgba(16, 42, 86, 0.08);
}

.hero-visual-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
  object-fit: cover;
}

.floating-card {
  position: absolute;
  width: min(240px, calc(100% - 36px));
  min-width: 0;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 42, 86, 0.08);
  box-shadow: var(--shadow-card);
}

.floating-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
}

.floating-card span {
  display: block;
  color: var(--text-700);
  font-size: 0.92rem;
}

.floating-card-rating {
  left: 18px;
  bottom: 18px;
}

.floating-card-hours {
  right: 18px;
  top: 18px;
}

.trust-bar {
  padding-bottom: 20px;
}

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

.trust-grid article {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 42, 86, 0.08);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.trust-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 2rem;
  font-weight: 800;
}

.trust-grid p {
  margin: 0;
  color: var(--text-700);
  font-size: 0.95rem;
}

.treatments-grid,
.values-grid,
.reviews-grid,
.education-grid {
  display: grid;
  gap: 22px;
}

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

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

.treatment-card,
.value-card,
.review-card,
.education-card,
.contact-card,
.map-card,
.booking-form-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 86, 0.08);
  box-shadow: var(--shadow-card);
}

.treatment-card,
.value-card,
.review-card {
  padding: 28px;
}

.treatment-card img {
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
  object-fit: contain;
}

.treatment-card h3,
.value-card h3,
.review-card strong,
.education-card h3,
.contact-list h3,
.booking-form-card h3,
.site-footer h3 {
  margin: 0;
  color: var(--navy-900);
}

.treatment-card p,
.value-card p,
.review-card p,
.education-card p,
.contact-list p {
  color: var(--text-700);
}

.treatment-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal-600);
  font-weight: 800;
}

.doctor-grid,
.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.doctor-photo-wrap {
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(16, 42, 86, 0.06), rgba(34, 161, 181, 0.1));
  box-shadow: var(--shadow-soft);
}

.doctor-photo-wrap img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
  object-fit: cover;
}

.doctor-copy h2,
.booking-copy h2,
.cta-band-inner h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.doctor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 20px;
}

.doctor-copy blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--teal-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(239, 249, 250, 0.92);
  color: var(--navy-800);
  font-size: 1.08rem;
  font-weight: 700;
}

.doctor-copy .button {
  margin-top: 24px;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.stars {
  margin-bottom: 14px;
  color: #f6b423;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
}

.review-card strong {
  display: block;
  margin-top: 16px;
  font-weight: 800;
}

.education-card {
  overflow: hidden;
}

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

.education-card h3,
.education-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.education-card h3 {
  padding-top: 22px;
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.education-card p {
  margin: 0;
  padding-bottom: 24px;
}

.booking-copy > p:not(.eyebrow) {
  color: var(--text-700);
  max-width: 56ch;
}

.booking-steps {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
}

.booking-steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 42, 86, 0.08);
}

.booking-steps span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
  color: var(--white);
  font-weight: 800;
}

.booking-steps p {
  margin: 0;
  color: var(--text-700);
}

.booking-form-card,
.contact-card {
  padding: 28px;
}

.booking-form-card form {
  display: grid;
  gap: 12px;
}

.form-intro,
.form-note {
  margin: 0;
  color: var(--text-700);
}

.booking-form-card label {
  margin-top: 4px;
  color: var(--navy-900);
  font-weight: 700;
}

.booking-form-card input,
.booking-form-card select {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(16, 42, 86, 0.12);
  background: #fdfefe;
  color: var(--text-900);
}

.booking-form-card input:focus,
.booking-form-card select:focus {
  outline: 2px solid rgba(34, 161, 181, 0.2);
  border-color: var(--teal-500);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-success {
  margin-top: 12px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(239, 249, 250, 0.95);
  border: 1px solid rgba(23, 136, 154, 0.16);
}

.form-success strong {
  display: block;
  color: var(--navy-900);
}

.form-success p {
  margin: 8px 0 12px;
  color: var(--text-700);
}

.form-success a {
  color: var(--teal-600);
  font-weight: 800;
}

.cta-band {
  padding: 26px 0;
}

.cta-band-inner {
  padding: 34px 38px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at left top, rgba(34, 161, 181, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy-900), #23477a);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band-inner h2,
.cta-band-inner .eyebrow {
  color: var(--white);
}

.contact-list {
  display: grid;
  gap: 20px;
}

.contact-list article p {
  margin: 6px 0 0;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 540px;
  height: 540px;
  flex: 1 1 auto;
  border: 0;
}

.map-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, rgba(16, 42, 86, 0), rgba(16, 42, 86, 0.06));
}

.map-card-link span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(16, 42, 86, 0.16);
}

.map-card-link:hover span {
  background: var(--navy-900);
  color: var(--white);
}

.contact-actions {
  margin-top: 24px;
}

.site-footer {
  padding-top: 38px;
  background: #f2f6f8;
  border-top: 1px solid rgba(16, 42, 86, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 32px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 16px;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--text-700);
}

.footer-bottom {
  border-top: 1px solid rgba(16, 42, 86, 0.08);
}

.footer-bottom-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-500);
  font-size: 0.92rem;
}

.mobile-sticky-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(16, 42, 86, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(16, 42, 86, 0.28);
}

.mobile-sticky-bar a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
}

.mobile-sticky-bar a:first-child {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-sticky-bar a:last-child {
  background: linear-gradient(135deg, #20b95e, #1f9d54);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1160px) {
  .reviews-grid,
  .education-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .top-strip {
    display: none;
  }

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

  .site-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 42, 86, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu > a {
    padding: 8px 4px;
  }

  .nav-row {
    position: relative;
    min-height: 76px;
  }

  .hero-grid,
  .doctor-grid,
  .booking-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .floating-card-rating {
    left: 12px;
    bottom: 12px;
  }

  .floating-card-hours {
    right: 12px;
    top: 12px;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 76px 0;
  }

  .hero-section {
    padding-top: 36px;
  }

  .brand-copy {
    display: none;
  }

  .brand img {
    width: 110px;
  }

  .hero-actions,
  .booking-actions,
  .cta-band-actions,
  .contact-actions,
  .hero-microtrust,
  .doctor-badges {
    flex-direction: column;
  }

  .trust-grid,
  .treatments-grid,
  .values-grid,
  .reviews-grid,
  .education-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .treatment-card,
  .value-card,
  .review-card,
  .booking-form-card,
  .contact-card {
    padding: 22px;
  }

  .cta-band-inner {
    padding: 28px 24px;
  }

  .mobile-sticky-bar {
    display: grid;
  }

  .map-card {
    min-height: 420px;
  }

  .map-card iframe {
    min-height: 420px;
    height: 420px;
  }

  .footer-bottom-inner {
    padding-bottom: 92px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
