:root {
  --navy: #1B2B4B;
  --navy-light: #2a3d5e;
  --ivory: #FAF7F0;
  --sage: #8FAF8C;
  --sage-dark: #6a8f6c;
  --gold: #C9A84C;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #e8e4dc;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title.centered { text-align: center; }
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* HERO */
.hero {
  background: var(--navy);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(143,175,140,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-headline em {
  color: var(--sage);
  font-style: italic;
}
.hero-lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.meta-item {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.meta-sep { color: rgba(255,255,255,0.3); }
.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* PHILOSOPHY */
.philosophy {
  padding: 96px 48px;
  background: var(--ivory);
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.philosophy-stats {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}
.philosophy-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.pillar-icon {
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}
.pillar h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* TECHNOLOGY */
.technology {
  padding: 96px 48px;
  background: var(--navy);
}
.technology-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-content .section-title {
  color: var(--white);
}
.tech-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.tech-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tech-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.tech-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.tech-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 48px;
  backdrop-filter: blur(12px);
  position: relative;
}
.tech-card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.tech-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.tech-card-sub {
  font-size: 0.9rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.tech-card-detail {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

/* OUTCOMES */
.outcomes {
  padding: 96px 48px;
  background: var(--ivory);
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 4rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,43,75,0.08);
}
.service-icon { color: var(--sage-dark); margin-bottom: 1rem; }
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.outcomes-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 48px;
}
.cta-offers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.offer {
  text-align: center;
  padding: 0 48px;
}
.offer-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.offer-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  max-width: 160px;
  display: block;
  margin: 0 auto;
}
.offer-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.15);
}

/* TEAM */
.team {
  padding: 96px 48px;
  background: var(--white);
}
.team-inner { max-width: 1200px; margin: 0 auto; }
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 3rem;
}
.doctor-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ivory);
}
.doctor-photo {
  height: 220px;
  overflow: hidden;
  background: var(--border);
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.doctor-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.doctor-info { padding: 20px; }
.doctor-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.doctor-title {
  font-size: 0.75rem;
  color: var(--sage-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}
.doctor-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: linear-gradient(160deg, var(--navy) 0%, #0f1a2a 100%);
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.closing-location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.location-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.location-item svg { color: var(--sage); flex-shrink: 0; }

/* FOOTER */
.footer {
  background: #0a1020;
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 0.25rem;
}
.footer-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .philosophy-inner { grid-template-columns: 1fr; }
  .philosophy-stats { position: static; flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
  .stat { min-width: 120px; }
  .philosophy-pillars { grid-template-columns: 1fr 1fr; }
  .technology-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero, .philosophy, .technology, .outcomes, .team, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-headline { font-size: 2.75rem; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-offers { flex-direction: column; gap: 2rem; }
  .offer-divider { display: none; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .doctors-grid { grid-template-columns: 1fr; }
}