/* ========================================================================
   STAR AI — Design System
   Display: Sora  |  Body: Inter  |  Labels: JetBrains Mono
   ======================================================================== */

:root {
  /* Color */
  --navy-900: #241246;
  --navy-800: #3B1E78;
  --navy-700: #55299E;
  --navy-600: #7C3AED;
  --orange-500: #9333EA;
  --orange-400: #B565F0;
  --orange-100: #F1E4FF;
  --cream-50: #F6F6FC;
  --cream-100: #F1ECFB;
  --white: #FFFFFF;
  --ink-900: #1B1933;
  --ink-600: #5B5570;
  --ink-400: #948EAD;
  --border: #E8E1F5;

  /* Type */
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --max-w: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: url('img/photos/site-bg.jpg') no-repeat center top / cover fixed;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-800);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
p { margin: 0; line-height: 1.7; color: var(--ink-600); }

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

:focus-visible {
  outline: 2.5px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--orange-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.18s ease; }
.btn:hover svg { transform: translate(2px, -2px); }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(240, 121, 59, 0.6);
}
.btn-primary:hover { background: #e2692c; }

.btn-dark {
  background: var(--navy-800);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-900); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--navy-800);
}
.btn-outline:hover { border-color: var(--navy-700); }

.btn-outline-light {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.14); }

.btn-sm { padding: 11px 20px; font-size: 13.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
  gap: 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-family: var(--font-display);
  color: var(--navy-800);
  flex-shrink: 0;
}
.brand-row { display: flex; align-items: center; gap: 11px; }
.brand-word { font-weight: 800; font-size: 25px; line-height: 1; letter-spacing: -0.01em; }
.brand-logo { height: 36px; width: auto; display: block; }
.footer-brand .brand-logo { height: 34px; }
.brand-mark { width: 42px; height: 42px; display: flex; flex-shrink: 0; }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand .accent { color: var(--orange-500); }
.brand-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 53px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.brand-tagline .rule { width: 14px; height: 1px; background: var(--ink-400); opacity: 0.45; flex-shrink: 0; }

/* ---------- Header-only navy CTA (rest of the site keeps the orange primary button) ---------- */
.btn-navy {
  background: var(--navy-800);
  color: var(--white);
  border-radius: 10px;
}
.btn-navy:hover { background: var(--navy-900); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-600);
  transition: color 0.15s ease;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--navy-800); }
.main-nav a.active { color: var(--navy-800); font-weight: 600; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block;
  width: 20px; height: 2px;
  background: var(--navy-800);
  position: relative;
  transition: 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.bg-cream { background: var(--cream-50); }
.bg-navy { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.72); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 18px; }
.section-head p { font-size: 17px; }

/* ---------- Grid utilities ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Icon tile ---------- */
.icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-tile svg { width: 24px; height: 24px; stroke: var(--orange-500); }
.icon-tile.on-dark { background: rgba(255,255,255,0.08); }
.icon-tile.on-dark svg { stroke: var(--orange-400); }
.icon-tile.navy { background: var(--navy-800); }
.icon-tile.navy svg { stroke: var(--white); }

/* ---------- Simple value cards ---------- */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
}
.value-card h3 { font-size: 19px; margin: 16px 0 10px; }
.value-card p { font-size: 15px; }

/* ---------- Pathway row (alternating image/text) ---------- */
.pathway-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.pathway-row:last-child { border-bottom: none; }
.pathway-row.reverse .pathway-media { order: 2; }
.pathway-row.reverse .pathway-copy { order: 1; }
.pathway-copy .eyebrow { margin-bottom: 10px; }
.pathway-copy h3 { font-size: 27px; margin-bottom: 14px; }
.pathway-copy p { font-size: 16px; margin-bottom: 22px; }
.pathway-media { border-radius: var(--radius-lg); overflow: hidden; }

/* ---------- Illustration frame (replaces photography) ---------- */
.art-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--navy-700) 0%, var(--navy-900) 100%);
  display: flex; align-items: center; justify-content: center;
}
.art-frame.light { background: linear-gradient(150deg, #F2EDFF 0%, #F8F5FF 100%); }
.art-frame svg { width: 62%; height: 62%; }
.art-frame .grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}

/* ---------- Feature list numbered ---------- */
.principle {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px;
  margin-bottom: 22px;
}
.principle .num {
  font-family: var(--font-mono);
  color: var(--orange-500);
  font-size: 14px;
  font-weight: 700;
}
.principle h3 { font-size: 21px; margin-bottom: 12px; }
.principle p { font-size: 15.5px; margin-bottom: 10px; }
.principle p:last-child { margin-bottom: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  text-align: center;
  background: radial-gradient(circle at 30% 20%, var(--navy-600), var(--navy-900) 65%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: scroll-left 34s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 44px;
}
.marquee-track span::after { content: "+"; color: var(--orange-400); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards grid (2x2 explore more) ---------- */
.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.mini-card .icon-tile { margin-bottom: 16px; width: 44px; height: 44px; border-radius: 12px; }
.mini-card .icon-tile svg { width: 20px; height: 20px; }
.mini-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.mini-card p { font-size: 14px; }

/* ---------- Newsletter bar ---------- */
.newsletter-bar {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.newsletter-bar h4 { color: var(--white); font-size: 19px; margin-bottom: 8px; }
.newsletter-bar p { font-size: 14px; max-width: 440px; margin: 0; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  min-width: 240px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--orange-500); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 32px;
  padding: 52px 0;
}
.footer-brand .brand { flex-direction: row; align-items: center; gap: 10px; color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a { display: block; font-size: 14.5px; padding: 6px 0; color: rgba(255,255,255,0.75); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--orange-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Hero ---------- */
.hero { padding: 64px 0 0; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--navy-800), var(--navy-900) 70%); color: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 50px; align-items: center; padding-bottom: 70px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 4.4vw, 54px); color: var(--white); margin-bottom: 22px; }
.hero h1 .accent { color: var(--orange-400); }
.hero p.lead { color: rgba(255,255,255,0.72); font-size: 17.5px; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-caption { font-size: 13.5px; color: rgba(255,255,255,0.45); }
.hero-visual { position: relative; }
.hero-tag {
  position: absolute;
  background: var(--white);
  color: var(--navy-800);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600;
}
.hero-tag.tag-1 { top: 18px; right: -14px; background: var(--orange-500); color: var(--white); }
.hero-tag.tag-2 { bottom: -16px; left: -10px; }
.hero-tag .tag-num { font-family: var(--font-display); font-size: 20px; font-weight: 700; display: block; }
.hero-tag .tag-label { font-size: 12px; color: var(--ink-400); font-weight: 500; }

/* ---------- Page header (sub-pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  padding: 84px 0 64px;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 18px; max-width: 720px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 620px; }
.breadcrumb { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.breadcrumb .accent { color: var(--orange-400); }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--navy-800); }
.stat .label { font-size: 13.5px; color: var(--ink-400); margin-top: 4px; }

/* ---------- Age stage card ---------- */
.stage-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.stage-badge .icon-tile { width: 40px; height: 40px; border-radius: 11px; }
.stage-badge .icon-tile svg { width: 18px; height: 18px; }
.stage-badge .name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--navy-800); }
.stage-badge .ages {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  background: var(--cream-100); color: var(--navy-700);
  padding: 4px 10px; border-radius: var(--radius-pill); font-weight: 600;
}
.standards-box {
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin-top: 22px;
}
.standards-box .label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--orange-500); font-weight: 700; display: block; margin-bottom: 8px; }
.standards-box p { font-size: 14px; }

/* ---------- Program intro hero (light, photo-led) ---------- */
.program-hero {
  background: var(--cream-50);
  padding: 56px 0 64px;
}
.program-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.program-hero h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 18px; }
.program-hero p { font-size: 17px; max-width: 460px; }
.program-hero-photo { position: relative; }
.program-hero-photo .photo-placeholder { aspect-ratio: 6 / 5; border-radius: var(--radius-lg); }

/* ---------- Photo slot: drop a real file in and it just works; shows placeholder until then ---------- */
.photo-slot { position: relative; width: 100%; height: 100%; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-slot .photo-placeholder { display: none; position: absolute; inset: 0; }
.photo-slot.img-missing img { display: none; }
.photo-slot.img-missing .photo-placeholder { display: flex; }

/* ---------- Photo placeholder (shown until a real photo is dropped in) ---------- */
.photo-placeholder {
  background: linear-gradient(150deg, var(--cream-100), var(--white));
  border: 1.5px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-400);
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 100%;
}
.photo-placeholder svg { width: 30px; height: 30px; opacity: 0.5; stroke: var(--navy-700); }
.photo-placeholder .fname {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: var(--navy-700);
}

/* ---------- Program card grid ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -20px rgba(36,18,70,0.18); }
.program-card-photo { position: relative; aspect-ratio: 4 / 3; }
.program-card-photo .art-frame { position: absolute; inset: 0; aspect-ratio: unset; }
.program-badge {
  position: absolute;
  left: 14px; bottom: -18px;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 16px -6px rgba(36,18,70,0.4);
}
.program-badge svg { width: 20px; height: 20px; stroke: #fff; }
.program-card-body { padding: 28px 16px 20px; }
.program-card-body h3 { font-size: 16.5px; margin-bottom: 8px; line-height: 1.25; }
.program-card-body p { font-size: 13.5px; margin-bottom: 14px; }
.grade-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ---------- Responsive: program grid ---------- */
@media (max-width: 1240px) {
  .program-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .program-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Project card ---------- */
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -20px rgba(20,17,55,0.22); }
.project-card .art-frame { border-radius: 0; aspect-ratio: 16/11; }
.project-card .body { padding: 24px; }
.project-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange-500); font-weight: 700; margin-bottom: 10px; display: block;
}
.project-card h3 { font-size: 18px; margin-bottom: 8px; }
.project-card p { font-size: 14px; }
.project-meta { display: flex; gap: 14px; margin-top: 16px; font-size: 12.5px; color: var(--ink-400); font-family: var(--font-mono); }

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--navy-800); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-900);
  transition: border-color 0.15s ease;
  background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange-500);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--ink-400); margin-top: 14px; }

.contact-info-card {
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
}
.contact-info-card h3 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.68); font-size: 14.5px; }
.contact-line { display: flex; gap: 12px; align-items: flex-start; margin-top: 20px; }
.contact-line svg { width: 18px; height: 18px; stroke: var(--orange-400); flex-shrink: 0; margin-top: 2px; }
.contact-line span { font-size: 14px; color: rgba(255,255,255,0.85); }

/* ---------- Team / values (about) ---------- */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ---------- Founder cards ---------- */
.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 32px 30px;
  text-align: center;
}
.founder-photo {
  width: 256px;
  height: 256px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}
.founder-body { padding: 0; }
.founder-photo .photo-placeholder { padding: 8px; gap: 4px; }
.founder-photo .photo-placeholder svg { width: 18px; height: 18px; }
.founder-photo .photo-placeholder span { font-size: 9px; }
.founder-photo .photo-placeholder .fname { padding: 2px 6px; font-size: 8px; }
/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Mobile nav open state ---------- */
@media (max-width: 1240px) {
  .main-nav.nav-open {
    display: flex;
    position: absolute;
    top: 108px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 10px 32px 22px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 30px -20px rgba(20,17,55,0.2);
  }
  .main-nav.nav-open a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .main-nav.nav-open a:last-child { border-bottom: none; }
}

/* ---------- Nav collapses earlier than general layout (9 links need more room) ---------- */
@media (max-width: 1240px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-2, .hero-grid, .about-block, .founder-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .newsletter-bar { flex-direction: column; align-items: flex-start; }
  .pathway-row { grid-template-columns: 1fr; padding: 36px 0; }
  .pathway-row.reverse .pathway-media { order: 1; }
  .pathway-row.reverse .pathway-copy { order: 2; }
  .principle { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero-tag { display: none; }
}
@media (max-width: 620px) {
  .grid-3, .grid-4, .stat-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .wrap { padding: 0 20px; }
  .cta-banner { padding: 46px 24px; }
  .site-header .wrap { height: 84px; }
  .brand-tagline { display: none; }
  .brand-word { font-size: 20px; }
  .brand-mark { width: 34px; height: 34px; }
  .main-nav.nav-open { top: 84px; }
}
