﻿:root {
  --bg: #fbfbfb;
  --surface: rgba(251, 251, 251, 0.82);
  --text: #323232;
  --muted: #7f6650;
  --accent: #a2ac87;
  --accent-dark: #6e5543;
  --line: #c9c9c9;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(50, 50, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #ffffff 0%, transparent 36%), var(--bg);
  line-height: 1.5;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: "Fraunces", serif;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.background-shape {
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.shape-left {
  background: #f1dfc3;
  left: -140px;
  top: -90px;
}

.shape-right {
  background: #bf9877;
  right: -130px;
  bottom: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(251, 251, 251, 0.86);
  border-bottom: 1px solid rgba(127, 102, 80, 0.22);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--accent-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-size: 1.2rem;
}

.section {
  padding: 82px 0;
}

.hero {
  padding-top: 110px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}

.about-photo-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.about-photo {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.about-content {
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent) 36%, #ffffff);
  background: var(--surface);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.about-content p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-pillars {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.about-pillar {
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, #ffffff);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  padding: 0.8rem;
}

.about-pillar h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
  color: var(--accent-dark);
}

.about-pillar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.about-cta {
  margin-top: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.hero-proof {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-proof span {
  border: 1px solid color-mix(in srgb, var(--accent) 30%, #fff);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.section-kicker {
  margin: 0 0 0.4rem;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-actions,
.contact-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: all 0.24s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn-outline:hover {
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}

.hero-card,
.card,
.contact-box {
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent) 36%, #ffffff);
  background: var(--surface);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.hero-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.section-title {
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  margin-bottom: 1rem;
}

.cards-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.4rem;
  min-height: 320px;
}

.service-icon-wrap {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent-dark);
  border: 1px solid color-mix(in srgb, var(--accent) 36%, #ffffff);
  background: color-mix(in srgb, var(--accent) 14%, #ffffff);
}

.service-icon {
  width: 34px;
  height: 34px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.section-contrast {
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 92%, #ffffff), var(--bg));
}

.clinic-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.8rem;
  align-items: stretch;
}

.clinic-content {
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, #ffffff);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.clinic-content > p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.section-proof {
  padding-top: 22px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-item {
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, #ffffff);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(50, 50, 50, 0.08);
}

.proof-item strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.proof-item span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.8rem;
}

.clinic-content .highlights {
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 1rem;
}

.media-carousel {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.clinic-grid .media-carousel {
  margin-bottom: 0;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, #ffffff);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  padding: 0.8rem 0.65rem 0.6rem;
}

.carousel-track-wrap {
  width: min(56vw, 560px);
  max-width: calc(100% - 92px);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--line) 45%, #ffffff);
  box-shadow: 0 10px 26px rgba(30, 30, 30, 0.07);
  background: transparent;
  aspect-ratio: var(--active-video-ratio, 16 / 9);
  max-height: min(78vh, 760px);
}

.clinic-grid .carousel-track-wrap {
  width: 100%;
  max-width: 100%;
}

.carousel-track {
  display: flex;
}

.carousel-slide {
  min-width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.carousel-slide.is-active {
  display: flex;
}

.carousel-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--line) 65%, #ffffff);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-dark);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.55rem 0 0.1rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 45%, #fff);
  cursor: pointer;
  padding: 0;
  opacity: 0.65;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.carousel-dot.is-active {
  background: var(--accent-dark);
  opacity: 1;
  transform: scale(1.15);
}

.highlight-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, #ffffff);
  border-left: 3px solid color-mix(in srgb, var(--accent-dark) 82%, #ffffff);
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  box-shadow: 0 8px 18px rgba(50, 50, 50, 0.06);
}

.highlight-title {
  margin: 0 0 0.25rem;
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  color: var(--accent-dark);
}

.highlight-copy {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, #ffffff);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(50, 50, 50, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testimonial-card p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.testimonial-card strong {
  margin-top: auto;
  color: var(--accent-dark);
  font-size: 0.92rem;
  display: block;
}

.testimonial-meta {
  display: inline-block;
  margin-top: 0.3rem;
  margin-bottom: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-box {
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-photo {
  width: 230px;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.map-card {
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, #ffffff);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .hero-landing-row {
    min-height: 640px;
  }
}

.shadow-luxury {
  box-shadow: 0 18px 40px rgba(50, 50, 50, 0.14);
}

.text-gold-gradient {
  display: inline-block;
  color: #b08d57;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .text-gold-gradient {
    background: linear-gradient(120deg, #d4b06a 0%, #b08d57 45%, #8f6b3f 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .clinic-grid,
  .cards-grid,
  .highlights,
  .proof-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .media-carousel {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .carousel-track-wrap {
    width: 100%;
    max-width: 100%;
  }

  .carousel-media {
    height: 100%;
  }

  .carousel-btn {
    display: none;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-photo {
    width: 100%;
    height: 190px;
  }

  .map-frame {
    height: 320px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    left: 4vw;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.9rem;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

