:root {
  --terracotta: #b97f73;
  --terracotta-dark: #9c6459;
  --gold: #e3a857;
  --blue-grey: #ced2df;
  --soft-blue: #b1d3e9;
  --dusty-rose: #e4c2be;
  --cream: #faf5ef;
  --cream-alt: #f3ece3;
  --footer-bg: #f6ede6;
  --ink: #3d2c26;
  --ink-soft: #6b5850;
  --white: #ffffff;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --radius: 20px;
  --shadow: 0 20px 40px -20px rgba(61, 44, 38, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-heading); color: var(--ink); margin: 0 0 16px; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.12; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.25; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 16px; color: var(--ink-soft); }
em, i { font-style: normal; }
h1 em, h2 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--terracotta-dark);
  margin-bottom: 16px;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.center { display: flex; justify-content: center; width: 100%; }

.section-title.center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-subtitle.center { text-align: center; max-width: 620px; margin: -8px auto 40px; }
.br-desktop { display: inline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(185, 127, 115, 0.6);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--terracotta);
  color: var(--terracotta-dark);
}
.btn-ghost:hover { background: var(--dusty-rose); transform: translateY(-2px); }

/* ICON BADGE (replaces emoji) */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--dusty-rose);
  color: var(--terracotta-dark);
  margin-bottom: 18px;
}
.icon-badge svg { width: 24px; height: 24px; }
.icon-badge-light { background: rgba(255,255,255,0.55); color: var(--ink); }

/* BRAND / LOGO */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand-text em {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 239, 0.85);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(61, 44, 38, 0.35); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-nav { display: flex; gap: 24px; }
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--terracotta-dark); }
.nav-cta { padding: 11px 24px; font-size: 0.85rem; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s; }

/* SCROLL REVEAL */
.reveal, .pain-card, .process-card, .practical-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view, .pain-card.in-view, .process-card.in-view, .practical-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero { padding: 60px 0 90px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-lead { font-size: 1.1rem; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 34px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.hero-stats strong { font-family: var(--font-accent); font-style: italic; font-size: 1.4rem; color: var(--terracotta); }
.hero-stats span { font-size: 0.78rem; color: var(--ink-soft); max-width: 140px; }
.hero-media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 10px var(--white);
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media { position: relative; }
.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 10px 18px 10px 10px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-decoration: none;
  max-width: 210px;
}
.hero-badge .icon-badge { width: 38px; height: 38px; border-radius: 12px; margin: 0; flex-shrink: 0; background: var(--dusty-rose); }
.hero-badge .icon-badge svg { width: 18px; height: 18px; }
.hero-badge span:last-child { font-size: 0.72rem; line-height: 1.35; color: var(--ink-soft); }
.hero-badge strong { font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem; color: var(--ink); }

/* PAIN */
.pain { padding: 72px 0; background: var(--cream-alt); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0 40px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: opacity 0.7s ease, transform 0.35s ease;
}
.pain-card:hover { transform: translateY(-6px); }
.pain-card p { font-size: 0.95rem; margin-bottom: 0; }
.pain-footer { text-align: center; max-width: 900px; margin: 0 auto; font-weight: 600; color: var(--ink); font-size: 1.05rem; }
@media (min-width: 900px) {
  .pain-footer { white-space: nowrap; }
}

/* ABOUT */
.about { padding: 72px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img:first-child {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-media-secondary {
  position: absolute;
  width: 46%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
  bottom: -30px;
  right: -30px;
}
.about-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--terracotta-dark);
  line-height: 1.5;
  margin-bottom: 24px;
}
.credentials {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credentials li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}
.credentials li strong { color: var(--ink); font-weight: 600; }
.credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.signature { font-family: var(--font-accent); font-style: italic; font-size: 1.15rem; color: var(--terracotta-dark); margin-top: 24px; }

/* FOCUS */
.focus { padding: 72px 0; }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.focus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: opacity 0.7s ease, transform 0.35s ease;
}
.focus-card:hover { transform: translateY(-6px); }
.focus-card .icon-badge { background: var(--blue-grey); color: var(--ink); }
.focus-sub { display: block; font-family: var(--font-accent); font-style: italic; font-weight: 500; font-size: 0.95rem; color: var(--terracotta); margin-top: 2px; }
.focus-card p { font-size: 0.92rem; margin-bottom: 0; }

/* PROCESS */
.process { padding: 72px 0; background: var(--cream-alt); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.process-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: opacity 0.7s ease, transform 0.35s ease;
}
.process-card:hover { transform: translateY(-6px); }
.process-card .icon-badge { background: var(--soft-blue); color: var(--terracotta-dark); }
.process-card h3 { font-size: 1rem; margin-bottom: 10px; }
.process-card p { font-size: 0.86rem; margin-bottom: 0; }

/* STEPS */
.steps { padding: 72px 0; background: var(--cream-alt); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0 8px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: opacity 0.7s ease, transform 0.35s ease;
}
.step:hover { transform: translateY(-6px); }
.step-num {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--dusty-rose);
  margin-bottom: 12px;
}
.step p { font-size: 0.95rem; margin-bottom: 0; }
.steps-cta { text-align: center; margin-top: 40px; }

/* PILLARS */
.pillars { padding: 72px 0; }
.pillars-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.pillars-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.pillar { display: flex; gap: 22px; padding: 18px 0; align-items: flex-start; }
.pillar-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 2.1rem;
  color: var(--dusty-rose);
  line-height: 1;
  flex-shrink: 0;
}
.pillar h3 { color: var(--terracotta-dark); margin-bottom: 6px; }
.pillar p { margin-bottom: 0; font-size: 0.95rem; }

/* CLINIC */
.clinic { padding: 0 0 72px; }
.clinic-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.clinic-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.clinic-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 30px 0 34px;
}
.clinic-info-item .icon-badge { background: var(--soft-blue); margin-bottom: 14px; }
.clinic-info-item h3 { font-size: 1rem; margin-bottom: 8px; }
.clinic-info-item p { font-size: 0.82rem; margin-bottom: 0; }

/* FAQ */
.faq { padding: 72px 0; background: var(--cream-alt); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 8px 26px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.4rem;
  color: var(--terracotta);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 20px; margin: 0; font-size: 0.95rem; }

/* CTA FINAL */
.cta-final { padding: 20px 0 72px; }
.cta-final-inner {
  background: var(--terracotta);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-photo { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.cta-content { padding: 56px 56px; color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.cta-content h2 { color: var(--white); }
.cta-content h2 em { color: var(--gold); }
.cta-content p { color: rgba(255,255,255,0.9); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 10px 0 26px; }
.cta-final .btn-primary { background: var(--ink); box-shadow: none; }
.cta-final .btn-primary:hover { background: #241a15; }
.cta-final .btn-ghost { border-color: var(--white); color: var(--white); }
.cta-final .btn-ghost:hover { background: rgba(255,255,255,0.15); }
.cta-links { display: flex; gap: 24px; flex-wrap: wrap; }
.cta-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}
.cta-links a svg { width: 17px; height: 17px; flex-shrink: 0; }
.cta-links a:hover { opacity: 1; text-decoration: underline; }

/* TRUST BAR */
.trust-bar { background: var(--cream-alt); padding: 22px 0; }
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-item svg { width: 18px; height: 18px; color: var(--terracotta); flex-shrink: 0; }

/* FOOTER */
.site-footer { background: var(--footer-bg); color: var(--ink-soft); padding-top: 70px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; max-width: 260px; margin: 0 0 18px; }
.footer-social { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(61, 44, 38, 0.08);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--terracotta); color: var(--white); transform: translateY(-2px); }
.footer-contact-list { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-list a { color: var(--ink); text-decoration: none; font-size: 0.85rem; }
.footer-contact-list a:hover { color: var(--terracotta-dark); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin: 8px 0 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--terracotta-dark); }
.footer-bottom { background: var(--cream); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 24px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.footer-bottom-inner p { margin: 0; }
.footer-credit-bar {
  background: var(--cream);
  text-align: center;
  padding: 8px 24px;
}
.footer-credit-bar p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.footer-credit-bar a {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-decoration: none;
}
.footer-credit-bar a:hover { text-decoration: underline; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,0.4);
  z-index: 200;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* STICKY MOBILE CTA */
.sticky-cta { display: none; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-inner, .about-inner, .pillars-inner, .clinic-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 380px; margin: 0 auto; }
  .about-media { max-width: 380px; margin: 0 auto 50px; }
  .pillars-media, .clinic-media { max-width: 380px; margin: 0 auto 40px; }
  .pain-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-final-inner { grid-template-columns: 1fr; }
  .cta-photo { min-height: 260px; }
  .br-desktop { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px 30px;
    gap: 18px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 10px 30px -18px rgba(61, 44, 38, 0.35);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .cta-content { padding: 40px 28px; }
}

@media (max-width: 520px) {
  .about-media-secondary { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .clinic-info { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
  .pain-footer { white-space: normal; }
}

@media (max-width: 760px) {
  body { padding-bottom: 74px; }
  .whatsapp-float { display: none; }
  .hero-actions, .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn, .cta-actions .btn {
    width: 100%;
    max-width: 340px;
  }
  .hero-stats {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }
  .hero-stats div { flex: 1; min-width: 0; }
  .hero-stats strong { font-size: 1.1rem; }
  .hero-stats span { font-size: 0.66rem; max-width: none; }
  .sticky-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 250;
    background: rgba(250, 245, 239, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    box-shadow: 0 -12px 30px -16px rgba(61, 44, 38, 0.4);
  }
  .sticky-cta strong { display: block; font-size: 0.85rem; color: var(--ink); }
  .sticky-cta span { font-size: 0.72rem; color: var(--ink-soft); }
  .sticky-cta .btn { padding: 11px 22px; font-size: 0.85rem; white-space: nowrap; box-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .pain-card, .process-card, .practical-card { opacity: 1; transform: none; transition: none; }
}
