/* ════════════════════════════════════════
   MOKULUA ANALYTICS — styles.css
   ════════════════════════════════════════ */

/* ─── 1. Custom Properties ─── */
:root {
  --navy-950: #060f1c;
  --navy-900: #0b1929;
  --navy-800: #0f2035;
  --navy-700: #112240;
  --navy-600: #1a3356;
  --salmon:   #e8735a;
  --salmon-h: #d45e46;
  --salmon-l: #f08a73;

  --text-100: #e8f0fe;
  --text-200: #c8d4e8;
  --text-300: #8892b0;
  --text-400: #5a6785;

  --border:   rgba(136, 146, 176, 0.18);
  --border-h: rgba(232, 115, 90, 0.4);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --section-py: 5rem;
  --container: 1180px;
  --t: 0.25s ease;
  --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.25);
  --shadow-card-h: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* ─── 2. 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);
  background-color: var(--navy-900);
  color: var(--text-100);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── 3. Typography ─── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--text-100); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-300);
}

p { color: var(--text-200); }

.text-salmon { color: var(--salmon); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--salmon);
  margin-bottom: 0.75rem;
}

/* ─── 4. Layout ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-py) 0; }
.section--alt { background-color: var(--navy-800); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-head h2 { margin-bottom: 0.75rem; }
.section-sub { color: var(--text-300); font-size: 1.05rem; }

/* ─── 5. Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: 8px;
  font-size: 0.925rem;
  font-weight: 600;
  transition: all var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn--lg   { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--salmon {
  background: var(--salmon);
  color: #fff;
  border-color: var(--salmon);
}
.btn--salmon:hover {
  background: var(--salmon-h);
  border-color: var(--salmon-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 115, 90, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text-100);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--text-300);
  background: rgba(255, 255, 255, 0.05);
}

.btn--white {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--text-200);
  border-color: var(--text-200);
  transform: translateY(-1px);
}

/* ─── 6. Header & Nav ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t);
}
.header.is-scrolled {
  background: rgba(11, 25, 41, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.logo__mark {
  width: 34px; height: 34px;
  background: var(--salmon);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo__text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-100);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav__link {
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-300);
  border-radius: 6px;
  transition: color var(--t), background var(--t);
  position: relative;
}
.nav__link:hover { color: var(--text-100); }
.nav__link.is-active { color: var(--text-100); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--salmon);
  border-radius: 2px;
}

.nav__cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-100);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 7. Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero__bg-glow {
  position: absolute;
  top: -20%; left: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232, 115, 90, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero__text { max-width: 560px; }
.hero__headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-300);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual */
.dashboard-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.dashboard-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.dashboard-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dashboard-card__badge {
  background: rgba(232, 115, 90, 0.15);
  color: var(--salmon);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 20px;
  border: 1px solid rgba(232, 115, 90, 0.3);
}
.chart-svg { width: 100%; height: 160px; }
.dashboard-card__footer { margin-top: 1rem; }
.trend-up { font-size: 0.8rem; font-weight: 600; color: #4ade80; }

.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.metric-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  transition: border-color var(--t), transform var(--t);
}
.metric-card:hover { border-color: var(--border-h); transform: translateY(-2px); }
.metric-card__val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--salmon);
  letter-spacing: -0.02em;
}
.metric-card__lbl {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── 8. Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.service-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-h);
}
.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(232, 115, 90, 0.1);
  border: 1px solid rgba(232, 115, 90, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salmon);
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 0.625rem; }
.service-card p  { font-size: 0.95rem; color: var(--text-300); line-height: 1.65; }

/* ─── 9. Split (Why Us) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split__text h2 { margin-bottom: 1rem; }
.split__text > p { color: var(--text-300); margin-bottom: 1.5rem; line-height: 1.7; }

.check-list { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.95rem;
  color: var(--text-200);
}
.check-icon {
  width: 22px; height: 22px;
  background: rgba(232, 115, 90, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salmon);
  flex-shrink: 0;
}
.check-icon svg { width: 12px; height: 12px; }

.split__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.big-stat-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  transition: border-color var(--t), transform var(--t);
}
.big-stat-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.big-stat-card__val {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--salmon);
  letter-spacing: -0.03em;
  line-height: 1;
}
.big-stat-card__lbl {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── 10. CTA Band ─── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-700) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 115, 90, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band p {
  color: var(--text-300);
  font-size: 1.05rem;
  margin: 0 auto 2rem;
  max-width: 480px;
}

/* ─── 11. Footer ─── */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__brand .logo { margin-bottom: 0.75rem; }
.footer__brand p { font-size: 0.9rem; color: var(--text-400); }

.footer__col h4 { margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col li,
.footer__col p { font-size: 0.9rem; color: var(--text-400); }
.footer__col a { color: var(--text-400); transition: color var(--t); }
.footer__col a:hover { color: var(--text-100); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}
.footer__bottom p { font-size: 0.85rem; color: var(--text-400); }

/* ─── 12. Page Hero (inner pages) ─── */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero__inner { max-width: 640px; margin: 0 auto; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero__sub { font-size: 1.1rem; color: var(--text-300); line-height: 1.7; }

/* ─── 13. About — Mission ─── */
.mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.mission-block__text .eyebrow { margin-bottom: 0.5rem; }
.mission-block__text h2 { margin-bottom: 1.25rem; }
.mission-block__text p { color: var(--text-300); line-height: 1.75; margin-bottom: 1rem; }

.mission-visual-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 6rem;
}
.mv-stat { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 0; }
.mv-stat__val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--salmon);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mv-stat__lbl {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mv-divider { height: 1px; background: var(--border); }

/* ─── 14. Values Grid ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color var(--t), transform var(--t);
}
.value-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.value-card__icon {
  width: 52px; height: 52px;
  background: rgba(232, 115, 90, 0.1);
  border: 1px solid rgba(232, 115, 90, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salmon);
  margin-bottom: 1.25rem;
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card h3 { margin-bottom: 0.625rem; }
.value-card p  { font-size: 0.95rem; color: var(--text-300); line-height: 1.65; }

/* ─── 15. Team Grid ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: border-color var(--t), transform var(--t);
}
.team-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.team-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--border);
}
.team-card__avatar svg { width: 80px; height: 80px; }
.team-card__name { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--salmon);
  margin-bottom: 0.875rem;
}
.team-card__bio { font-size: 0.9rem; color: var(--text-300); line-height: 1.65; }

/* ─── 16. Contact ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--text-200); }
.optional { color: var(--text-400); font-weight: 400; }

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 0.875rem;
  font-size: 0.925rem;
  color: var(--text-100);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-400); }
.form-field select { appearance: none; cursor: pointer; }
.form-field select option { background: var(--navy-800); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--salmon);
  box-shadow: 0 0 0 3px rgba(232, 115, 90, 0.15);
}
.form-field input.is-error,
.form-field select.is-error,
.form-field textarea.is-error { border-color: #f87171; }

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

.field-error { font-size: 0.78rem; color: #f87171; min-height: 1em; }

.form-success { text-align: center; padding: 3rem 2rem; }
.form-success__icon {
  width: 64px; height: 64px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #4ade80;
}
.form-success__icon svg { width: 30px; height: 30px; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--text-300); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}
.contact-info__card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.375rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--t);
}
.contact-info__card:hover { border-color: var(--border-h); }
.contact-info__icon {
  width: 40px; height: 40px;
  background: rgba(232, 115, 90, 0.1);
  border: 1px solid rgba(232, 115, 90, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salmon);
  flex-shrink: 0;
}
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__card h4 { margin-bottom: 0.25rem; }
.contact-info__card p { font-size: 0.9rem; color: var(--text-200); line-height: 1.55; }

/* ─── 17. New sections ─── */

/* Opening / budget narrative */
.opening {
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-py) 0;
}
.opening__inner { max-width: 760px; margin: 0 auto; }
.opening__lead {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.opening__body { color: var(--text-300); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1rem; }
.opening__body strong { color: var(--text-100); font-weight: 600; }

/* Why Mokulua — centered layout */
.why-centered { max-width: 720px; margin: 0 auto; text-align: center; }
.why-centered h2 { margin-bottom: 1.25rem; }
.why-centered__lead {
  font-size: 1.1rem;
  color: var(--text-200);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.why-centered__body { color: var(--text-300); line-height: 1.75; margin-bottom: 2rem; }

.check-list--centered { max-width: 520px; margin: 0 auto 2rem; text-align: left; }

.budget-note {
  background: rgba(232, 115, 90, 0.07);
  border: 1px solid rgba(232, 115, 90, 0.22);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  max-width: 520px;
  margin: 0 auto;
}
.budget-note p { font-size: 0.95rem; color: var(--text-300); line-height: 1.65; margin: 0; }
.budget-note strong { color: var(--text-100); font-weight: 600; }

/* Experience at a Glance */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.experience-col h4 { margin-bottom: 1.25rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(232, 115, 90, 0.1);
  border: 1px solid rgba(232, 115, 90, 0.22);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--salmon-l);
  line-height: 1.4;
}

.cred-list { display: flex; flex-direction: column; gap: 0.625rem; }
.cred-list li {
  font-size: 0.9rem;
  color: var(--text-300);
  padding-left: 1.125rem;
  position: relative;
  line-height: 1.55;
}
.cred-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--salmon);
  font-weight: 600;
}

/* Service card tools line */
.service-card__tools {
  font-size: 0.78rem;
  color: var(--text-400);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Beliefs grid (2×2) */
.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Founder block */
.founder-block {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.founder-block__text .eyebrow { margin-bottom: 0.5rem; }
.founder-block__text h2 { margin-bottom: 1.25rem; }
.founder-block__text p { color: var(--text-300); line-height: 1.75; margin-bottom: 1rem; }

.founder-creds {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  position: sticky;
  top: 6rem;
}
.founder-creds h4 { margin-bottom: 1.25rem; }

/* Contact: expect list & note */
.contact-info__card--expect { display: block; }
.expect-list { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 0.75rem; }
.expect-list li {
  font-size: 0.875rem;
  color: var(--text-300);
  padding-left: 1.125rem;
  position: relative;
  line-height: 1.55;
}
.expect-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--salmon);
  font-size: 0.75rem;
}

.contact-note {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-400);
  font-style: italic;
}

/* ─── 18. Scroll animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ─── 18. Responsive ─── */
@media (max-width: 960px) {
  .hero__inner         { grid-template-columns: 1fr; gap: 3rem; }
  .hero__text          { max-width: 100%; text-align: center; }
  .hero__btns          { justify-content: center; }
  .hero__sub           { margin: 0 auto 2rem; }
  .split               { grid-template-columns: 1fr; gap: 3rem; }
  .mission-block       { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-visual-card { position: static; }
  .values-grid         { grid-template-columns: 1fr 1fr; }
  .beliefs-grid        { grid-template-columns: 1fr 1fr; }
  .founder-block       { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-creds       { position: static; }
  .experience-grid     { grid-template-columns: 1fr 1fr; }
  .contact-layout      { grid-template-columns: 1fr; }
  .contact-info        { position: static; }
  .footer__inner       { grid-template-columns: 1fr 1fr; }
  .footer__brand       { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  .hamburger  { display: flex; }
  .nav__cta   { display: none; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--navy-800);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 1.5rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { font-size: 1.1rem; padding: 0.75rem 1rem; width: 100%; }
  .nav__link.is-active::after { display: none; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
    backdrop-filter: blur(2px);
  }
  .nav-overlay.is-visible { display: block; }
}

@media (max-width: 600px) {
  .services-grid   { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .beliefs-grid    { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .form-row--2     { grid-template-columns: 1fr; }
  .footer__inner   { grid-template-columns: 1fr; }
  .hero__headline  { font-size: 2rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
