@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;1,500&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

:root {
  --wine: #6b2d3e;
  --wine-dark: #4a1f2c;
  --gold: #b8860b;
  --gold-light: #e8c875;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --text: #2d2426;
  --muted: #6b5f63;
  --white: #ffffff;
  --line: #e8dfd4;
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.wrap { width: min(var(--max), 92vw); margin: 0 auto; }

.topbar {
  background: var(--wine-dark);
  color: #d4c4c8;
  font-size: 0.78rem;
  padding: 0.55rem 0;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.topbar a { color: var(--gold-light); font-weight: 700; }

.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo img { width: 48px; height: 48px; }

.logo .title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wine);
  line-height: 1.2;
}

.logo .tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover, .nav a.active { color: var(--wine); }

.nav .cta {
  background: var(--wine);
  color: var(--white);
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
}

.nav .cta:hover { background: var(--wine-dark); color: var(--white); }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-weight: 700;
  color: var(--wine);
  border-radius: 6px;
  cursor: pointer;
}

.hero {
  position: relative;
  background: var(--wine);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(70% 100% at 50% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 1;
}

.hero .label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero .lead {
  color: #e8d8dc;
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 1rem;
}

.hero .email-line {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.hero .email-line a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--wine-dark);
}

.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}

.btn-outline:hover { border-color: var(--white); }

.hero-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}

.hero-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(107,45,62,0.08);
}

.stats div {
  background: var(--white);
  padding: 1.35rem 1rem;
  text-align: center;
}

.stats strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--wine);
}

.stats span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section { padding: 4.5rem 0; }

.section-white { background: var(--white); }

.head { margin-bottom: 2.5rem; max-width: 640px; }

.head.center { text-align: center; margin-left: auto; margin-right: auto; }

.head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  color: var(--wine);
  margin-bottom: 0.65rem;
}

.head p { color: var(--muted); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.svc-grid article:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(107,45,62,0.06);
}

.svc-grid h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--wine);
  margin-bottom: 0.45rem;
}

.svc-grid p { font-size: 0.88rem; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split img {
  border-radius: 10px;
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.split h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--wine);
  margin-bottom: 0.65rem;
}

.split p { color: var(--muted); margin-bottom: 0.85rem; }

.split a { color: var(--gold); font-weight: 700; }

.doctor-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
}

.doctor-card img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.doctor-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: var(--wine);
  margin-bottom: 0.25rem;
}

.doctor-card .cred {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.doctor-card p { color: var(--muted); margin-bottom: 0.75rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-panel {
  background: var(--wine);
  color: var(--white);
  padding: 2.25rem;
  border-radius: 12px;
}

.info-panel h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.info-panel p { color: #d4c4c8; margin-bottom: 1.25rem; }

.info-panel li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.info-panel li:last-child { border-bottom: 0; }

.info-panel strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.info-panel a { color: #fff; word-break: break-all; font-weight: 600; }

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.25rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: var(--cream);
  border-radius: 8px;
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }

.map { margin-top: 1.25rem; border-radius: 8px; overflow: hidden; }
.map iframe { width: 100%; height: 220px; border: 0; display: block; }

.footer {
  background: var(--wine-dark);
  color: #b8a8ac;
  padding: 2.5rem 0 1.25rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-grid h4 {
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-grid a { color: var(--gold-light); }

.footer-end {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-end a { color: var(--gold-light); }

@media (max-width: 960px) {
  .hero-grid, .split, .contact-layout, .footer-grid, .doctor-card { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav.open { display: flex; }
  .header .wrap { position: relative; }
  .svc-grid { grid-template-columns: 1fr; }
}
