:root {
  --bg: #fbf5f1;
  --bg-soft: #f3e9e2;
  --card: #ffffff;
  --card-2: #fff9f5;
  --rose: #c79e9a;
  --rose-dark: #a97d79;
  --rose-soft: #e8cfc8;
  --title: #463534;
  --text: #7c6765;
  --muted: #9c8784;
  --white: #ffffff;
  --line: rgba(70, 53, 52, 0.08);
  --shadow: 0 24px 70px rgba(105, 83, 79, 0.12);
  --radius: 26px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 158, 154, 0.12), transparent 22%),
    radial-gradient(circle at bottom right, rgba(232, 207, 200, 0.16), transparent 24%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 16px;
}

h1,
h2,
h3,
.logo-text strong {
  font-family: "Cormorant Garamond", serif;
  color: var(--title);
}

h1 {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 0.95;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 0.98;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.8rem;
}

p {
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 16px 32px rgba(199, 158, 154, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(70, 53, 52, 0.08);
  color: var(--title);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 245, 241, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(169, 125, 121, 0.16);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 1.45rem;
}

.logo-text span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--title);
  font-weight: 700;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--rose-dark);
  transition: 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(199, 158, 154, 0.08);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--title);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    url("https://images.pexels.com/photos/3762879/pexels-photo-3762879.jpeg?auto=compress&cs=tinysrgb&w=1600")
    center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(250, 243, 238, 0.88) 18%,
      rgba(250, 243, 238, 0.54) 52%,
      rgba(250, 243, 238, 0.82) 100%
    );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 60px 0;
}

.hero-text {
  max-width: 640px;
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.stat-card,
.treatment-card,
.feature-card,
.testimonial-card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(8px);
}

.stat-card strong {
  display: block;
  font-size: 1.45rem;
  color: var(--title);
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-panel {
  justify-self: end;
  max-width: 360px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(199, 158, 154, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel span {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--rose-dark);
}

.hero-panel strong {
  display: block;
  color: var(--title);
  font-size: 1.3rem;
  line-height: 1.5;
}

.ribbon {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.ribbon-row {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.ribbon-row span {
  color: var(--rose-dark);
  font-weight: 700;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.treatment-card {
  padding: 28px;
  transition: 0.35s ease;
}

.treatment-card:hover {
  transform: translateY(-8px);
}

.treatment-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(199, 158, 154, 0.12);
  color: var(--rose-dark);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.split-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.feature-card {
  padding: 18px;
}

.feature-card strong {
  display: block;
  color: var(--title);
  margin-bottom: 4px;
}

.feature-card span {
  color: var(--muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.result-showcase {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.result-showcase:hover {
  transform: translateY(-8px);
}

.result-showcase img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.result-showcase-content {
  padding: 24px;
}

.result-showcase-content span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(199, 158, 154, 0.12);
  color: var(--rose-dark);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.result-showcase-content h3 {
  color: var(--title);
  margin-bottom: 10px;
}

.result-showcase-content p {
  color: var(--text);
}

.clinic-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.clinic-item {
  overflow: hidden;
  border-radius: 24px;
  background: #f2e8df;
  box-shadow: var(--shadow);
}

.clinic-item.large {
  grid-row: span 2;
}

.clinic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.clinic-item:hover img {
  transform: scale(1.05);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card strong {
  display: block;
  color: var(--title);
  margin-top: 14px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #fff7f2, #f8efe8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 42px 0 24px;
  border-top: 1px solid var(--line);
  background: #f7eee8;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer h3 {
  color: var(--title);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #1db954, #25d366);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .treatments-grid,
  .results-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clinic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 240px);
  }

  .clinic-item.large {
    grid-row: span 1;
  }

  .split-image img {
    height: 420px;
  }

  .hero-panel {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 22px;
    background: rgba(251, 245, 241, 0.98);
    border: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .desktop-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-stats,
  .treatments-grid,
  .feature-grid,
  .results-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 82px 0;
  }

  .hero-buttons,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .ribbon-row {
    justify-content: center;
  }

  .clinic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .clinic-item,
  .clinic-item.large {
    height: 240px;
  }

  .hero {
    background-position: 62% center;
  }

  .result-showcase img {
    height: 260px;
  }
}