
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0e1a2b;
  --navy-mid: #1a2d47;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f7f4ef;
  --white: #ffffff;
  --text-muted: #6b7280;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--navy); background: var(--white); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 1rem 4rem;
  background: rgba(14,26,43,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--white); letter-spacing: 0.08em; cursor: pointer; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; cursor: pointer; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 0.9rem; border: none; color: var(--gold); background: transparent; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.nav-cta:hover { color: var(--white); }

/* PAGE SYSTEM */
.page { display: none; }
.page.active { display: block; }

/* SHARED SECTION STYLES */
.section-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; color: var(--navy); line-height: 1.2; }
.section-title.light { color: var(--white); }

.btn-primary { display: inline-block; padding: 0.9rem 2.25rem; background: var(--gold); color: var(--navy); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; transition: background 0.2s; text-decoration: none; }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { display: inline-block; padding: 0.9rem 2.25rem; background: transparent; color: rgba(255,255,255,0.75); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.3); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; text-decoration: none; }
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

/* ===================== HOME PAGE ===================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 10rem 4rem 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: none;
}
.hero-inner { max-width: 680px; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 1.75rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 500px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; margin-top: 2rem; }
.hero-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; color: var(--gold); }
.hero-stat .label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }

.home-intro { padding: 6rem 4rem; background: var(--navy); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.home-intro-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; margin-bottom: 1.25rem; line-height: 1.3; color: var(--white); }
.home-intro-text p { font-size: 0.95rem; line-height: 1.85; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 1rem; }
.pillar { background: rgba(255,255,255,0.05); padding: 1.5rem 1.75rem; transition: background 0.2s; }
.pillar:hover { background: rgba(255,255,255,0.08); }
.pillar h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--white); }
.pillar p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 300; }

.home-cta-band { background: var(--navy); padding: 5rem 4rem; text-align: center; }
.home-cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.home-cta-band p { color: rgba(255,255,255,0.55); font-size: 0.95rem; font-weight: 300; margin-bottom: 2rem; }

/* ===================== HOW I CAN HELP ===================== */
.help-hero { padding: 10rem 4rem 5rem; background: var(--navy); }
.help-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 300; color: var(--white); margin-bottom: 1rem; line-height: 1.1; }
.help-hero h1 em { font-style: italic; color: var(--gold-light); }
.help-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); font-weight: 300; max-width: 560px; line-height: 1.8; }

.process-section { padding: 6rem 4rem; background: var(--navy); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; margin-top: 3.5rem; }
.process-step { padding: 2rem 1.75rem; border-right: none; }
.process-step:last-child { border-right: none; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 1rem; }
.process-step h3 { font-size: 0.88rem; font-weight: 500; color: var(--white); margin-bottom: 0.6rem; letter-spacing: 0.03em; }
.process-step p { font-size: 0.8rem; line-height: 1.7; color: rgba(255,255,255,0.4); font-weight: 300; }

.help-why { padding: 6rem 4rem; background: var(--navy); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.help-why h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; margin-bottom: 1.5rem; line-height: 1.2; color: var(--white); }
.why-points { display: flex; flex-direction: column; gap: 1.5rem; }
.why-point { display: flex; gap: 1rem; align-items: start; }
.why-point-icon { width: 28px; height: 28px; background: var(--gold); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.why-point-icon svg { width: 14px; height: 14px; fill: var(--navy); }
.why-point-text h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.35rem; color: var(--white); }
.why-point-text p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.65; font-weight: 300; }

/* ===================== MY EXPERIENCE ===================== */
.exp-hero { padding: 10rem 4rem 4rem; background: var(--navy); }
.exp-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.exp-hero h1 em { font-style: italic; color: var(--gold-light); }
.exp-hero-p { font-size: 1rem; color: rgba(255,255,255,0.6); font-weight: 300; max-width: 560px; line-height: 1.8; margin-bottom: 1rem; }

.exp-bio { padding: 5rem 4rem; background: var(--navy); display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.exp-bio-sidebar { position: sticky; top: 7rem; }
.exp-avatar { width: 100%; aspect-ratio: 3/4; background: var(--navy); display: flex; align-items: flex-end; justify-content: flex-start; padding: 1.5rem; position: relative; overflow: hidden; }
.exp-avatar::before { content: ''; }
.exp-avatar-label { position: relative; z-index: 1; }
.exp-avatar-label .name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--white); font-weight: 400; }
.exp-avatar-label .title { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 0.25rem; }
.exp-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 1rem; color: var(--white); }
.exp-content p { font-size: 0.93rem; line-height: 1.85; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 1.25rem; }

.timeline { padding: 6rem 4rem; background: var(--navy); }
.timeline-items { margin-top: 1rem; border-left: 1px solid rgba(201,168,76,0.25); padding-left: 3rem; display: flex; flex-direction: column; gap: 0; }
.timeline-item { position: relative; padding-bottom: 3rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -3rem; top: 0.5rem; width: 9px; height: 9px; background: var(--gold); transform: translateX(-4px); }
.timeline-year { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.timeline-item h3 { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.timeline-item .org { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; font-weight: 300; }
.timeline-item p { font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.45); font-weight: 300; max-width: 540px; }

/* ===================== QUOTES ===================== */
.quotes-hero { padding: 10rem 4rem 4rem; background: var(--navy); }
.quotes-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.quotes-hero h1 em { font-style: italic; color: var(--gold-light); }
.quotes-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.5); font-weight: 300; max-width: 480px; line-height: 1.8; }

.quotes-grid { padding: 6rem 4rem; background: var(--navy); }
.quotes-masonry { columns: 2; column-gap: 2px; }
.quote-card { break-inside: avoid; background: rgba(255,255,255,0.05); padding: 2.5rem; margin-bottom: 2px; position: relative; }
.quote-card::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold); line-height: 0.5; margin-bottom: 1.25rem; display: block; }
.quote-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; line-height: 1.6; color: var(--white); margin-bottom: 1.25rem; }
.quote-attr { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
.quote-attr strong { color: rgba(255,255,255,0.75); display: block; font-weight: 500; margin-bottom: 0.2rem; font-size: 0.78rem; }
.quote-tag { display: inline-block; margin-top: 0.75rem; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(201,168,76,0.15); color: var(--gold); padding: 0.25rem 0.6rem; }

/* ===================== CONTACT ===================== */
.contact-hero { padding: 10rem 4rem 4rem; background: var(--navy); }
.contact-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.contact-hero h1 em { font-style: italic; color: var(--gold-light); }
.contact-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 300; max-width: 500px; line-height: 1.8; }

.contact-body { padding: 5rem 4rem; background: var(--navy); display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 1rem; color: var(--white); }
.contact-info p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail-item span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.35rem; }
.contact-detail-item a, .contact-detail-item p { font-size: 0.9rem; color: var(--white); text-decoration: none; font-weight: 400; margin: 0; }
.contact-confidence { margin-top: 2.5rem; padding: 1.5rem; background: rgba(255,255,255,0.05); border-left: 3px solid var(--gold); }
.contact-confidence p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; font-style: italic; font-weight: 300; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--white); outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form select option { background: var(--navy); color: var(--white); }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); font-weight: 300; }

/* FOOTER */
footer { background: var(--navy); padding: 2.5rem 4rem; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); letter-spacing: 0.08em; cursor: pointer; }
.footer-logo span { color: var(--gold); }
footer p { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; }
.footer-links { display: flex; gap: 1.75rem; list-style: none; }
.footer-links a { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-decoration: none; cursor: pointer; letter-spacing: 0.08em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero, .home-intro, .home-cta-band, .help-hero, .help-services, .process-section,
  .help-why, .exp-hero, .exp-bio, .timeline, .exp-credentials, .quotes-hero,
  .quotes-grid, .contact-hero, .contact-body, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .home-intro, .help-why, .exp-bio, .contact-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .quotes-masonry { columns: 1; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

.nav-cta, .nav-logo, .footer-logo { text-decoration: none; display: inline-block; }
.nav-cta.active { color: var(--white); }
