@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #0D1B2A;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --slate: #4A5568;
  --slate-light: #718096;
  --border: #E2DDD4;
  --section-pad: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--navy); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--slate); letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { background: var(--navy); color: var(--white) !important; padding: 10px 24px; border-radius: 4px; font-size: 14px !important; font-weight: 500 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--gold); color: var(--navy); padding: 16px 36px; border-radius: 4px; font-weight: 600; font-size: 15px; letter-spacing: 0.3px; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { display: inline-block; background: transparent; color: var(--navy); padding: 15px 35px; border-radius: 4px; font-weight: 600; font-size: 15px; border: 1.5px solid var(--navy); transition: all 0.2s; cursor: pointer; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { display: inline-block; background: transparent; color: var(--white); padding: 15px 35px; border-radius: 4px; font-weight: 600; font-size: 15px; border: 1.5px solid rgba(255,255,255,0.5); transition: all 0.2s; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* HERO */
.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; padding: 120px 48px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%); }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.hero h1 { font-size: clamp(42px, 5vw, 64px); font-weight: 700; color: var(--white); margin-bottom: 28px; line-height: 1.1; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 48px; max-width: 480px; line-height: 1.75; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 56px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--gold); display: block; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* HERO PHOTO - BIGGER */
.hero-img-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 40px 36px; text-align: center; }
.hero-photo { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; object-position: center top; border: 4px solid var(--gold); margin: 0 auto 20px; display: block; }
.hero-name { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--white); margin-bottom: 6px; }
.hero-title { font-size: 14px; color: var(--gold); letter-spacing: 0.5px; margin-bottom: 20px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.badge { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold-light); font-size: 11px; font-weight: 500; padding: 6px 14px; border-radius: 20px; letter-spacing: 0.3px; }

/* SECTIONS */
.section { padding: var(--section-pad) 48px; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.section-title { font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; margin-bottom: 20px; line-height: 1.15; }
.section-subtitle { font-size: 18px; color: var(--slate); max-width: 580px; line-height: 1.75; }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--white); padding: 48px 40px; transition: background 0.2s; position: relative; cursor: pointer; }
.service-card:hover { background: var(--cream); }
.service-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.service-card h3 { font-size: 20px; margin-bottom: 14px; font-weight: 600; }
.service-card p { font-size: 15px; color: var(--slate); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; font-size: 14px; font-weight: 600; color: var(--gold); letter-spacing: 0.3px; }

/* ABOUT SPLIT */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-placeholder { background: var(--navy); border-radius: 8px; padding: 48px 40px; text-align: center; color: var(--white); }
.about-photo { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; object-position: center top; border: 4px solid var(--gold); margin: 0 auto 24px; display: block; }
.about-photo-lg { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; object-position: center top; border: 4px solid var(--gold); margin: 0 auto 24px; display: block; }
.about-card-name { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 8px; }
.about-card-title { font-size: 14px; color: var(--gold); margin-bottom: 24px; }
.credential-list { list-style: none; text-align: left; display: inline-block; }
.credential-list li { font-size: 13px; color: rgba(255,255,255,0.65); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 10px; }
.credential-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.about-text h2 { font-size: 40px; margin-bottom: 24px; }
.about-text p { font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 20px; }

/* IMPACT NUMBERS */
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); }
.impact-item { padding: 56px 40px; text-align: center; background: var(--navy); }
.impact-num { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: 12px; }
.impact-label { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* WHAT TO EXPECT */
.what-to-expect { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 16px; }
.expect-item { padding: 32px 28px; background: var(--cream); border-radius: 8px; border-left: 3px solid var(--gold); }
.expect-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.expect-title { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.expect-desc { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* CTA BANNER */
.cta-banner { background: var(--navy); padding: 96px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 400px; border-radius: 50%; background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%); }
.cta-banner h2 { font-size: clamp(32px, 4vw, 52px); color: var(--white); margin-bottom: 20px; position: relative; z-index: 1; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 40px; position: relative; z-index: 1; }
.cta-banner .btn-primary { position: relative; z-index: 1; }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 152px 48px 96px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(40px, 5vw, 60px); margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto; }

/* SERVICE DETAIL PAGE */
.service-detail-hero { background: var(--navy); padding: 152px 48px 96px; }
.service-detail-hero .inner { max-width: 800px; }
.service-detail-hero h1 { color: var(--white); font-size: clamp(38px, 4.5vw, 58px); margin-bottom: 20px; }
.service-detail-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.8; }
.detail-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 16px; margin-top: 16px; }
.detail-feature { display: flex; align-items: flex-start; gap: 14px; padding: 20px 24px; background: var(--cream); border-radius: 6px; }
.detail-feature-check { width: 22px; height: 22px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 11px; color: var(--gold); font-weight: 700; }
.detail-feature-text { font-size: 15px; color: var(--slate); line-height: 1.6; }
.detail-feature-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }

/* PROGRAM CARD */
.program-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 24px; }
.program-card-header { background: var(--navy); padding: 40px 48px; display: flex; justify-content: space-between; align-items: flex-start; }
.program-card-header h3 { font-size: 26px; color: var(--white); margin-bottom: 8px; }
.program-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.program-badge { background: var(--gold); color: var(--navy); font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 4px; white-space: nowrap; }
.program-card-body { padding: 40px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.program-desc { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 20px; }
.program-features { list-style: none; }
.program-features li { font-size: 14px; color: var(--slate); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.program-features li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h3 { font-size: 24px; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.contact-label { font-size: 12px; font-weight: 600; color: var(--slate-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 500; color: var(--navy); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 48px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 1px solid var(--border); border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 15px; color: var(--navy); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* FOOTER */
footer { background: #060E17; padding: 64px 48px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .nav-logo { font-size: 24px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-certs { display: flex; gap: 16px; }
.cert-tag { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 3px; letter-spacing: 0.5px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-inner, .about-split, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 24px; }
  .hero { padding: 120px 24px 64px; }
  .program-card-body { grid-template-columns: 1fr; }
  .service-detail-hero { padding: 120px 24px 64px; }
}
@media (max-width: 600px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-photo { width: 180px; height: 180px; }
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--cream); color: var(--navy); }

.mobile-menu .mobile-cta {
  display: block;
  background: var(--navy);
  color: var(--white) !important;
  padding: 15px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  margin-top: 8px;
  border-bottom: none !important;
}

.mobile-menu .mobile-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
}
