@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --teal: #0A6F75;
  --teal-dark: #085a5f;
  --teal-deeper: #064a4e;
  --teal-light: #e8f4f5;
  --charcoal: #1a1f2e;
  --slate: #3d4a5c;
  --mid-gray: #6b7788;
  --off-white: #fafbfc;
  --white: #ffffff;
  --border: #e0e7ec;
  --font-sans: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --nav-h: 72px;
  --max-w: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links .nav-cta a {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
.nav-links .nav-cta a:hover { background: var(--teal-dark); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--charcoal);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 24px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu ul li:last-child a {
  margin-top: 16px;
  border: none;
  text-align: center;
  background: var(--teal);
  color: white;
  border-radius: 4px;
  padding: 14px;
  font-weight: 700;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.07); }

.btn-outline {
  display: inline-block;
  color: var(--teal);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1.5px solid var(--teal);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--teal);
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s;
}
.btn-white:hover { background: #e8f4f5; }

.link-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 10px; }

/* HERO */
.hero {
  background: var(--charcoal);
  padding: 96px 24px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 28px;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* PAGE HEADER */
.page-header {
  background: var(--charcoal);
  padding: 72px 24px 64px;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.25;
}
.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
}

/* SECTIONS */
.section { padding: 88px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.bg-white { background: var(--white); }
.bg-off { background: var(--off-white); }
.bg-dark { background: var(--charcoal); }
.bg-teal { background: var(--teal); }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-label-light { color: #5ac8cf; }

h2.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 18px;
}
h2.title-light { color: var(--white); }

.section-body {
  font-size: 17px;
  color: var(--slate);
  max-width: 680px;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* OUTCOME CARDS */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.outcome-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}
.outcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--teal);
}
.outcome-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.outcome-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 2; }
.outcome-card h3 {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.outcome-card p { font-size: 15px; color: var(--mid-gray); line-height: 1.75; }

/* STEP CARDS */
.step-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.step-card:hover { box-shadow: 0 8px 28px rgba(10,111,117,0.09); }
.step-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px; display: block;
}
.step-card h3 {
  font-family: var(--font-serif);
  font-size: 21px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 12px;
}
.step-card p { font-size: 15px; color: var(--mid-gray); line-height: 1.75; margin-bottom: 10px; }
.step-meta {
  font-size: 13px; color: var(--teal);
  font-style: italic; margin-bottom: 22px; display: block;
}

/* RECOGNITION */
.recognition-list { list-style: none; }
.recognition-list li {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  padding: 16px 20px 16px 40px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.recognition-list li:last-child { border-bottom: none; }
.recognition-list li::before {
  content: '';
  position: absolute; left: 14px; top: 24px;
  width: 8px; height: 8px;
  background: #5ac8cf; border-radius: 50%;
}
.recognition-closing {
  margin-top: 40px;
  font-family: var(--font-serif);
  font-size: 19px; font-style: italic;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* DELIVERABLES */
.deliverables { list-style: none; margin: 20px 0; }
.deliverables li {
  font-size: 16px; color: var(--slate);
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.deliverables li:last-child { border-bottom: none; }
.deliverables li::before {
  content: '';
  position: absolute; left: 0; top: 20px;
  width: 8px; height: 8px;
  background: var(--teal); border-radius: 50%;
}

/* SCRIPT BOX */
.script-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px; line-height: 1.75;
  color: var(--teal-deeper);
  margin: 28px 0;
}

/* REFERRAL TRIGGERS */
.referral-triggers { list-style: none; margin: 20px 0; }
.referral-triggers li {
  font-size: 15px; color: var(--slate);
  padding: 11px 0 11px 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.referral-triggers li:last-child { border-bottom: none; }
.referral-triggers li::before {
  content: '"';
  position: absolute; left: 0;
  color: var(--teal);
  font-size: 20px; font-family: var(--font-serif); line-height: 1.1;
}

/* CTA BAND */
.cta-band {
  background: var(--teal);
  padding: 80px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400; color: var(--white);
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 500px; margin: 0 auto 32px;
}

/* TRANSITION LINE */
.transition-line {
  font-style: italic;
  color: var(--mid-gray);
  font-size: 15px;
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* FOOTER */
.site-footer { background: var(--charcoal); padding: 60px 40px 40px; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 40px; flex-wrap: wrap;
}
.footer-logo img { height: 30px; opacity: 0.85; margin-bottom: 12px; display: block; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); max-width: 240px; line-height: 1.6; }
.footer-nav-wrap { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-nav-group h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 14px;
}
.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group ul a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-nav-group ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w); margin: 36px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.22); line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .section { padding: 60px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-nav-wrap { gap: 32px; }
}
