/* ═══════════════════════════════════════════
   Dr. G. Ravichandran — Landing Page Styles
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --cream:       #FAF6F0;
  --cream-mid:   #F2EAE0;
  --cream-deep:  #E8DDD0;
  --sienna:      #8B5E3C;
  --sienna-light:#C4956A;
  --sienna-pale: #F0E6D8;
  --bark:        #3D2B1A;
  --bark-mid:    #6B4C32;
  --text-body:   #4A3728;
  --text-muted:  #8C7060;
  --white:       #FFFCF8;
  --rule:        rgba(139,94,60,0.18);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text-body);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; letter-spacing: 0.02em;
  color: var(--bark);
}
.nav-logo span { color: var(--sienna); font-style: italic; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--sienna); }
.nav-cta {
  background: var(--sienna); color: var(--white);
  padding: 9px 22px; border-radius: 2px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--bark); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  padding: 140px 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(196,149,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sienna); font-weight: 400;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--sienna-light);
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300; line-height: 1.0;
  color: var(--bark); letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
}
.hero-name em { font-style: italic; color: var(--sienna); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300; font-style: italic;
  color: var(--sienna-light);
  margin: 12px 0 0; letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 0.9s 0.35s forwards;
}
.hero-quals {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin: 16px 0 40px;
  opacity: 0; animation: fadeUp 0.9s 0.45s forwards;
}
.hero-actions {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.55s forwards;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--sienna); color: var(--white);
  padding: 14px 36px; border-radius: 2px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--bark); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--sienna); color: var(--sienna);
  padding: 14px 36px; border-radius: 2px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: var(--sienna-pale); }

/* ══════════════════════════════
   PHOTO
══════════════════════════════ */
.photo-band {
  display: flex; justify-content: center;
  padding: 0 5vw 64px;
  opacity: 0; animation: fadeUp 0.9s 0.65s forwards;
}
.photo-frame {
  width: 220px; height: 220px; border-radius: 50%;
  background: var(--cream-deep);
  border: 6px solid var(--white);
  outline: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(61,43,26,0.1);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

/* ── ORNAMENT ── */
.ornament {
  text-align: center; margin: 0 0 64px;
  color: var(--sienna-light); font-size: 18px; letter-spacing: 12px;
  opacity: 0.5;
}

/* ══════════════════════════════
   STATS BAND
══════════════════════════════ */
.stats-band {
  background: var(--bark);
  padding: 48px 5vw;
  display: flex; justify-content: center; gap: 0;
}
.stat-item {
  flex: 1; max-width: 220px;
  text-align: center; padding: 0 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%;
  height: 60%; width: 1px; background: rgba(255,255,255,0.12);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; color: var(--sienna-light);
  line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 6px; font-weight: 300;
}

/* ══════════════════════════════
   SECTIONS (shared)
══════════════════════════════ */
section { padding: 80px 5vw; }
.section-label {
  text-align: center;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sienna); font-weight: 400; margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 300;
  color: var(--bark); text-align: center;
  line-height: 1.15; margin-bottom: 48px;
}
.section-title em { font-style: italic; color: var(--sienna); }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 960px; margin: 0 auto;
  align-items: start;
}
.about-bio { font-size: 16px; line-height: 1.85; color: var(--text-body); font-weight: 300; }
.about-bio p + p { margin-top: 18px; }
.about-bio strong { font-weight: 500; color: var(--sienna); }
.credentials-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cred-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; background: var(--white);
  border: 1px solid var(--rule); border-radius: 2px;
}
.cred-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sienna-light); flex-shrink: 0; margin-top: 6px;
}
.cred-text { font-size: 14px; color: var(--text-body); font-weight: 300; line-height: 1.5; }
.cred-text strong {
  font-size: 13px; font-weight: 500; color: var(--bark);
  letter-spacing: 0.04em; display: block; margin-bottom: 2px;
}

/* ══════════════════════════════
   AWARDS
══════════════════════════════ */
.awards-strip {
  background: var(--sienna-pale);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 56px 5vw;
}
.awards-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  max-width: 960px; margin: 0 auto;
}
.award-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--rule);
  padding: 12px 20px; border-radius: 2px;
  font-size: 13px; color: var(--text-body); font-weight: 300;
}
.award-pill::before { content: '✦'; color: var(--sienna-light); font-size: 10px; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-bg { background: var(--cream-mid); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: var(--rule);
  max-width: 1040px; margin: 0 auto;
  border: 1px solid var(--rule);
}
.service-card { background: var(--white); padding: 32px 28px; transition: background 0.2s; }
.service-card:hover { background: var(--sienna-pale); }
.service-icon { width: 44px; height: 44px; margin-bottom: 18px; display: block; }
.service-icon svg { width: 44px; height: 44px; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--bark); margin-bottom: 8px;
}
.service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.platform-badges {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 52px;
}
.platform-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px 12px 16px;
  background: var(--white); border: 1px solid var(--rule);
  text-decoration: none; transition: box-shadow 0.2s;
}
.platform-badge:hover { box-shadow: 0 4px 16px rgba(61,43,26,0.10); }
.platform-badge-logo { height: 28px; width: auto; display: block; }
.platform-badge-divider {
  width: 1px; background: var(--rule); align-self: stretch;
}
.platform-badge-score { display: flex; flex-direction: column; padding-left: 12px; }
.platform-badge-score-top {
  display: flex; align-items: center; gap: 5px;
  font-size: 15px; font-weight: 500; color: var(--bark);
  font-family: 'Cormorant Garamond', serif;
}
.platform-badge-score-top .stars { color: #F5A623; font-size: 11px; letter-spacing: 1px; }
.platform-badge-score-top .check { color: #27AE60; font-size: 11px; font-weight: 500; font-family: 'DM Sans', sans-serif; letter-spacing: 0.04em; }
.platform-badge-score-sub { font-size: 11px; color: var(--text-muted); font-weight: 300; letter-spacing: 0.04em; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1040px; margin: 0 auto;
}
.review-card {
  background: var(--white); border: 1px solid var(--rule);
  padding: 28px; border-radius: 2px;
  color: inherit; text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
}
a.review-card:hover {
  border-color: var(--sienna-light);
  box-shadow: 0 4px 20px rgba(139,94,60,0.10);
}
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; line-height: 0.6; color: var(--sienna-light);
  margin-bottom: 12px; font-weight: 300;
}
.review-text {
  font-size: 15px; line-height: 1.7; color: var(--text-body);
  font-style: italic; font-family: 'Cormorant Garamond', serif;
  font-weight: 300; margin-bottom: 20px;
}
.review-stars { color: var(--sienna-light); font-size: 12px; letter-spacing: 2px; margin-bottom: 10px; }
.review-author { font-size: 12px; font-weight: 500; color: var(--bark); letter-spacing: 0.06em; text-transform: uppercase; }
.review-via { font-size: 11px; color: var(--text-muted); font-weight: 300; }

/* ══════════════════════════════
   LOCATIONS
══════════════════════════════ */
.locations-bg { background: var(--cream-mid); }
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 900px; margin: 0 auto;
}
.location-card { background: var(--white); border: 1px solid var(--rule); padding: 28px; }
.location-logo { height: 40px; width: auto; display: block; margin-bottom: 18px; object-fit: contain; object-position: left center; }
.location-addr { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.location-hours { font-size: 12px; font-weight: 500; color: var(--sienna); letter-spacing: 0.04em; margin-bottom: 4px; }
.location-fee { font-size: 13px; color: var(--text-body); }
.location-tag {
  display: inline-block; margin-top: 12px;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--sienna-pale); color: var(--sienna);
  padding: 4px 10px; border-radius: 1px;
}
.location-sublabel {
  font-size: 11px; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px; margin-top: -4px;
}
.locations-note { text-align: center; margin-top: 36px; }
.locations-note p { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.locations-note p + p { margin-top: 4px; }

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */
.cta-band { background: var(--bark); padding: 80px 5vw; text-align: center; }
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 300;
  color: var(--white); margin-bottom: 12px; font-style: italic;
}
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 36px; font-weight: 300; }
.cta-band .btn-primary { background: var(--sienna-light); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--sienna); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--bark); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 5vw;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: rgba(255,255,255,0.6); font-weight: 300;
}
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  font-size: 12px; color: rgba(255,255,255,0.35);
  text-decoration: none; letter-spacing: 0.06em;
}
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.footer-note { font-size: 11px; color: rgba(255,255,255,0.25); font-weight: 300; }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-band { flex-wrap: wrap; gap: 32px; }
  .stat-item::after { display: none; }
  footer { flex-direction: column; text-align: center; }
  .platform-badges { flex-direction: column; align-items: center; }
}
