/* ==========================================================================
   Whiteboard Labs — Main Stylesheet
   ========================================================================== */

/* --- Custom Properties --- */
:root {
  --navy: #0B1F3A;
  --teal: #C96A1A;
  --teal-dark: #A3500E;
  --brand-red: #C0392B;
  --brand-rust: #8B2500;
  --warm-cream: #F5F0E8;
  --slate-bg: #F0F4F8;
  --body-text: #4A5568;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --font-primary: 'DM Sans', 'Inter', sans-serif;
  --max-width: 1280px;
  --section-padding: 96px;
  --section-padding-mobile: 64px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 64px; line-height: 1.1; }
h2 { font-size: 42px; }
h3 { font-size: 26px; font-weight: 600; color: var(--teal); }
h4 { font-size: 20px; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section--white { background: var(--white); }
.section--slate { background: var(--slate-bg); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h2,
.section--navy h3 { color: var(--white); }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  margin-bottom: 16px;
  display: block;
}

.section--navy .eyebrow { color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.section--navy .btn--secondary {
  color: var(--white);
  border-color: var(--white);
}

.section--navy .btn--secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--ghost {
  background: transparent;
  color: var(--teal);
  border-color: transparent;
  padding: 0;
  height: auto;
}

.btn--ghost:hover {
  color: var(--teal-dark);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--dark:hover {
  background: #14305a;
  border-color: #14305a;
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  height: var(--header-height);
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  height: 48px;
  width: auto;
}

/* Nav */
.primary-nav .nav-list {
  display: flex;
  gap: 4px;
  align-items: center;
}
.primary-nav .nav-list li {
  position: relative;
}
.primary-nav .nav-list li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

/* Dropdown submenu */
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand-red);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 300;
  list-style: none;
}
.primary-nav .nav-list li:hover > .sub-menu,
.primary-nav .nav-list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav .sub-menu li a {
  padding: 9px 18px;
  font-size: 14px;
  border-radius: 0;
  color: var(--navy);
  display: block;
  white-space: nowrap;
}
.primary-nav .sub-menu li a:hover {
  background: var(--slate-bg);
  color: var(--brand-red);
}

/* Homepage: header overlays hero */
body.home .site-header:not(.scrolled) {
  background: var(--navy);
}
body.home .site-header:not(.scrolled) .nav-list > li > a,
body.home .site-header:not(.scrolled) .utility-list li a {
  color: var(--white);
}
body.home .site-header:not(.scrolled) .nav-toggle {
  color: var(--white);
}
body.home .site-header:not(.scrolled) .logo-image {
  filter: brightness(0) invert(1);
}
body.home .site-header:not(.scrolled) .sub-menu {
  background: var(--navy);
  border-color: rgba(255,255,255,0.15);
  border-top-color: var(--teal);
}
body.home .site-header:not(.scrolled) .sub-menu li a {
  color: var(--white);
}
body.home .site-header:not(.scrolled) .sub-menu li a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--teal);
}

.primary-nav .nav-list li a:hover {
  color: var(--brand-red);
}
.primary-nav .nav-list li.current-menu-item > a,
.primary-nav .nav-list li.current_page_item > a,
.primary-nav .nav-list li.current-menu-ancestor > a {
  color: var(--brand-red);
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 6px;
}

/* --- Dropdown submenu --- */
.primary-nav .nav-list li {
  position: relative;
}
.primary-nav .nav-list .sub-menu,
body.home .site-header .nav-list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF !important;
  border: 1px solid var(--border);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
  flex-direction: column;
}
.primary-nav .nav-list li:hover > .sub-menu {
  display: flex;
}
.primary-nav .nav-list .sub-menu li a,
body.home .site-header:not(.scrolled) .nav-list .sub-menu li a,
body.home .site-header .nav-list .sub-menu li a {
  padding: 8px 20px;
  font-size: 14px;
  color: var(--navy) !important;
  white-space: nowrap;
  border-radius: 0;
}
.primary-nav .nav-list .sub-menu li a:hover,
body.home .site-header:not(.scrolled) .nav-list .sub-menu li a:hover,
body.home .site-header .nav-list .sub-menu li a:hover {
  background: var(--slate-bg);
  color: var(--brand-red, var(--teal)) !important;
}

/* Dropdown arrow indicator */
.primary-nav .nav-list > .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
}

.utility-nav .utility-list {
  display: flex;
  gap: 12px;
  align-items: center;
}

.utility-nav .utility-list li a {
  font-size: 12px;
  font-weight: 600;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.utility-nav .utility-list li a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  text-align: center;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-list li a {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s ease;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.current-menu-item a {
  color: var(--teal);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 var(--section-padding);
  position: relative;
  overflow: hidden;
}

.hero--navy {
  background: var(--navy);
  color: var(--white);
}

.hero--navy h1 { color: var(--white); }

.hero--page {
  min-height: 60vh;
  padding: 140px 0 80px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero .sub-copy {
  font-size: 19px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Hero SVG decoration */
.hero-decoration {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  pointer-events: none;
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.trust-bar p {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 8px;
}

.trust-bar .trust-sub {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo-placeholder {
  height: 40px;
  padding: 8px 24px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--body-text);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.trust-logo-placeholder:hover {
  opacity: 1;
  border-color: var(--brand-red);
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--teal);
  border-radius: 0 0 8px 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.card .card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
}

.card .btn--ghost {
  margin-top: 16px;
}

/* --- Stat Block --- */
.stat-strip {
  background: var(--navy);
  padding: 64px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 64px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--white);
  opacity: 0.9;
}

/* Stat variation for inline sections */
.stat-grid--inline {
  background: var(--navy);
  border-radius: 8px;
  padding: 32px;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-grid--inline .stat-item {
  text-align: left;
  padding: 16px;
  border-left: 3px solid var(--teal);
}

.stat-grid--inline .stat-number {
  font-size: 24px;
  margin-bottom: 4px;
}

.stat-grid--inline .stat-label {
  font-size: 13px;
}

/* --- 5-Step Process --- */
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--border);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.5;
}

/* --- Testimonial Card --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
}

.section--navy .testimonial-card {
  border-color: transparent;
}

.testimonial-quote-mark {
  font-size: 72px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 20px;
  padding-top: 32px;
  font-style: italic;
}

.testimonial-attribution {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-attribution span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--body-text);
}

/* --- Mentor Profile Card --- */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.mentor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.mentor-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.mentor-card-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--slate-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-text);
  font-size: 14px;
}

.mentor-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-card-body {
  padding: 24px;
}

.mentor-card-body h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--navy);
}

.mentor-card-body .mentor-role {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 12px;
}

.mentor-domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.domain-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--slate-bg);
  color: var(--teal);
  border-radius: 100px;
}

.mentor-card-body .mentor-exp {
  font-size: 13px;
  color: var(--body-text);
}

.mentor-card-body .mentor-philosophy {
  font-size: 14px;
  font-style: italic;
  color: var(--body-text);
  margin-top: 8px;
}

/* --- Case Study Card --- */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.case-study-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--teal);
  border-radius: 0 0 8px 8px;
  padding: 32px;
}

.case-study-card .case-type {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 8px;
}

.case-study-card h3 { margin-bottom: 12px; }

.case-study-card .case-challenge {
  font-size: 15px;
  margin-bottom: 16px;
}

.case-study-card .case-outcomes {
  margin-bottom: 16px;
}

.case-study-card .case-outcomes li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.case-study-card .case-outcomes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 24px;
  text-align: left;
}

.comparison-table td {
  padding: 16px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.comparison-table tr td:first-child {
  color: var(--body-text);
}

.comparison-table tr td:last-child {
  color: var(--navy);
  font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--slate-bg);
}

/* --- Two-Column Table --- */
.two-col-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.two-col-table th {
  background: var(--teal);
  color: var(--white);
  padding: 14px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}

.two-col-table td {
  padding: 14px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.two-col-table tbody tr:nth-child(even) {
  background: var(--slate-bg);
}

/* --- Outcome Metrics Table --- */
.outcome-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.outcome-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.outcome-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.outcome-table tbody tr:nth-child(even) {
  background: var(--slate-bg);
}

/* --- CTA Strip --- */
.cta-strip {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* --- Contact Form --- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--teal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--navy);
  transition: border-color 0.2s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(201, 106, 26, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.field-error {
  display: none;
  font-size: 13px;
  color: #e53e3e;
  margin-top: 4px;
}

#form-error {
  display: none;
  background: #fff5f5;
  border: 1px solid #feb2b2;
  color: #c53030;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
}

#form-success {
  display: none;
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.contact-details h3 {
  margin-bottom: 24px;
}

.contact-details .contact-item {
  margin-bottom: 16px;
  font-size: 15px;
}

.contact-details .contact-item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-value-statement {
  margin-top: 40px;
  padding: 24px;
  background: var(--slate-bg);
  border-radius: 8px;
  border-left: 4px solid var(--teal);
  font-style: italic;
  font-size: 15px;
}

/* --- Callout Box --- */
.callout-box {
  background: var(--slate-bg);
  border-left: 4px solid var(--teal);
  padding: 32px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}

.callout-box p {
  font-size: 17px;
  line-height: 1.7;
}

/* --- Engagement Path Cards --- */
.engagement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.engagement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--teal);
  border-radius: 0 0 8px 8px;
  padding: 32px;
  text-align: center;
}

.engagement-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.engagement-card p {
  font-size: 15px;
  margin-bottom: 24px;
}

/* --- Audience Callout Boxes --- */
.audience-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.audience-box {
  background: var(--slate-bg);
  border-radius: 8px;
  padding: 32px;
  border-top: 4px solid var(--teal);
}

.audience-box h4 {
  color: var(--navy);
  margin-bottom: 12px;
}

.audience-box p {
  font-size: 15px;
}

/* --- Blockquote / Pull Quote --- */
.pull-quote {
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  padding: 48px 0;
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  margin: 48px 0;
  text-align: center;
}

/* --- Global Presence --- */
.global-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.global-item {
  text-align: center;
  padding: 32px;
  background: var(--slate-bg);
  border-radius: 8px;
}

.global-item .global-code {
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.global-item h4 {
  margin-bottom: 4px;
}

.global-item p {
  font-size: 14px;
  color: var(--body-text);
}

/* --- Accreditation Logos --- */
.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.accreditation-item {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.accreditation-item .accred-logo {
  height: 60px;
  background: var(--slate-bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--body-text);
}

/* --- Leadership Team --- */
/* === Leadership Team Cards === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: box-shadow 0.2s ease;
  align-items: flex-start;
}
.team-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.team-photo-wrap {
  flex-shrink: 0;
}
.team-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--warm-cream, var(--slate-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card-body {
  flex: 1;
}
.team-card-body h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 2px;
  font-weight: 700;
}
.team-role {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.65;
  margin-bottom: 8px;
}
.team-bio:last-of-type {
  margin-bottom: 12px;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0A66C2;
  text-decoration: none;
}
.team-linkedin:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .team-card {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- What We Do — Stage Sections --- */
.stage-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.stage-section:last-of-type {
  border-bottom: none;
}

.stage-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 8px;
}

.stage-section h3 {
  margin-bottom: 16px;
}

.stage-meta {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.stage-output {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--slate-bg);
  border-radius: 4px;
  font-size: 14px;
}

.stage-output strong {
  color: var(--navy);
}

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

/* --- Bulleted List --- */
.wbl-list {
  margin: 16px 0;
}

.wbl-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-size: 15px;
}

.wbl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

/* --- Mentor Domain List --- */
.domain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.domain-list li {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

/* --- Empty State --- */
.empty-state {
  text-align: center;
  padding: 48px 32px;
  background: var(--slate-bg);
  border-radius: 8px;
  color: var(--body-text);
  font-size: 16px;
}

/* --- 404 Page --- */
.page-404 {
  text-align: center;
  padding: 120px 24px;
}

.page-404 .error-code {
  font-size: 160px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
}

/* --- Search Results --- */
.search-results-list .search-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.search-results-list .search-item h3 a {
  color: var(--navy);
}

.search-results-list .search-item h3 a:hover {
  color: var(--teal);
}

/* --- Mentor Single --- */
.mentor-single-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.mentor-single-photo {
  width: 300px;
  height: 300px;
  border-radius: 8px;
  background: var(--slate-bg);
  overflow: hidden;
}

.mentor-single-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-single-info h1 {
  margin-bottom: 8px;
}

.mentor-single-info .mentor-subtitle {
  font-size: 18px;
  color: var(--body-text);
  margin-bottom: 16px;
}

/* --- Partner Logo Grid --- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.partner-placeholder {
  height: 80px;
  background: var(--slate-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--body-text);
}

/* --- Privacy / Terms --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  margin: 40px 0 16px;
}

.legal-content p {
  margin-bottom: 16px;
}

/* --- Audience Routing Tiles --- */
.audience-routing {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.audience-routing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  background: var(--white);
}
.audience-tile:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  color: inherit;
}
.audience-tile--featured {
  border-color: var(--teal);
  background: var(--warm-cream);
}
.audience-tile-icon {
  color: var(--teal);
  margin-bottom: 4px;
}
.audience-tile-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.audience-tile-desc {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.5;
  flex: 1;
}
.audience-tile-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 8px;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}
details[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
}

/* === Video Background Hero === */
.hero--navy {
  position: relative;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  opacity: 0.35;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.65;
  z-index: 1;
}
.hero--navy .container,
.hero--navy .hero-content {
  position: relative;
  z-index: 2;
}

/* Disable video on mobile to save bandwidth */
@media (max-width: 768px) {
  .hero-video-bg {
    display: none;
  }
}

/* === Page Hero Background Images === */
.hero--page {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero--universities {
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.80), rgba(11, 31, 58, 0.80)),
    url('../images/hero-universities.jpg');
}
.hero--enterprises {
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.80), rgba(11, 31, 58, 0.80)),
    url('../images/hero-enterprises.jpg');
}
.hero--schools {
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.80), rgba(11, 31, 58, 0.80)),
    url('../images/hero-schools.jpg');
}
.hero--mentors {
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.80), rgba(11, 31, 58, 0.80)),
    url('../images/hero-mentors.jpg');
}
.hero--outcomes {
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.80), rgba(11, 31, 58, 0.80)),
    url('../images/hero-outcomes.jpg');
}
.hero--what-we-do {
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.80), rgba(11, 31, 58, 0.80)),
    url('../images/hero-what-we-do.jpg');
}

/* Ensure hero text is always white on image backgrounds */
.hero--page h1,
.hero--page .sub-copy {
  color: var(--white);
}
.hero--page .eyebrow {
  color: var(--teal);
}

/* === Subtle Section Background Images === */
.section--image-bg {
  position: relative;
  overflow: hidden;
}
.section--image-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
}
.section--image-bg .container {
  position: relative;
  z-index: 1;
}
.section--mentor-bg::before {
  background-image: url('../images/hero-mentors.jpg');
}
.section--about-bg::before {
  background-image: url('../images/about-team.jpg');
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Accessibility --- */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  /* Keep logo legible on dark background without full inversion */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.footer-mission {
  font-size: 14px;
  opacity: 0.7;
  font-style: italic;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a,
.footer-contact-info li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-links li a:hover {
  color: var(--teal);
}

.footer-markets {
  font-weight: 600;
  color: var(--teal) !important;
  margin-top: 8px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--teal);
}

/* === Header Controls (region + platform) === */
.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.region-selector select {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 12px;
  font-family: var(--font-primary);
  font-weight: 500;
  padding: 5px 28px 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  transition: border-color 0.2s ease;
}
.region-selector select:hover {
  border-color: rgba(255,255,255,0.7);
}
.site-header.scrolled .region-selector select,
body:not(.home) .site-header .region-selector select {
  border-color: var(--border);
  color: var(--navy);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230B1F3A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.btn--platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  background: var(--teal);
  color: var(--white);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.btn--platform:hover {
  background: var(--teal-dark);
  color: var(--white);
}
.platform-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,0.25);
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === India-only content === */
.india-only {
  display: none;
  animation: fadeIn 0.4s ease;
}
body[data-region="india"] .india-only {
  display: block;
}
/* === Origin Timeline (About page) === */
.origin-timeline {
  position: relative;
  padding-left: 32px;
}
.origin-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--brand-red, #C96A1A));
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-year {
  font-size: 14px;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 4px;
  line-height: 1.2;
}
.timeline-content h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.timeline-content p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 0;
}
.timeline-content p + p {
  margin-top: 10px;
}
@media (max-width: 600px) {
  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .timeline-year {
    font-size: 12px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Knowledge Hub Cards === */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.knowledge-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--teal);
  border-radius: 0 0 8px 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.knowledge-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.knowledge-type-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-red, #C96A1A);
}
.knowledge-card h3 {
  font-size: 17px;
  color: var(--navy);
  margin: 0;
}
.knowledge-card p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.knowledge-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 8px;
  text-decoration: none;
}
.knowledge-card a:hover {
  color: var(--teal-dark);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1280px) {
  h1 { font-size: 52px; }
  h2 { font-size: 36px; }
}

@media (max-width: 1024px) {
  .header-controls { display: none; }
  .knowledge-grid { grid-template-columns: repeat(2, 1fr); }

  .primary-nav,
  .utility-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero { min-height: 80vh; }

  .card-grid,
  .testimonial-grid,
  .mentor-grid,
  .engagement-cards,
  .audience-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    flex-direction: column;
    gap: 16px;
  }

  .process-step::after {
    display: none;
  }

  .process-step {
    text-align: left;
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--slate-bg);
    border-radius: 8px;
  }

  .process-step .step-number {
    flex-shrink: 0;
    width: 40px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mentor-single-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mentor-single-photo {
    width: 200px;
    height: 200px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .knowledge-grid { grid-template-columns: 1fr; }

  :root {
    --section-padding: var(--section-padding-mobile);
  }

  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }
  body { font-size: 16px; }

  .hero { min-height: auto; padding: 120px 0 64px; }
  .hero--page { padding: 120px 0 48px; }

  .card-grid,
  .testimonial-grid,
  .mentor-grid,
  .case-study-grid,
  .engagement-cards,
  .audience-boxes,
  .global-grid,
  .accreditation-grid,
  .team-grid,
  .audience-routing-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item .stat-number {
    font-size: 48px;
  }

  .domain-list {
    grid-template-columns: 1fr;
  }

  .comparison-table,
  .two-col-table,
  .outcome-table {
    display: block;
    overflow-x: auto;
  }

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

  .pull-quote {
    font-size: 22px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-404 .error-code {
    font-size: 100px;
  }
}

/* ==========================================================================
   SITE SEARCH
   ========================================================================== */

.search-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.search-icon-btn:hover { opacity: 1; }

/* Keep icon white only on homepage hero (dark navy header, not yet scrolled) */
body.home .site-header:not(.scrolled) .search-icon-btn {
  color: var(--white);
}

.wbl-search-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 31, 58, 0.95);
  padding: 120px 24px 40px;
  z-index: 10000;
}
.wbl-search-overlay.active { display: block; }

/* Prominent × close button */
.wbl-search-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  opacity: 0.7;
  font-size: 2rem;
  line-height: 1;
  padding: 4px 8px;
  transition: opacity 0.2s;
}
.wbl-search-close:hover { opacity: 1; }

.wbl-search-overlay form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wbl-search-overlay input[type="search"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  font-size: 1.1rem;
  border: none;
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
}
.wbl-search-overlay input[type="search"]:focus {
  outline: 2px solid var(--teal);
}

/* Search results page */
.search-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.search-item h3 { margin-bottom: 8px; }
.search-item h3 a { text-decoration: none; color: var(--navy); }
.search-item h3 a:hover { color: var(--teal); }

/* Legal pages */
.legal-content h2 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--navy);
}
.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text);
}
