:root {
  --cream: #faf6f0;
  --blush: #e8c4b0;
  --rose: #c97b5a;
  --deep: #3a2318;
  --gold: #c9a96e;
  --light-rose: #f5e6de;
  --white: #ffffff;
  --text: #5a3a28;
  --soft: #b8967c;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,123,90,0.15);
  transition: all 0.3s ease;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--rose); letter-spacing: 0.02em;
}
.nav-logo span { color: var(--deep); }
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  background: var(--rose); color: white;
  border: none; padding: 10px 20px;
  border-radius: 50px; font-size: 0.8rem;
  font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em; transition: all 0.3s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--deep); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--deep);
  border-radius: 2px; transition: all 0.3s;
  display: block;
}
.mobile-menu {
  display: none;
  position: fixed; top: 65px; left: 0; right: 0;
  background: var(--cream); z-index: 99;
  flex-direction: column; padding: 20px 24px 28px;
  border-bottom: 1px solid rgba(201,123,90,0.2);
  gap: 20px;
  box-shadow: 0 10px 40px rgba(58,35,24,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--deep);
  font-size: 1rem; font-weight: 500;
  padding: 8px 0; border-bottom: 1px solid rgba(201,123,90,0.12);
  letter-spacing: 0.04em;
}
.mobile-cta-btn {
  background: var(--rose); color: white;
  border: none; padding: 14px;
  border-radius: 50px; font-size: 0.9rem;
  font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-align: center; margin-top: 8px;
  text-decoration: none;
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fdf8f3 0%, #f5e6de 50%, #faf6f0 100%);
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,123,90,0.12), transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}
.hero-bg-circle:nth-child(1) { width: 600px; height: 600px; top: -100px; right: -150px; }
.hero-bg-circle:nth-child(2) { width: 400px; height: 400px; bottom: -80px; left: -100px; animation-delay: 2s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,123,90,0.12); border: 1px solid rgba(201,123,90,0.3);
  color: var(--rose); padding: 8px 18px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before { content: '✦'; font-size: 0.7rem; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--deep); margin-bottom: 10px;
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero h1 em { color: var(--rose); font-style: italic; }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  color: var(--soft); font-weight: 300; margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.25s both;
  font-style: italic;
}
.hero-desc {
  max-width: 480px; font-size: 0.92rem; color: var(--text);
  line-height: 1.7; margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.35s both;
  opacity: 0.85;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.45s both;
}
.btn-primary {
  background: var(--rose); color: white;
  padding: 15px 32px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 500;
  border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 30px rgba(201,123,90,0.35);
  letter-spacing: 0.04em;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(201,123,90,0.45);
}
.btn-outline {
  background: transparent; color: var(--rose);
  padding: 14px 30px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 500;
  border: 1.5px solid var(--rose); cursor: pointer;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--rose); color: white; transform: translateY(-2px); }
.hero-image-row {
  display: flex; gap: 16px; margin-top: 60px;
  justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.55s both;
}
.hero-img-card {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(58,35,24,0.15);
  transition: transform 0.4s ease;
}
.hero-img-card:hover { transform: translateY(-8px); }
.hero-img-card img {
  width: 160px; height: 200px; object-fit: cover;
  display: block;
}
.hero-img-card:nth-child(2) { margin-top: 30px; }
.hero-img-card:nth-child(3) { margin-top: 15px; }
.img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(58,35,24,0.75));
  color: white; padding: 20px 12px 12px;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── STATS ── */
.stats-bar {
  background: var(--deep); color: white;
  padding: 28px 24px;
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600; color: var(--gold);
  display: block; line-height: 1;
}
.stat-label { font-size: 0.75rem; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* ── SECTION SHARED ── */
section { padding: 80px 24px; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 14px;
}
.section-tag::before { content: '— '; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 300; color: var(--deep);
  line-height: 1.15; margin-bottom: 16px;
}
.section-title em { color: var(--rose); font-style: italic; }
.section-desc {
  font-size: 0.92rem; color: var(--text); line-height: 1.75;
  max-width: 520px; opacity: 0.85;
}
.max-w { max-width: 1100px; margin: 0 auto; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 50px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: 20px; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  border: 1px solid rgba(201,123,90,0.1);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(58,35,24,0.12);
  border-color: rgba(201,123,90,0.3);
}
.service-img {
  width: 100%; height: 200px; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-img-wrap { overflow: hidden; }
.service-body { padding: 24px; }
.service-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(201,123,90,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 14px;
}
.service-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400; margin-bottom: 10px;
  color: var(--deep);
}
.service-body p { font-size: 0.85rem; color: var(--text); line-height: 1.65; opacity: 0.85; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--rose); font-size: 0.8rem;
  font-weight: 500; margin-top: 16px;
  text-decoration: none; letter-spacing: 0.04em;
  transition: gap 0.3s;
}
.service-link:hover { gap: 10px; }

/* ── DOCTOR ── */
#about {
  background: linear-gradient(135deg, #fdf8f3, #f5e6de 60%, #fdf8f3);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-main-img {
  width: 100%; border-radius: 24px;
  object-fit: cover; height: 520px;
  display: block;
  box-shadow: 0 30px 80px rgba(58,35,24,0.18);
  background: #d9c2b0;
}
.about-badge-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--deep); color: white;
  border-radius: 16px; padding: 18px 22px;
  box-shadow: 0 16px 40px rgba(58,35,24,0.25);
}
.about-badge-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600; color: var(--gold); display: block;
}
.about-badge-card .lbl { font-size: 0.75rem; opacity: 0.75; }
.about-tag-float {
  position: absolute; top: 20px; left: -15px;
  background: var(--rose); color: white;
  padding: 8px 14px; border-radius: 10px;
  font-size: 0.75rem; font-weight: 500;
  box-shadow: 0 8px 24px rgba(201,123,90,0.4);
}
.about-content { padding: 10px 0; }
.doctor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 400; color: var(--deep);
  margin: 10px 0 6px;
}
.doctor-title { color: var(--rose); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 22px; }
.about-content p { font-size: 0.92rem; color: var(--text); line-height: 1.75; margin-bottom: 16px; opacity: 0.85; }
.credentials {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0;
}
.cred-badge {
  background: white; border: 1px solid rgba(201,123,90,0.25);
  color: var(--text); padding: 8px 14px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 500;
}
.contact-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 28px;
}
.contact-row a {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--deep);
  font-weight: 500; font-size: 0.95rem;
  background: white; padding: 12px 20px;
  border-radius: 50px; box-shadow: 0 4px 16px rgba(58,35,24,0.08);
  transition: all 0.3s;
  border: 1px solid rgba(201,123,90,0.2);
}
.contact-row a:hover { background: var(--rose); color: white; }

/* ── TREATMENTS ── */
#treatments { background: var(--cream); }
.treatments-header { margin-bottom: 50px; }
.treatments-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.treat-card {
  background: white; border-radius: 18px; padding: 28px;
  border: 1px solid rgba(201,123,90,0.1);
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.treat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--rose));
  transform: scaleX(0); transition: transform 0.35s ease;
  transform-origin: left;
}
.treat-card:hover::before { transform: scaleX(1); }
.treat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(58,35,24,0.1); }
.treat-emoji { font-size: 2rem; margin-bottom: 14px; display: block; }
.treat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--deep); margin-bottom: 10px;
}
.treat-card p { font-size: 0.83rem; color: var(--text); line-height: 1.65; opacity: 0.85; }
.treat-card .price {
  display: inline-block; margin-top: 14px;
  color: var(--rose); font-weight: 600; font-size: 0.85rem;
}

/* ── HOURS ── */
#hours {
  background: var(--deep); color: white;
  position: relative; overflow: hidden;
}
#hours::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,123,90,0.1), transparent 70%);
}
.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  position: relative; z-index: 1;
}
.hours-content .section-title { color: white; }
.hours-content .section-tag { color: var(--gold); }
.hours-content .section-desc { color: rgba(255,255,255,0.7); max-width: 380px; }
.hours-table { margin-top: 40px; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
}
.hours-row:hover { padding-left: 8px; }
.hours-row .day { font-size: 0.88rem; opacity: 0.8; }
.hours-row .time { font-size: 0.88rem; color: var(--gold); font-weight: 500; }
.hours-row.today .day { color: var(--gold); font-weight: 600; }
.hours-row.today .time { color: #6ddd8f; }
.open-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(109,221,143,0.15); color: #6ddd8f;
  border: 1px solid rgba(109,221,143,0.3);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 500; margin-bottom: 24px;
}
.open-dot { width: 7px; height: 7px; border-radius: 50%; background: #6ddd8f; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hours-map {
  border-radius: 20px; overflow: hidden;
  height: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2a1a10, #3a2318);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
}
.map-icon { font-size: 3rem; }
.map-text { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-align: center; }
.map-link {
  color: var(--gold); text-decoration: none;
  font-size: 0.82rem; border: 1px solid rgba(201,169,110,0.4);
  padding: 8px 18px; border-radius: 50px; margin-top: 8px;
  transition: all 0.3s;
}
.map-link:hover { background: var(--gold); color: var(--deep); }

/* ── TESTIMONIALS ── */
#testimonials { background: white; }
.testimonials-header { text-align: center; margin-bottom: 50px; }
.testimonials-header .section-desc { margin: 0 auto; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--cream); border-radius: 18px; padding: 26px;
  border: 1px solid rgba(201,123,90,0.1);
  transition: all 0.35s ease;
  position: relative;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(58,35,24,0.1); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 18px; opacity: 0.9; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info .name { font-weight: 600; font-size: 0.85rem; color: var(--deep); }
.reviewer-info .date { font-size: 0.75rem; color: var(--soft); margin-top: 2px; }
.quote-mark {
  position: absolute; top: 16px; right: 20px;
  font-size: 4rem; color: rgba(201,123,90,0.08);
  font-family: serif; line-height: 1;
}

/* ── BOOKING ── */
#booking {
  background: linear-gradient(135deg, #fdf8f3, #f5e6de 50%, #fdf8f3);
}
.booking-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.booking-form-wrap {
  background: white; border-radius: 24px; padding: 40px;
  box-shadow: 0 24px 80px rgba(58,35,24,0.1);
  margin-top: 40px; text-align: left;
  border: 1px solid rgba(201,123,90,0.1);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.78rem; font-weight: 500; color: var(--text); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid rgba(201,123,90,0.2);
  border-radius: 12px; padding: 13px 16px;
  font-size: 0.88rem; font-family: 'DM Sans', sans-serif;
  background: var(--cream); color: var(--deep);
  outline: none; transition: all 0.3s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,123,90,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; margin-top: 20px;
  background: var(--rose); color: white;
  border: none; padding: 16px;
  border-radius: 50px; font-size: 0.92rem;
  font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 30px rgba(201,123,90,0.35);
}
.form-submit:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 40px rgba(201,123,90,0.45); }
.success-msg {
  display: none; text-align: center; padding: 30px;
  color: var(--rose);
}
.success-msg .check { font-size: 3rem; display: block; margin-bottom: 12px; }
.success-msg h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 8px; }

/* ── FLOATING CTA ── */
.floating-call {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--rose); color: white;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; text-decoration: none;
  box-shadow: 0 8px 30px rgba(201,123,90,0.5);
  z-index: 99;
  animation: floatPop 0.6s cubic-bezier(0.34,1.56,0.64,1) 1s both;
  transition: transform 0.3s;
}
.floating-call:hover { transform: scale(1.15) rotate(-10deg); }
@keyframes floatPop { from{opacity:0;transform:scale(0.4)} to{opacity:1;transform:scale(1)} }

/* ── FOOTER ── */
footer {
  background: var(--deep); color: rgba(255,255,255,0.7);
  padding: 50px 24px 28px;
  text-align: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: white; margin-bottom: 8px;
}
.footer-tagline { font-size: 0.8rem; opacity: 0.6; margin-bottom: 28px; letter-spacing: 0.06em; }
.footer-links {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 20px 0; }
.footer-copy { font-size: 0.75rem; opacity: 0.45; }

/* ── SCROLL ANIMATE ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 90px 20px 50px; }
  .hero-image-row { gap: 10px; }
  .hero-img-card img { width: 110px; height: 145px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-main-img { height: 350px; }
  .about-badge-card { bottom: -15px; right: 10px; }
  .about-tag-float { left: 10px; }
  .treatments-layout { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; gap: 40px; }
  .hours-map { height: 240px; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }
  .stats-bar { gap: 24px; }
  section { padding: 60px 20px; }
  .about-badge-card { position: static; margin-top: 16px; display: inline-block; }
  .about-tag-float { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; justify-content: center; }
}

@media (max-width: 420px) {
  .hero-image-row { display: none; }
}



