:root {
  --burgundy-950: #32101d;
  --burgundy-900: #481326;
  --burgundy-800: #5e1730;
  --burgundy-700: #7b2440;
  --cream-50: #fffdf8;
  --cream-100: #f8f1e7;
  --cream-200: #efe2d2;
  --gold-500: #c7a35c;
  --ink: #2d2527;
  --muted: #6e6265;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1eae54;
  --shadow: 0 22px 60px rgba(72, 19, 38, 0.13);
  --radius-sm: 14px;
  --radius-lg: 28px;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }

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

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

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

.container { width: var(--container); margin-inline: auto; }
.centered { text-align: center; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--burgundy-900);
  padding: 10px 14px;
  border-radius: 8px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(72, 19, 38, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img { width: 190px; height: auto; }

nav { display: flex; gap: 26px; }
nav a { color: rgba(255,255,255,.88); text-decoration: none; font-size: .94rem; }
nav a:hover, nav a:focus-visible { color: var(--white); }

.whatsapp-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.whatsapp-button {
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 12px 26px rgba(32, 169, 90, .24);
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(32, 169, 90, .3);
}

.whatsapp-icon { width: 21px; height: 21px; flex: 0 0 auto; color: currentColor; filter: brightness(0) invert(1); }
.whatsapp-button--large { min-height: 56px; padding: 15px 24px; }
.secondary-button { color: var(--burgundy-800); border: 1px solid rgba(94, 23, 48, .22); }
.secondary-button:hover, .secondary-button:focus-visible { background: var(--cream-100); transform: translateY(-2px); }
.header-cta { min-height: 44px; padding: 10px 18px; font-size: .9rem; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(199, 163, 92, .19), transparent 26%),
    linear-gradient(120deg, #fffaf2 0%, #f8ede4 52%, #ead4d6 100%);
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 68px;
  padding-block: 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--burgundy-700);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow--light { color: #e6c982; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; }
h1 { margin-bottom: 22px; font-size: clamp(3rem, 6.5vw, 5.7rem); font-weight: 500; letter-spacing: -.045em; color: var(--burgundy-950); }
h1 span { color: var(--burgundy-700); }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4.2vw, 3.8rem); font-weight: 500; letter-spacing: -.035em; color: var(--burgundy-950); }
h3 { margin-bottom: 10px; font-size: 1.4rem; color: var(--burgundy-900); }

.hero-lead, .section-lead { max-width: 680px; color: var(--muted); font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.trust-list li { padding: 8px 12px; border: 1px solid rgba(94, 23, 48, .14); border-radius: 999px; background: rgba(255,255,255,.54); color: var(--burgundy-800); font-size: .84rem; font-weight: 700; }

.hero-image-wrap { position: relative; align-self: end; }
.hero-image { width: 100%; max-height: 650px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 28px 42px rgba(72,19,38,.18)); }
.hero-card { position: absolute; left: -30px; bottom: 58px; display: flex; flex-direction: column; padding: 18px 22px; border-radius: var(--radius-sm); background: rgba(255,255,255,.95); box-shadow: var(--shadow); color: var(--burgundy-900); }
.hero-card strong { font-family: Georgia, serif; font-size: 1.25rem; }
.hero-card span { color: var(--muted); font-size: .88rem; }

.quick-contact { background: var(--burgundy-900); color: var(--white); }
.quick-contact-inner { min-height: 180px; display: flex; align-items: center; justify-content: space-between; gap: 38px; padding-block: 34px; }
.quick-contact h2 { margin-bottom: 8px; color: var(--white); font-size: clamp(1.75rem, 3vw, 2.7rem); }
.quick-contact p:not(.eyebrow) { margin-bottom: 0; color: rgba(255,255,255,.75); }

.testimonials { padding-block: 76px; background: var(--white); }
.testimonials-heading, .content-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 32px; }
.testimonials-heading h2 { max-width: 720px; margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.3rem); }
.source-link, .text-link { flex: 0 0 auto; color: var(--burgundy-700); font-weight: 800; text-underline-offset: 4px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonials-grid blockquote { margin: 0; padding: 26px; border: 1px solid var(--cream-200); border-radius: var(--radius-sm); background: var(--cream-50); }
.testimonials-grid blockquote p { min-height: 58px; margin: 15px 0 20px; color: var(--burgundy-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; line-height: 1.42; }
.testimonials-grid blockquote footer { padding: 0; background: transparent; color: var(--muted); font-size: .82rem; }
.stars { color: #af7d19; letter-spacing: .08em; }
.testimonials-note { margin: 18px 0 0; color: var(--muted); font-size: .82rem; }

.section { padding-block: 104px; }
.section--cream { background: var(--cream-100); }
.section--burgundy { background: var(--burgundy-900); color: var(--white); }
.section--burgundy h2 { color: var(--white); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.section-cta { margin-top: 34px; }

.split-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: center; }
.steps-grid { display: grid; gap: 14px; margin-top: 30px; }
.steps-grid article { position: relative; padding: 22px 24px 20px 76px; border: 1px solid rgba(94,23,48,.1); border-radius: var(--radius-sm); background: rgba(255,255,255,.66); }
.steps-grid article > span { position: absolute; left: 22px; top: 22px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--burgundy-800); color: var(--white); font-size: .78rem; font-weight: 800; }
.steps-grid p, .services-grid p { margin-bottom: 0; color: var(--muted); }
.portrait-card { margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.portrait-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.portrait-card figcaption { padding: 18px 22px; color: var(--muted); font-size: .9rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.services-grid article { min-height: 230px; padding: 30px; border: 1px solid var(--cream-200); border-radius: var(--radius-sm); background: var(--white); box-shadow: 0 10px 34px rgba(72,19,38,.06); }
.services-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 50%; background: var(--cream-100); color: var(--burgundy-700); font-size: 1.4rem; }

.content-section-heading .section-heading { margin-bottom: 0; }
.content-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.content-card { display: flex; flex-direction: column; min-height: 300px; padding: 30px; border: 1px solid var(--cream-200); border-radius: var(--radius-sm); background: var(--white); box-shadow: 0 12px 36px rgba(72,19,38,.06); }
.content-card--featured { background: var(--burgundy-900); color: var(--white); }
.content-card h3 { margin-top: 20px; font-size: 1.62rem; }
.content-card--featured h3 { color: var(--white); }
.content-card p { color: var(--muted); }
.content-card--featured p { color: rgba(255,255,255,.76); }
.content-card > a { margin-top: auto; color: var(--burgundy-700); font-weight: 850; text-decoration: none; }
.content-card--featured > a { color: #f1d48f; }
.content-tag { align-self: flex-start; padding: 7px 10px; border-radius: 999px; background: var(--cream-100); color: var(--burgundy-700); font-size: .75rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.content-card--featured .content-tag { background: rgba(255,255,255,.12); color: #f1d48f; }
.content-disclaimer { display: grid; grid-template-columns: auto 1fr; gap: 18px; margin-top: 24px; padding: 20px 24px; border-left: 4px solid var(--gold-500); background: rgba(255,255,255,.65); color: var(--muted); font-size: .9rem; }
.content-disclaimer strong { color: var(--burgundy-900); }
.content-disclaimer p { margin-bottom: 0; }

.doctor-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: start; }
.doctor-intro { color: rgba(255,255,255,.75); font-size: 1.1rem; }
.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.credentials-grid article { display: flex; flex-direction: column; min-height: 140px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); background: rgba(255,255,255,.06); }
.credentials-grid strong { color: #f1d48f; }
.credentials-grid span { color: rgba(255,255,255,.75); }
.doctor-section .section-cta { grid-column: 1/-1; justify-self: start; margin-top: -18px; }

.location-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding: 44px; border: 1px solid var(--cream-200); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.location-card h2 { margin-bottom: 8px; }
.location-card p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; color: var(--muted); }
.location-icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: var(--cream-100); color: var(--burgundy-700); font-size: 2rem; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--cream-200); border-radius: var(--radius-sm); background: var(--white); }
.faq-list summary { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 20px; color: var(--burgundy-900); font-weight: 800; cursor: pointer; }
.faq-list summary::after { content: "+"; color: var(--burgundy-700); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 20px 20px; margin: 0; color: var(--muted); }

.final-cta { padding-block: 70px; background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-950)); color: var(--white); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 46px; }
.final-cta h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); }
.final-cta p:not(.eyebrow) { margin-bottom: 0; color: rgba(255,255,255,.74); }

footer { padding-block: 40px 96px; background: var(--burgundy-950); color: rgba(255,255,255,.7); }
.footer-inner { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 26px; }
.footer-inner img { width: 170px; }
.footer-inner div { display: flex; flex-direction: column; white-space: nowrap; }
.footer-inner strong { color: var(--white); }
.footer-inner p { margin: 0; text-align: right; font-size: .86rem; }

.floating-whatsapp {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 200;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(32, 169, 90, .34);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(32, 169, 90, .4);
}
.floating-whatsapp .whatsapp-icon { width: 28px; height: 28px; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; min-height: 650px; }
  .split-layout, .doctor-section, .faq-layout { gap: 44px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid, .content-cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid blockquote:last-child, .content-cards--home .content-card:last-child { grid-column: 1/-1; }
  .location-card { grid-template-columns: auto 1fr; }
  .location-card .whatsapp-button { grid-column: 1/-1; justify-self: start; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 640px); }
  html { scroll-padding-top: 70px; }
  .site-header { position: relative; }
  .header-inner { min-height: 70px; }
  .brand img { width: 174px; }
  .header-cta { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 24px; padding-top: 50px; padding-bottom: 0; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-lead { font-size: 1.04rem; }
  .hero-actions { display: grid; }
  .hero-actions a { width: 100%; }
  .trust-list { gap: 7px; }
  .trust-list li { font-size: .76rem; }
  .hero-image-wrap { width: min(100%, 440px); margin-inline: auto; }
  .hero-image { max-height: 480px; }
  .hero-card { left: 0; bottom: 20px; }
  .quick-contact-inner, .final-cta-inner { align-items: stretch; flex-direction: column; }
  .quick-contact .whatsapp-button, .final-cta .whatsapp-button { width: 100%; }
  .section { padding-block: 74px; }
  .split-layout, .doctor-section, .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .credentials-grid { grid-template-columns: 1fr; }
  .testimonials { padding-block: 60px; }
  .testimonials-heading, .content-section-heading { align-items: flex-start; flex-direction: column; }
  .testimonials-grid, .content-cards { grid-template-columns: 1fr; }
  .testimonials-grid blockquote:last-child, .content-cards--home .content-card:last-child { grid-column: auto; }
  .testimonials-grid blockquote p { min-height: auto; }
  .content-card { min-height: 270px; }
  .content-disclaimer { grid-template-columns: 1fr; gap: 6px; }
  .services-grid article { min-height: auto; }
  .portrait-card { order: -1; }
  .doctor-section .section-cta { grid-column: auto; width: 100%; margin-top: 0; }
  .location-card { grid-template-columns: 1fr; padding: 28px 22px; }
  .location-card .whatsapp-button, .section-cta { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-inner div { white-space: normal; }
  .footer-inner p { text-align: center; }
  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 54px;
    padding: 11px 17px;
    font-size: .92rem;
  }
  .floating-whatsapp .whatsapp-icon { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
