/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2D2D2D;
  background: #FFFDFC;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 252, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(123, 45, 59, 0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: #7B2D3B; letter-spacing: -0.01em; }
.logo-sub { font-size: 11px; font-weight: 500; color: #7B2D3B; opacity: 0.65; letter-spacing: 0.06em; text-transform: uppercase; }
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 14px; font-weight: 500; color: #2D2D2D; transition: color 0.2s; position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: #7B2D3B; transition: width 0.25s ease; }
.main-nav a:hover { color: #7B2D3B; }
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  background: #7B2D3B;
  color: #FFFDFC !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #5E2230; transform: translateY(-1px); }

/* Nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 22px; height: 2px; background: #7B2D3B; border-radius: 2px; transition: all 0.3s; position: absolute; left: 9px; }
.hamburger { top: 19px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero { padding: 120px 0 80px; background: linear-gradient(135deg, #FFFDFC 0%, #F5E6E8 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #7B2D3B; margin-bottom: 16px; }
.hero-headline { font-size: clamp(32px, 4.5vw, 56px); color: #1A1A2E; margin-bottom: 20px; line-height: 1.1; }
.hero-headline em { font-style: normal; color: #7B2D3B; }
.hero-body { font-size: 17px; color: #555; line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #555; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; transition: all 0.25s ease; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: #7B2D3B; color: #FFFDFC; box-shadow: 0 4px 16px rgba(123, 45, 59, 0.25); }
.btn-primary:hover { background: #5E2230; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3); }
.btn-outline { background: transparent; color: #7B2D3B; border: 2px solid #7B2D3B; }
.btn-outline:hover { background: #7B2D3B; color: #FFFDFC; transform: translateY(-2px); }
.btn-full { width: 100%; }

/* Hero image */
.hero-image { position: relative; }
.hero-img-wrapper { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(123, 45, 59, 0.15); }
.hero-img-wrapper img { width: 100%; height: 720px; object-fit: cover; }
.hero-img-accent { position: absolute; bottom: -20px; right: -20px; width: 200px; height: 200px; background: #7B2D3B; opacity: 0.08; border-radius: 50%; z-index: -1; }
.hero-floating-card {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: #FFFDFC;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.floating-card-icon { width: 44px; height: 44px; background: rgba(123, 45, 59, 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floating-card-label { font-size: 12px; color: #777; font-weight: 500; }
.floating-card-value { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: #1A1A2E; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #7B2D3B; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 3.5vw, 44px); color: #1A1A2E; margin-bottom: 16px; }
.section-title.light { color: #FFFDFC; }
.section-subtitle { font-size: 17px; color: #666; line-height: 1.7; }

/* ===== SERVICES ===== */
.services { padding: 96px 0; background: #FFFDFC; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #FFFDFC;
  border: 1px solid rgba(123, 45, 59, 0.1);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #7B2D3B; transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(123, 45, 59, 0.1); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; margin-bottom: 20px; }
.service-title { font-size: 20px; color: #1A1A2E; margin-bottom: 10px; }
.service-desc { font-size: 15px; color: #666; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 96px 0; background: #F5E6E8; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 56px rgba(123, 45, 59, 0.12); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.15);
  border: 4px solid #F5E6E8;
}
.about-img-secondary img { width: 100%; height: 260px; object-fit: cover; }
.about-pattern {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: repeating-linear-gradient(45deg, #7B2D3B 0px, #7B2D3B 2px, transparent 2px, transparent 12px);
  opacity: 0.08;
  border-radius: 16px;
}
.about-content .section-eyebrow { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-body { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: flex; gap: 24px; align-items: center; margin: 32px 0; padding: 24px 0; border-top: 1px solid rgba(123, 45, 59, 0.1); border-bottom: 1px solid rgba(123, 45, 59, 0.1); }
.stat { text-align: center; flex: 1; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: #7B2D3B; }
.stat-label { font-size: 13px; color: #777; font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(123, 45, 59, 0.15); }
.about-content .btn { margin-top: 8px; }

/* ===== NEW PATIENTS ===== */
.new-patients { padding: 96px 0; background: #FFFDFC; }
.new-patients-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.new-patients-content .section-eyebrow { text-align: left; }
.new-patients-content .section-title { text-align: left; margin-bottom: 16px; }
.new-patients-body { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 32px; }
.steps-list { counter-reset: steps; }
.steps-list li { counter-increment: steps; display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.steps-list li::before { content: counter(steps, decimal-leading-zero); font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #7B2D3B; opacity: 0.3; line-height: 1; flex-shrink: 0; width: 40px; }
.steps-list strong { display: block; font-size: 16px; color: #1A1A2E; margin-bottom: 4px; }
.steps-list span { font-size: 14px; color: #666; line-height: 1.6; }
.new-patients-image { position: relative; }
.new-patients-image img { width: 100%; height: 620px; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 56px rgba(123, 45, 59, 0.12); }
.new-patients-accent { position: absolute; top: -24px; left: -24px; width: 160px; height: 160px; background: #7B2D3B; opacity: 0.06; border-radius: 50%; z-index: -1; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 96px 0; background: #7B2D3B; }
.testimonials .section-header { margin-bottom: 48px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255, 253, 252, 0.08);
  border: 1px solid rgba(255, 253, 252, 0.12);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { background: rgba(255, 253, 252, 0.12); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: rgba(255, 253, 252, 0.85); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-size: 14px; font-weight: 600; color: #F5E6E8; }

/* ===== CONTACT ===== */
.contact { padding: 96px 0; background: #F5E6E8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info .section-eyebrow { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-body { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(123, 45, 59, 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #999; margin-bottom: 2px; }
.contact-detail-value { font-size: 15px; color: #2D2D2D; font-weight: 500; line-height: 1.5; }
.contact-detail-value a { color: #7B2D3B; transition: color 0.2s; }
.contact-detail-value a:hover { color: #5E2230; }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* Contact form */
.contact-form-wrapper {
  background: #FFFDFC;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.08);
}
.form-title { font-size: 24px; color: #1A1A2E; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(123, 45, 59, 0.15);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #2D2D2D;
  background: #FFFDFC;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #7B2D3B; box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-privacy { font-size: 12px; color: #999; text-align: center; margin-top: 12px; }
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { margin-bottom: 16px; }
.success-title { font-size: 24px; color: #1A1A2E; margin-bottom: 8px; }
.success-text { font-size: 15px; color: #666; line-height: 1.7; }
.success-text a { color: #7B2D3B; font-weight: 600; }

/* ===== FOOTER ===== */
.site-footer { background: #1A1A2E; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo-main { color: #F5E6E8; }
.footer-desc { font-size: 14px; color: rgba(255,253,252,0.5); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-heading { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #F5E6E8; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,253,252,0.5); transition: color 0.2s; }
.footer-col a:hover { color: #F5E6E8; }
.footer-address { font-size: 14px; color: rgba(255,253,252,0.5); line-height: 1.8; font-style: normal; }
.footer-link { color: #F5E6E8; transition: color 0.2s; }
.footer-link:hover { color: #7B2D3B; }
.footer-bottom { border-top: 1px solid rgba(255,253,252,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,253,252,0.35); }
.footer-bottom a { color: rgba(255,253,252,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: #F5E6E8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-img-wrapper img { height: 560px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255, 253, 252, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 16px; }
  .main-nav a { font-size: 16px; }
  .nav-cta { text-align: center; }

  .hero { padding: 100px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-img-wrapper img { height: 400px; }
  .hero-floating-card { left: 16px; bottom: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { position: relative; bottom: auto; right: auto; margin-top: -60px; margin-left: auto; width: 220px; }
  .about-pattern { display: none; }
  .about-content .section-eyebrow,
  .about-content .section-title { text-align: center; }
  .about-stats { justify-content: center; }
  .about-content .btn { display: inline-flex; }

  .new-patients-inner { grid-template-columns: 1fr; gap: 40px; }
  .new-patients-content .section-eyebrow,
  .new-patients-content .section-title { text-align: center; }
  .new-patients-body { text-align: center; }
  .new-patients-image img { height: 400px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: auto; max-width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info .section-eyebrow,
  .contact-info .section-title { text-align: center; }
  .contact-body { text-align: center; }
  .contact-form-wrapper { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 28px; }
  .section-title { font-size: 26px; }
  .hero-floating-card { display: none; }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
