@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&family=Lato:ital,wght@1,300&family=Poppins:wght@200&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-900: #0b1d3a;
  --navy-800: #122348;
  --navy-700: #1a3060;
  --navy-600: #1e3a70;
  --navy-400: #3a5fa0;
  --navy-200: #9eb5d8;
  --navy-100: #d0dcef;
  --navy-50:  #edf1f8;
  --cream:    #f7f5f0;
  --white:    #ffffff;
  --text-dark: #0e1c33;
  --text-mid:  #3d5070;
  --text-light: #7a90b0;
  --border:   rgba(30, 58, 112, 0.12);
  --border-mid: rgba(30, 58, 112, 0.22);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}



/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 6vw 8vw 8vw;
  background: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-400);
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--navy-400);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--navy-900);
  margin-bottom: 1.8rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--navy-400);
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--navy-400);
  max-width: 440px;
  margin-bottom: 2.8rem;
  letter-spacing: 1.2px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.btn-primary {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy-800);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--navy-600); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-800);
  text-decoration: none;
  border-bottom: 1px solid var(--navy-200);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--navy-400); border-color: var(--navy-400); }

.hero-right {
  background: var(--navy-900);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8vw 6vw;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.hero-right::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 100%;
  margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-200);
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  border-left: 1px solid var(--navy-400);
  padding-left: 1.2rem;
  position: relative;
  z-index: 1;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--navy-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.4rem 8vw;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-strip-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.intro-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
}

.intro-strip-list li {
  font-size: 0.8rem;
  font-weight: 400;
  color:  var(--navy-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1.2px;
}

.intro-strip-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--navy-400);
}

/* ── SECTIONS ── */
.section {
  padding: 7rem 8vw;
   background: var(--navy-900);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--border);
}

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-400);
  margin-bottom: 0.8rem;
}

.section-titlee {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: whitesmoke;
  line-height: 1.2;
}

.section-titlee em {
  font-style: italic;
  color: var(--navy-400);
}


.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-800);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--navy-400);
}

.section-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 5rem;
  color: var(--border);
  line-height: 1;
}

/* ── ASSESSMENT AREAS ── */
.assess-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 0.5px solid var(--border-mid);
}

.assess-item {
  padding: 2.4rem 2rem;
  border-right: 0.5px solid var(--border-mid);
  border-bottom: 0.5px solid var(--border-mid);
  transition: background 0.25s;
}

.assess-item:nth-child(3n) { border-right: none; }
.assess-item:nth-last-child(-n+3) { border-bottom: none; }
.assess-item:hover { background: var(--navy-50); }

.assess-icon {
  width: 36px; height: 36px;
  background: var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.assess-icon svg { width: 16px; height: 16px; stroke: var(--navy-700); fill: none; stroke-width: 1.5; }

.assess-item-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: silver;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
}

.assess-item-body {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  letter-spacing: 1.2px;
}

/* ── PROCESS ── */
.process-section {
  background: var(--navy-900);
  padding: 7rem 8vw;
}

.process-section .section-eyebrow { color: var(--navy-200); }
.process-section .section-title { color: var(--white); }
.process-section .section-title em { color: var(--navy-200); }
.process-section .section-number { color: rgba(255,255,255,0.06); }
.process-section .section-header { border-bottom-color: rgba(255,255,255,0.08); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 40px; right: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem 0 0;
}

.step-number-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.step-num {
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.15);
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  flex-shrink: 0;
}

.step-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
}

.step-body {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--navy-200);
  letter-spacing: 1.2px;
}

/* ── DELIVERABLES ── */
.deliverables-section {
  padding: 7rem 8vw;
  background: var(--cream);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.deliverable-card {
  background: var(--white);
  border: 0.5px solid var(--border-mid);
  padding: 2rem;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}

.deliverable-card:hover {
  border-color: var(--navy-400);
  transform: translateY(-2px);
}

.del-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--navy-100);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
  margin-top: -0.2rem;
}

.del-content-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.del-content-body {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.75;
   color: var(--navy-900);
   letter-spacing: 1.2px;
}

 

/* ── PARENT SERVICES STRIP ── */
.parent-strip {
  background: var(--navy-50);
  border-top: 0.5px solid var(--border);
  padding: 3rem 8vw;
}

.parent-strip-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.4rem;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}

.services-list li a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy-800);
  border: 0.5px solid var(--border-mid);
  padding: 0.4rem 1rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.services-list li a:hover,
.services-list li.active a {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}



/* ── FADE-IN ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { padding: 4rem 8vw; }
  .assess-grid { grid-template-columns: 1fr 1fr; }
  .assess-item:nth-child(2n) { border-right: none; }
  .assess-item:nth-child(3n) { border-right: 0.5px solid var(--border-mid); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .assess-grid { grid-template-columns: 1fr; }
  .assess-item { border-right: none !important; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
}
