/* =========================================================
   Elegance Clinic — Landing Page
   Brand: bold, modern, conversion-focused
   Palette: deep wine + warm gold + blush cream + ink
   ========================================================= */

:root {
  --c-wine:       #6E1F36;
  --c-wine-deep:  #4C0F23;
  --c-wine-soft:  #9F3F58;
  --c-gold:       #C9A45A;
  --c-gold-soft:  #E8D6AE;
  --c-blush:      #F6E4DC;
  --c-cream:      #FBF6F1;
  --c-ink:        #181214;
  --c-ink-soft:   #5C4F52;
  --c-line:       #ECDFD5;
  --c-white:      #FFFFFF;
  --c-wa:         #25D366;
  --c-wa-dark:    #128C7E;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius:        18px;
  --radius-sm:     10px;
  --shadow-soft:   0 4px 30px rgba(110, 31, 54, 0.06);
  --shadow-card:   0 18px 60px -20px rgba(76, 15, 35, 0.20);
  --shadow-cta:    0 14px 30px -10px rgba(37, 211, 102, 0.45);
}

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-wine); text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--c-wine-deep); }

h1, h2, h3, h4, h5 {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
  color: var(--c-ink);
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.05rem; }

.serif { font-family: var(--serif); font-weight: 500; letter-spacing: 0; }
.italic { font-style: italic; }
.gold { color: var(--c-gold); }

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-wine);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--c-gold); }

.section-head { max-width: 720px; margin: 0 auto 3rem; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p,
.section-sub { color: var(--c-ink-soft); font-size: 1.1rem; }
.center { text-align: center; }
.center-ctas { justify-content: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.btn-lg { padding: 18px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-whatsapp {
  background: var(--c-wa);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-whatsapp:hover { background: var(--c-wa-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(37,211,102,.55); }

.btn-outline {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn-outline:hover { background: var(--c-ink); color: var(--c-cream); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: #fff; color: var(--c-wine); border-color: #fff; }

.btn-dark {
  background: var(--c-ink);
  color: var(--c-cream);
}
.btn-dark:hover { background: var(--c-wine); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  padding: 10px 16px;
  border: none;
}
.btn-ghost:hover { color: var(--c-wine); }

.btn-text {
  background: transparent;
  color: var(--c-wine);
  padding: 14px 0;
  border-bottom: 1.5px solid var(--c-wine);
  border-radius: 0;
}

/* ============ PROMO BAR ============ */
.promo-bar {
  background: var(--c-wine-deep);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
  position: relative;
  z-index: 100;
}
.promo-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.promo-dot {
  width: 7px; height: 7px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.promo-link { color: var(--c-gold); font-weight: 600; }
.promo-link:hover { color: #fff; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 246, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img { height: 96px; width: auto; transition: height .25s ease; }
.site-header.is-scrolled .logo img { height: 60px; }
.nav {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-ink);
  position: relative;
  white-space: nowrap;
}
.nav a:hover { color: var(--c-wine); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-ink);
  transition: transform .25s ease, opacity .25s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(201, 164, 90, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(110, 31, 54, 0.10), transparent 60%),
    var(--c-cream);
}
.hero-bg-grid {
  position: absolute;
  top: 0; right: -8%;
  width: 50%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "a a"
    "b c";
  gap: 16px;
  padding: 30px;
  pointer-events: none;
  opacity: 0.95;
}
.hero-bg-cell {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  filter: saturate(1.05) contrast(1.02);
}
.hero-bg-cell:nth-child(1) { grid-area: a; }
.hero-bg-cell:nth-child(2) { grid-area: b; transform: translateY(20px); }
.hero-bg-cell:nth-child(3) { grid-area: c; transform: translateY(-10px); }

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--c-cream) 35%, rgba(251,246,241,0.4) 60%, transparent 100%);
}
.hero-wrap {
  position: relative;
  z-index: 2;
}
.hero-text {
  max-width: 640px;
}
.hero-text h1 { margin-bottom: 24px; }
.hero-text h1 .serif {
  display: inline-block;
  color: var(--c-wine);
}
.lede {
  font-size: 1.18rem;
  color: var(--c-ink-soft);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  max-width: 620px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  line-height: 1.3;
}
.trust-item strong {
  font-size: 1.15rem;
  color: var(--c-ink);
  font-weight: 700;
}
.trust-item .stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--c-line);
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--c-ink);
  color: var(--c-cream);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--c-wine);
  border-bottom: 1px solid var(--c-wine);
}
.marquee-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.marquee-track span { display: inline-block; }
.marquee-track span:nth-child(odd) { color: var(--c-gold); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SERVICES ============ */
.services {
  padding: 110px 0;
  background: var(--c-cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  isolation: isolate;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.service-card:hover .service-image { transform: scale(1.06); }
.service-body {
  padding: 26px 24px 28px;
  position: relative;
}
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-gold);
  display: block;
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--c-ink);
}
.service-card p {
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  margin: 0 0 16px;
}
.service-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-wine);
  letter-spacing: 0.05em;
}
.service-card-feature {
  background: var(--c-ink);
  color: var(--c-cream);
}
.service-card-feature h3 { color: #fff; }
.service-card-feature p { color: rgba(251,246,241,0.7); }
.service-card-feature .service-arrow { color: var(--c-gold); }
.badge-featured {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--c-gold);
  color: var(--c-ink);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.service-cta-card {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 100%);
  color: #fff;
  padding: 36px 30px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.service-cta-card h3 { color: #fff; font-size: 1.3rem; }
.service-cta-card p { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin-bottom: 20px; }

/* ============ WHY US ============ */
.why-us {
  padding: 110px 0;
  background: var(--c-ink);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 164, 90, 0.08), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(110, 31, 54, 0.18), transparent 50%);
  pointer-events: none;
}
.why-us .wrap { position: relative; z-index: 1; }
.why-us .eyebrow { color: var(--c-gold); }
.why-us h2 { color: var(--c-cream); }
.why-us h2 .serif { color: var(--c-gold); }
.why-us .why-text p { color: rgba(251,246,241,0.7); font-size: 1.1rem; margin-bottom: 30px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.why-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,164,90,0.18);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  background: rgba(201,164,90,0.06);
}
.why-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: 1.4rem;
  border-radius: 12px;
  margin-bottom: 14px;
}
.why-card h4 {
  color: var(--c-cream);
  margin-bottom: 6px;
}
.why-card p {
  color: rgba(251,246,241,0.65);
  font-size: 0.9rem;
  margin: 0;
}
.why-us .btn-dark { background: var(--c-gold); color: var(--c-ink); }
.why-us .btn-dark:hover { background: #fff; color: var(--c-wine); }

/* ============ DOCTOR ============ */
.doctor { padding: 110px 0; background: var(--c-blush); }
.doctor-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.doctor-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.doctor-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.doctor-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--c-ink);
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.3;
}
.doctor-badge strong {
  display: block;
  font-size: 2rem;
  color: var(--c-gold);
  font-family: var(--serif);
  line-height: 1;
  margin-bottom: 2px;
}
.doctor-text h2 { font-size: clamp(2rem, 3.4vw, 2.6rem); }
.doctor-text h2 .serif { color: var(--c-wine); display: block; margin-bottom: 6px; }
.doctor-text p {
  color: var(--c-ink-soft);
  font-size: 1.02rem;
  margin-bottom: 18px;
}
.creds {
  display: grid;
  gap: 10px;
  margin: 24px 0 32px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.cred-item span {
  width: 22px; height: 22px;
  background: var(--c-wine);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.doctor-ctas {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

/* ============ RESULTS ============ */
.results { padding: 110px 0; background: var(--c-cream); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.results-grid figure {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease;
}
.results-grid figure:hover { transform: scale(1.03); }
.results-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.results-grid figcaption {
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-wine);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.results-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--c-ink-soft);
  margin: 14px 0 28px;
  font-style: italic;
}

/* ============ TEAM (Swiper slider) ============ */
.team {
  padding: 110px 0;
  background: var(--c-cream);
  border-top: 1px solid var(--c-line);
}
.team-slider {
  position: relative;
  padding: 10px 0 60px;
  overflow: hidden;
}
.team-slider .swiper-wrapper { align-items: stretch; }
.team-slider .swiper-slide { height: auto; }
.team-card {
  height: 100%;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 22px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.team-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.team-card:hover img { transform: scale(1.06); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24,18,20,0.78) 100%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .25s ease;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-wa {
  width: 42px; height: 42px;
  background: var(--c-wa);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(37,211,102,0.4);
}
.team-wa:hover { background: var(--c-wa-dark); color: #fff; transform: scale(1.05); }
.team-card h4 { font-size: 1.08rem; margin-bottom: 4px; color: var(--c-ink); }
.team-card span {
  font-size: 0.82rem;
  color: var(--c-ink-soft);
  display: block;
  line-height: 1.4;
}

/* Swiper overrides */
.team-slider .swiper-pagination {
  bottom: 0;
  position: absolute;
}
.team-slider .swiper-pagination-bullet {
  width: 9px; height: 9px;
  background: var(--c-line);
  opacity: 1;
  transition: width .25s ease, background .25s ease;
}
.team-slider .swiper-pagination-bullet-active {
  background: var(--c-wine);
  width: 32px;
  border-radius: 100px;
}
.team-slider .swiper-button-prev,
.team-slider .swiper-button-next {
  width: 46px; height: 46px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  color: var(--c-wine);
  margin-top: 0;
  top: 40%;
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease;
}
.team-slider .swiper-button-prev:hover,
.team-slider .swiper-button-next:hover {
  background: var(--c-wine);
  color: #fff;
}
.team-slider .swiper-button-prev::after,
.team-slider .swiper-button-next::after {
  font-size: 16px;
  font-weight: 800;
}

/* ============ REVIEWS (Google-style) ============ */
.reviews {
  padding: 110px 0;
  background: var(--c-blush);
}
.google-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 28px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.google-summary-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.g-logo {
  width: 56px; height: 56px;
  background: #F1EFE8;
  border-radius: 50%;
  display: grid; place-items: center;
}
.g-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  font-weight: 600;
  margin-bottom: 2px;
}
.g-stars-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rating-big {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--c-wine);
  line-height: 1;
  font-weight: 600;
}
.stars-big {
  color: #FBBC05;
  font-size: 1.3rem;
  letter-spacing: 3px;
}
.rating-count {
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  margin-top: 4px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  margin: 0;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Google-styled review */
.g-review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.g-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.92rem;
}
.g-review-head strong {
  display: block;
  font-size: 0.98rem;
  color: var(--c-ink);
  font-weight: 600;
}
.g-meta {
  font-size: 0.78rem;
  color: var(--c-ink-soft);
}
.g-icon { flex-shrink: 0; }
.g-stars-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FBBC05;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.g-date {
  color: var(--c-ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0;
  font-weight: 500;
}
.review-card p {
  font-size: 0.95rem;
  color: var(--c-ink);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ============ VIDEOS ============ */
.videos {
  padding: 110px 0;
  background: var(--c-ink);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.videos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(201, 164, 90, 0.10), transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(110, 31, 54, 0.22), transparent 50%);
  pointer-events: none;
}
.videos .wrap { position: relative; z-index: 1; }
.videos .eyebrow { color: var(--c-gold); }
.videos h2 { color: var(--c-cream); }
.videos h2 .serif { color: var(--c-gold); }
.videos .section-sub { color: rgba(251,246,241,0.7); }
.videos-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 26px;
  align-items: start;
}
.video-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,164,90,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.video-card:hover { border-color: var(--c-gold); }
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-meta {
  padding: 22px 24px 26px;
}
.video-tag {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.video-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.video-card p {
  color: rgba(251,246,241,0.7);
  margin: 0;
  font-size: 0.92rem;
}
.videos .btn-dark { background: var(--c-gold); color: var(--c-ink); }
.videos .btn-dark:hover { background: #fff; color: var(--c-wine); }

/* ============ FOOTER LINKS LIST ============ */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.78);
  position: relative;
  padding-left: 14px;
}
.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: 700;
}
.footer-links a:hover { color: var(--c-gold); padding-left: 18px; transition: padding .2s ease; }

/* ============ LEAD FORM ============ */
.lead-form {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lead-form::before, .lead-form::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-gold), transparent 70%);
  opacity: 0.18;
  pointer-events: none;
}
.lead-form::before { width: 500px; height: 500px; top: -200px; right: -150px; }
.lead-form::after  { width: 400px; height: 400px; bottom: -150px; left: -100px; opacity: 0.10; }
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.form-text h2 { color: #fff; font-size: clamp(2rem, 3.4vw, 2.8rem); }
.form-text h2 .serif { color: var(--c-gold); }
.form-text > p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 26px; }
.form-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.form-checks li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.form-checks li span {
  width: 22px; height: 22px;
  background: var(--c-gold);
  color: var(--c-ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.form-or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 22px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}
.form-or::before, .form-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.form-card {
  background: #fff;
  color: var(--c-ink);
  padding: 36px 34px;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-card h3 { margin-bottom: 6px; }
.form-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-ink-soft);
}
.form-card input,
.form-card select,
.form-card textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: 10px;
  background: var(--c-cream);
  color: var(--c-ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--c-wine);
  box-shadow: 0 0 0 4px rgba(110, 31, 54, 0.08);
}
.form-card textarea { resize: vertical; min-height: 80px; }
.form-fineprint {
  font-size: 0.76rem;
  color: var(--c-ink-soft);
  margin: 0;
  text-align: center;
}

/* ============ FAQ ============ */
.faq { padding: 110px 0; background: var(--c-cream); }
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.faq .section-head { margin: 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 22px 26px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details:hover { border-color: var(--c-gold); }
.faq details[open] {
  border-color: var(--c-wine);
  box-shadow: var(--shadow-soft);
}
.faq summary {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--c-wine);
  transition: transform .25s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin: 14px 0 0;
  color: var(--c-ink-soft);
  font-size: 0.98rem;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 100px 0;
  background: var(--c-ink);
  color: var(--c-cream);
  text-align: center;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 164, 90, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(110, 31, 54, 0.30), transparent 50%);
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 18px;
}
.final-cta h2 .serif { color: var(--c-gold); }
.final-cta p {
  color: rgba(251,246,241,0.75);
  font-size: 1.12rem;
  margin-bottom: 32px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--c-wine-deep);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 24px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo { height: 64px; margin-bottom: 18px; background: rgba(255,255,255,0.95); padding: 8px 14px; border-radius: 10px; display: inline-block; }
.footer-brand p { margin: 0 0 22px; line-height: 1.6; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--c-gold);
  transition: background .2s, color .2s, transform .2s;
}
.socials a:hover { background: var(--c-gold); color: var(--c-wine-deep); transform: translateY(-2px); }
.site-footer h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.site-footer address {
  font-style: normal;
  line-height: 1.7;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--c-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.5);
}

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-wa);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.5);
  z-index: 80;
  transition: transform .25s ease;
  animation: floatWa 2.4s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); color: #fff; }
@keyframes floatWa {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 12px 30px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0.18); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1180px) {
  .nav { gap: 16px; }
  .nav a { font-size: 0.82rem; }
}

@media (max-width: 1024px) {
  .nav,
  .header-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .doctor-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-bg-grid { display: none; }
  .hero-overlay { display: none; }
  .hero { padding: 60px 0 60px; }
  .team-slider .swiper-button-prev,
  .team-slider .swiper-button-next { display: none; }
}

.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(76, 15, 35, 0.08); }

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-cream);
    flex-direction: column;
    padding: 22px 24px 30px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.1);
    gap: 18px;
  }
  .nav.is-open { display: flex; }
  .header-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .google-summary { padding: 18px 20px; flex-direction: column; align-items: flex-start; }
  .google-summary-left { width: 100%; }
  .rating-big { font-size: 2.4rem; }
  .trust-row { gap: 14px; padding: 14px; }
  .trust-divider { display: none; }
  .hero { padding: 50px 0; }
  .services, .why-us, .doctor, .results, .team, .reviews, .videos, .lead-form, .faq, .final-cta { padding: 70px 0; }
  .rating-summary { gap: 14px; }
  .rating-big { font-size: 3.6rem; }
  .float-wa { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .promo-bar { font-size: 0.78rem; }
  .promo-bar .wrap { gap: 8px; padding: 0 16px; }
  .logo img { height: 56px; }
  .site-header.is-scrolled .logo img { height: 48px; }
}

/* ============ SCROLL REVEAL (CSS only) ============ */
@media (prefers-reduced-motion: no-preference) {
  .section-head, .service-card, .why-card, .team-card, .review-card, .results-grid figure, .doctor-img, .doctor-text {
    animation: fadeUp .7s ease both;
  }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
