/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #2A9D8F;
  --teal-dark:  #1E7A6E;
  --teal-light: #E0F5F3;
  --orange:     #F4A261;
  --orange-dark:#E07B3A;
  --cream:      #FDFAF6;
  --dark:       #1A2E2B;
  --mid:        #4A6360;
  --light:      #8BA8A5;
  --border:     #D8E8E6;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(42,157,143,0.10);
  --shadow-md:  0 8px 24px rgba(42,157,143,0.15);
  --shadow-lg:  0 16px 48px rgba(42,157,143,0.18);
  --radius:     16px;
  --radius-lg:  24px;
  --font-body:  'Nunito', sans-serif;
  --font-serif: 'Lora', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ===== TYPOGRAPHY ===== */
h1 { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.2; color: var(--dark); }
h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.25; color: var(--dark); }
h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); }
p  { color: var(--mid); }

h1 em, h2 em { font-style: italic; color: var(--teal); }
.green { color: #3a9e4f; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; }
.yt-link { color: var(--teal); font-weight: 700; text-decoration: underline; }
.yt-link:hover { color: var(--teal-dark); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-outline-nav {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 10px 22px;
}
.btn-outline-nav:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* ===== NAVIGATION ===== */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo { display: inline-flex; align-items: center; }
.logo-img { height: 48px; width: auto; display: block; }
.logo-img-footer { height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FDFAF6 0%, #E8F5F3 100%);
  padding: 96px 0 80px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #2A9D8F22, transparent 70%);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #F4A26122, transparent 70%);
  bottom: -50px; left: 10%;
}
.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #2A9D8F18, transparent 70%);
  top: 40%; left: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-note {
  max-width: 520px;
  margin: -12px 0 30px;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
  color: var(--dark);
  font-size: 0.98rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--light); font-weight: 600; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 380px;
  width: 100%;
  border: 1px solid var(--border);
}
.hero-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.hero-card p { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--dark); margin-bottom: 16px; }
.hero-card-credit { font-size: 0.85rem; font-weight: 700; color: var(--teal); }

.hero-photo {
  width: 100%;
  max-width: 570px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  display: block;
}

.hero-badge {
  background: var(--white);
  border: 2px solid var(--teal-light);
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
}
.badge-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--teal-light), #C8EDE9);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}


.about-text h2 { margin: 8px 0 20px; }
.about-text p { margin-bottom: 16px; }

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 32px;
}
.about-credentials li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== FOCUS AREAS ===== */
.focus { background: linear-gradient(180deg, #FFFFFF 0%, #F7FCFB 100%); }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.focus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}

.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.focus-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.focus-card h3 {
  margin-bottom: 10px;
}

.focus-card p {
  font-size: 0.94rem;
}

/* ===== SERVICES ===== */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card h3 { margin-bottom: 10px; }
mark.highlight { background: #FFF176; color: var(--dark); border-radius: 3px; padding: 0 3px; font-weight: 700; }
.service-card p { font-size: 0.92rem; }

.service-card {
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  width: 100%;
}

.service-play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: 7px 14px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.service-card:hover .service-play {
  background: var(--teal);
  color: var(--white);
}

/* ===== VIDEO MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 43, 0.75);
  backdrop-filter: blur(4px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); }

.modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--light);
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--dark); }

.modal-video-wrap {
  position: relative;
  background: #000;
  aspect-ratio: 9 / 16;
  width: 100%;
}

#modalVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.modal-no-video {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 24px;
  text-align: center;
  background: var(--cream);
}
.modal-no-video span { font-size: 3rem; }
.modal-no-video p { color: var(--mid); font-size: 0.95rem; line-height: 1.6; }
.modal-no-video code { background: var(--border); padding: 2px 6px; border-radius: 4px; font-size: 0.85rem; }

/* ===== APPROACH ===== */
.approach { background: var(--white); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.step-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--teal-light);
  font-family: var(--font-body);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 { margin-bottom: 10px; }
.step-content p { font-size: 0.92rem; }

.step-arrow {
  font-size: 1.8rem;
  color: var(--border);
  margin-top: 40px;
  flex-shrink: 0;
}

/* ===== SCREENING & ASSESSMENTS ===== */
.pathways {
  background: var(--white);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.path-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FCFB 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}

.path-card-alt {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F1 100%);
}

.path-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.path-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.path-card > p {
  margin-bottom: 18px;
}

.path-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
}

.path-list li {
  position: relative;
  padding-left: 24px;
  color: var(--mid);
}

.path-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

/* ===== CONTACT ===== */
.contact { background: var(--cream); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 { margin: 8px 0 20px; }
.contact-info > p { margin-bottom: 32px; }
.contact-note {
  margin: -8px 0 28px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-details a { font-weight: 600; color: var(--teal); }
.contact-details a:hover { text-decoration: underline; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

input, select, textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.12);
  background: var(--white);
}
textarea { resize: vertical; }
select { cursor: pointer; }
input[readonly] { background: var(--teal-light); color: var(--teal-dark); cursor: default; }

.form-section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  border-top: 2px solid var(--teal-light);
  padding-top: 20px;
  margin: 8px 0 16px;
}

.form-thank-you {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--teal-dark);
  text-align: center;
  padding: 16px;
  background: var(--teal-light);
  border-radius: 10px;
  margin-bottom: 20px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--light);
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 48px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p { font-size: 0.85rem; color: var(--light); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: var(--light);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Active nav link */
.nav-links a.active { color: var(--teal); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { display: none; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .about-inner { direction: initial; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 20px;
    z-index: 99;
  }

  .services-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .about-credentials { grid-template-columns: 1fr; }

  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.3rem; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .hero-note { margin: -8px 0 24px; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { align-items: center; }
}

/* ===== INTAKE CTA CARD ===== */
.intake-cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}
.intake-cta-icon { font-size: 3rem; margin-bottom: 16px; }
.intake-cta-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--dark);
}
.intake-cta-card > p { margin-bottom: 28px; font-size: 1rem; color: var(--mid); }
