/* ============ DESIGN TOKENS ============ */
:root {
  --ink: #292527;
  --rose: #bb5678;
  --rose-light: #d4809a;
  --cream: #fbf8f5;
  --soft: #f4e4e7;
  --line: #e9dcdf;
  --shadow-sm: 0 2px 8px rgba(41,37,39,.06);
  --shadow-md: 0 8px 24px rgba(41,37,39,.10);
  --shadow-lg: 0 15px 40px rgba(78,40,51,.13);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 99px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ TOPBAR ============ */
.topbar {
  height: 80px;
  padding: 0 clamp(20px, 7vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,248,245,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: height var(--transition), box-shadow var(--transition);
}
.topbar.scrolled {
  height: 64px;
  box-shadow: var(--shadow-sm);
}

/* Brand / Logo */
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
}
.topbar.scrolled .brand-logo { height: 40px; }

/* Desktop Nav */
.nav-desktop {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3px;
}
.nav-desktop a {
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: width var(--transition);
}
.nav-desktop a:hover { color: var(--rose); }
.nav-desktop a:hover::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  background: var(--ink);
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--rose);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(251,248,245,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav nav a {
  font: 600 22px/1.2 'Playfair Display', serif;
  color: var(--ink);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, color .2s ease;
}
.mobile-nav.open nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open nav a:nth-child(1) { transition-delay: .1s; }
.mobile-nav.open nav a:nth-child(2) { transition-delay: .15s; }
.mobile-nav.open nav a:nth-child(3) { transition-delay: .2s; }
.mobile-nav.open nav a:nth-child(4) { transition-delay: .25s; }
.mobile-nav.open nav a:nth-child(5) { transition-delay: .35s; }
.mobile-nav nav a:hover { color: var(--rose); }

/* ============ SHARED COMPONENTS ============ */
.eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.4px;
  color: var(--rose);
  font-weight: 700;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: all var(--transition);
  white-space: nowrap;
}
.primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 10px 24px rgba(184,79,114,.22);
}
.primary:hover {
  background: #a44968;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(184,79,114,.30);
}
.ghost {
  border: 1.5px solid #cebcc2;
  color: var(--ink);
}
.ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-1px);
}
.dark {
  background: var(--ink);
  color: #fff;
}
.dark:hover {
  background: #3d3739;
  transform: translateY(-1px);
}

.text-link {
  font-weight: 700;
  font-size: 13px;
  color: var(--rose);
  transition: opacity var(--transition);
}
.text-link:hover { opacity: .75; }

/* ============ HERO ============ */
.hero {
  min-height: 670px;
  padding: 80px clamp(24px, 9vw, 130px);
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: clamp(32px, 7vw, 100px);
  background: linear-gradient(135deg, #f8efec 0%, #fbf8f5 45%, #efd8df 100%);
  overflow: hidden;
}
.hero h1 {
  font: 600 clamp(36px, 5vw, 72px)/1.08 'Playfair Display', serif;
  margin: 18px 0;
}
.hero em, h2 em { color: var(--rose); font-style: italic; }
.hero p {
  max-width: 490px;
  color: #6e6266;
  line-height: 1.8;
  font-size: 15px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}
.hero-note {
  font-size: 12px;
  color: #75686d;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #6da180;
  border-radius: 50%;
  margin-right: 4px;
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-visual > img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 200px 200px var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.floating-card {
  position: absolute;
  bottom: 32px;
  left: -20px;
  padding: 18px 24px;
  background: #fff;
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-lg);
}
.floating-card strong {
  display: block;
  font: 600 20px/1.2 'Playfair Display', serif;
}
.floating-card span {
  font-size: 9px;
  letter-spacing: 1px;
  color: #756b70;
  text-transform: uppercase;
}

/* ============ INTRO / SOBRE ============ */
.intro {
  padding: 120px clamp(24px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 9vw, 130px);
  align-items: center;
}
.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-sm) 90px var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.intro h2, .signature-copy h2, .contact h2, .section-head h2 {
  font: 600 clamp(32px, 4vw, 55px)/1.1 'Playfair Display', serif;
  margin: 14px 0 18px;
}
.intro p, .signature-copy p {
  max-width: 490px;
  color: #6e6266;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 8px;
}
.proof-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.proof-pills span {
  padding: 8px 14px;
  border: 1.5px solid #dcc8ce;
  border-radius: var(--radius-pill);
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  transition: all var(--transition);
}
.proof-pills span:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

/* ============ PROCEDURES ============ */
.procedures {
  padding: 110px clamp(20px, 8vw, 120px);
  background: var(--soft);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}
.section-head p {
  max-width: 320px;
  color: #71666a;
  line-height: 1.7;
  font-size: 14px;
}
.procedure-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}
.procedure {
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.procedure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.procedure.featured {
  padding: 0;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.procedure.featured:hover { box-shadow: var(--shadow-lg); }
.procedure.featured img {
  height: 195px;
  width: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.procedure.featured:hover img { transform: scale(1.03); }
.procedure.featured div { padding: 26px; }
.procedure span, .result-card span {
  font-size: 10px;
  letter-spacing: 1.7px;
  color: var(--rose);
  font-weight: 700;
}
.procedure h3 {
  font: 600 26px/1.2 'Playfair Display', serif;
  margin: 16px 0 10px;
}
.procedure p {
  font-size: 13px;
  line-height: 1.7;
  color: #71666a;
}
.featured p { color: #dacfd2; }
.procedure a {
  margin-top: auto;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  transition: opacity var(--transition);
}
.procedure a:hover { opacity: .7; }
.number {
  font: 500 48px/1 'Playfair Display', serif;
  color: #e4b9c6;
}
.soft {
  background: #edd3dc;
}

/* ============ SIGNATURE SERVICES ============ */
.signature-services {
  padding: 120px clamp(24px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 9vw, 130px);
  align-items: center;
  background: #fff;
}
.service-list { border-top: 1px solid var(--line); }
.service-list div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 22px;
  font: 500 22px/1.3 'Playfair Display', serif;
  transition: padding-left var(--transition), color var(--transition);
}
.service-list div:hover {
  padding-left: 12px;
  color: var(--rose);
}
.service-list b {
  font: 700 11px/1 'DM Sans', sans-serif;
  color: var(--rose);
  min-width: 20px;
}

/* ============ RESULTS ============ */
.results {
  padding: 110px clamp(20px, 8vw, 120px);
  background: #f7f2ed;
}
.result-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 16px;
}
.result-card {
  position: relative;
  overflow: hidden;
  background: #eee;
  border-radius: var(--radius-md);
}
.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.result-card:hover img { transform: scale(1.06); }
.result-card div {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 40px 18px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.result-card strong {
  display: block;
  font: 500 18px/1.3 'Playfair Display', serif;
}
.result-card.tall { grid-row: span 2; }
.result-card.wide { grid-column: span 2; }


/* ============ QUOTE ============ */
.quote {
  text-align: center;
  padding: 130px clamp(24px, 8vw, 100px);
  background: var(--ink);
  color: #fff;
}
.quote > span {
  font: 500 80px/0.5 Georgia, serif;
  color: var(--rose);
}
.quote h2 {
  font: 500 clamp(32px, 4vw, 55px)/1.12 'Playfair Display', serif;
  margin: 24px 0 16px;
}
.quote p { color: #d4cace; font-size: 15px; }

/* ============ CONTACT ============ */
.contact {
  padding: 120px clamp(24px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 9vw, 130px);
  align-items: center;
  background: #fff;
}
.contact p {
  max-width: 440px;
  color: #6e6266;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 24px;
}
.contact-details {
  border-left: 2px solid var(--line);
  padding-left: 45px;
}
.contact-details div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-details span {
  display: block;
  font-size: 10px;
  color: var(--rose);
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact-details a {
  font-size: 15px;
  color: var(--ink);
  transition: color var(--transition);
}
.contact-details a:hover { color: var(--rose); }

/* ============ MAP ============ */
.map-section { position: relative; }
.map-section iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 420px;
  filter: saturate(.75);
}
.map-section > a {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: background var(--transition);
}
.map-section > a:hover { background: var(--rose); }

/* ============ FOOTER ============ */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px clamp(20px, 8vw, 100px);
  background: var(--soft);
  color: #756b70;
  font-size: 12px;
}
.footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}
footer a {
  font-weight: 600;
  transition: color var(--transition);
}
footer a:hover { color: var(--rose); }

/* ============ WHATSAPP FAB ============ */
.whatsapp {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 7px 22px rgba(23,75,42,.31);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(23,75,42,.40);
}
.whatsapp svg { width: 30px; height: 30px; }

/* ================================================================
   RESPONSIVE — TABLET (max 960px)
   ================================================================ */
@media (max-width: 960px) {
  .nav-desktop { gap: 20px; font-size: 12px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 6vw 70px; }
  .hero-visual { margin-top: 40px; max-width: 400px; }
  .intro, .signature-services, .contact {
    grid-template-columns: 1fr;
    padding: 80px 6vw;
    gap: 40px;
  }
  .procedure-grid { grid-template-columns: 1fr 1fr; }
  .result-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
}

/* ================================================================
   RESPONSIVE — MOBILE (max 680px)
   ================================================================ */
@media (max-width: 680px) {
  /* Topbar */
  .topbar {
    height: 68px;
    padding: 0 20px;
  }
  .brand-logo { height: 40px; }
  .topbar.scrolled .brand-logo { height: 34px; }
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 40px 24px 56px;
    gap: 32px;
  }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero p { font-size: 14px; }
  .hero-visual { width: 100%; max-width: none; }
  .hero-visual > img { aspect-ratio: 1/1.1; border-radius: 120px 120px var(--radius-sm) var(--radius-sm); }
  .floating-card {
    left: -8px;
    bottom: 20px;
    padding: 14px 18px;
  }
  .floating-card strong { font-size: 16px; }
  .actions { flex-direction: column; gap: 10px; }
  .actions .button { justify-content: center; width: 100%; padding: 16px 24px; }

  /* Intro */
  .intro {
    display: flex;
    flex-direction: column;
    padding: 60px 24px;
    gap: 32px;
  }
  .intro-image img {
    height: 320px;
    border-radius: var(--radius-sm) 60px var(--radius-sm) var(--radius-sm);
  }
  .intro h2 { font-size: clamp(28px, 7vw, 40px); }

  /* Procedures */
  .procedures {
    padding: 60px 20px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .section-head h2 { font-size: clamp(28px, 7vw, 40px); }
  .procedure-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .procedure {
    min-height: auto;
    padding: 24px;
    border-radius: var(--radius-md);
  }
  .procedure.featured img { height: 160px; }
  .procedure.featured div { padding: 22px; }
  .procedure h3 { font-size: 22px; }
  .number { font-size: 36px; }

  /* Signature */
  .signature-services {
    display: flex;
    flex-direction: column;
    padding: 60px 24px;
    gap: 36px;
  }
  .signature-copy h2 { font-size: clamp(28px, 7vw, 40px); }
  .signature-copy p { margin-bottom: 24px; }
  .service-list { width: 100%; }
  .service-list div { font-size: 18px; padding: 18px 0; }

  /* Results */
  .results { padding: 60px 20px; }
  .result-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
    gap: 10px;
  }
  .result-card { border-radius: var(--radius-sm); }
  .result-card div {
    padding: 28px 12px 12px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  }
  .result-card strong { font-size: 14px; }
  .result-card span { font-size: 8px; }


  /* Quote */
  .quote {
    padding: 80px 24px;
  }
  .quote > span { font-size: 60px; }
  .quote h2 { font-size: clamp(26px, 6vw, 40px); }

  /* Contact */
  .contact {
    display: flex;
    flex-direction: column;
    padding: 60px 24px;
    gap: 36px;
  }
  .contact h2 { font-size: clamp(28px, 7vw, 40px); }
  .contact-details {
    border-left: 0;
    border-top: 2px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

  /* Map */
  .map-section iframe { height: 300px; }
  .map-section > a { font-size: 11px; padding: 12px 18px; }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    text-align: center;
  }
  .footer-logo { height: 36px; }

  /* WhatsApp FAB */
  .whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp svg { width: 26px; height: 26px; }
}

/* ================================================================
   RESPONSIVE — VERY SMALL (max 400px)
   ================================================================ */
@media (max-width: 400px) {
  .hero { padding: 32px 16px 48px; }
  .hero h1 { font-size: 28px; }
  .intro, .signature-services, .contact { padding: 48px 16px; }
  .procedures, .results { padding: 48px 16px; }
  .result-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .result-card.tall { grid-row: span 1; }
  .result-card.wide { grid-column: span 1; }
}
