:root {
  --ink: #0b1521;
  --fairway: #1d3a5a;
  --canopy: #203f62;
  --moss: #006feb;
  --sage: #3c8fee;
  --cream: #ffffff;
  --sand: #f3f5f6;
  --paper: #ffffff;
  --muted: #587089;
  --fg: #ffffff;
  --fg-muted: #d5dbe1;
  --border: rgba(11, 21, 33, 0.1);
  --shadow: 0 0 0 1px rgba(11, 21, 33, 0.08), 0 1px 2px -1px rgba(11, 21, 33, 0.08),
    0 12px 32px -16px rgba(11, 21, 33, 0.18);
  --font: "DM Sans", Helvetica, Arial, sans-serif;
  --max: 80rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .wrap { padding-left: 2rem; padding-right: 2rem; }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
}
.heading { margin-top: 0.75rem; font-size: 2.25rem; line-height: 1.12; }
@media (min-width: 768px) { .heading { font-size: 3rem; } }
.heading.light { color: var(--ink); }
.heading.dark { color: #fff; }
.lede {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 42rem;
}
.lede.wide { max-width: none; }
.lede.on-dark { color: var(--fg-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  transition: background 0.15s, color 0.15s;
}
.btn-lg { height: 3.25rem; padding: 0 1.5rem; }
.btn-moss { background: var(--moss); color: #fff; }
.btn-moss:hover { background: #0166d7; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(11,21,33,0.18);
}
.btn-outline:hover { background: var(--sand); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.photo {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-mosaic {
  display: grid;
  grid-template-columns: repeat(5, minmax(8rem, 1fr));
  gap: 0.4rem;
  padding: 0.75rem 1.25rem 1rem;
  overflow-x: auto;
}
@media (min-width: 768px) {
  .home-mosaic { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 900px) {
  .home-mosaic {
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
  }
}
.home-mosaic .photo {
  aspect-ratio: 4 / 3;
  background: var(--ink);
}
.home-mosaic .photo img { object-fit: cover; }
@media (max-width: 767px) {
  .home-mosaic-5 {
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
  }
  .home-mosaic-5 .mosaic-desktop-only { display: none; }
  .home-mosaic-5 .mosaic-studio { order: 1; }
  .home-mosaic-5 .mosaic-team { order: 2; }
  .home-mosaic-5 .mosaic-bag { order: 3; }
}
.rounded { border-radius: 0.75rem; }
.shadow { box-shadow: var(--shadow); }

/* Header */
.topbar {
  background: var(--ink);
  color: #fff;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
}
.topbar p { color: var(--fg-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar a { color: var(--sage); font-weight: 600; text-decoration: none; flex-shrink: 0; }
.topbar a:hover { color: #fff; }

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.25rem;
}
@media (min-width: 768px) { .nav-inner { height: 4.75rem; } }
.logo img {
  height: 2.75rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left;
}
@media (min-width: 640px) { .logo img { height: 3rem; max-width: 260px; } }
@media (min-width: 768px) { .logo img { height: 3.25rem; max-width: 320px; } }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-cta { display: none; align-items: center; gap: 1rem; }
.nav-cta .phone { font-size: 0.875rem; font-weight: 500; color: var(--muted); text-decoration: none; }
.nav-cta .phone:hover { color: var(--ink); }
@media (min-width: 1024px) {
  .nav-links, .nav-cta { display: flex; }
  .menu-btn { display: none; }
}
.nav-links a, .nav-links button.drop-btn {
  border: 0;
  background: none;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}
.nav-links a:hover, .nav-links button.drop-btn:hover,
.nav-links a.active { color: var(--ink); }
.drop { position: relative; }
.drop-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 50;
  width: 18rem;
  padding-top: 0.5rem;
}
.drop:hover .drop-menu, .drop.open .drop-menu { display: block; }
.drop-menu div {
  background: var(--paper);
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  box-shadow: 0 16px 40px -20px rgba(11,21,33,0.45);
  ring: 1px solid rgba(11,21,33,0.1);
  border: 1px solid rgba(11,21,33,0.08);
}
.drop-menu a {
  display: block;
  border-radius: 0;
  padding: 0.65rem 1rem;
}
.drop-menu a:hover { background: var(--sand); }
.menu-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: none;
  font-size: 1.4rem;
  color: var(--ink);
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.25rem;
}
.mobile-nav.open { display: block; }
.mobile-nav .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.25rem 0;
}
.mobile-nav a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.mobile-nav a.indent { padding-left: 0.75rem; }
.mobile-nav a.apply { font-weight: 600; color: var(--moss); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero-page { min-height: 32rem; }
@media (min-width: 768px) { .hero-page { min-height: 42rem; } }
.hero-media { position: absolute; inset: 0; }
.hero-media iframe, .hero-media img.poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.hero-media.contain { display: flex; align-items: center; justify-content: center; }
.hero-media.contain .frame {
  position: relative;
  aspect-ratio: 16/9;
  height: 100%;
  width: auto;
  max-width: 100%;
}
.hero-media.contain iframe, .hero-media.contain img.poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 18%, rgba(11,21,33,0.45), rgba(11,21,33,0.2));
}
.hero-copy {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 1.25rem 6rem;
}
@media (min-width: 768px) { .hero-copy { padding-left: 2rem; padding-right: 2rem; padding-bottom: 7rem; } }
.hero h1 {
  margin-top: 0.75rem;
  max-width: 48rem;
  font-size: 2.5rem;
  line-height: 1.05;
  color: #fff;
}
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
.hero .sub {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.hero-copy-wide h1,
.hero-copy-wide .sub { max-width: none; }
.mute-btn {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 5;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 0;
  background: rgba(11,21,33,0.6);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}
.hero:not(.hero-page) > .mute-btn {
  top: 1.25rem;
  bottom: auto;
}
@media (max-width: 767px) {
  .hero:not(.hero-page) {
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .hero:not(.hero-page) .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
  }
  .hero:not(.hero-page) .hero-shade { display: none; }
  .hero:not(.hero-page) .hero-copy {
    min-height: 0;
    justify-content: flex-start;
    padding: 1.5rem 1.25rem 2rem;
  }
  .hero:not(.hero-page) > .mute-btn {
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* Layout helpers */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.bg-paper { background: var(--paper); color: var(--ink); }
.bg-sand { background: var(--sand); color: var(--ink); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-fairway { background: var(--fairway); color: #fff; }
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  padding: 2.5rem 0.5rem;
  text-align: center;
  justify-items: center;
}
@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, 1fr); padding: 3.5rem 0; gap: 1.5rem; }
}
.stat-value { font-size: 1.875rem; font-weight: 700; color: var(--moss); }
@media (min-width: 768px) { .stat-value { font-size: 2.25rem; } }
.stat-label { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); max-width: 12rem; line-height: 1.35; margin-left: auto; margin-right: auto; }
.stats.climate {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 3.25rem 0;
  gap: 2rem;
}
@media (min-width: 640px) {
  .stats.climate { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.stats.climate .stat-value { color: #fff; font-size: 2.75rem; letter-spacing: -0.03em; }
@media (min-width: 768px) {
  .stats.climate .stat-value { font-size: 3.25rem; }
}
.stats.climate .stat-label {
  color: rgba(255,255,255,0.72);
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.subnav {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 4.25rem;
  z-index: 30;
}
@media (min-width: 768px) {
  .subnav { top: 4.75rem; }
}
.subnav .wrap { display: flex; gap: 0.25rem; overflow-x: auto; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.subnav a {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--moss);
  text-decoration: none;
}
.subnav a:hover { color: #0166d7; }

.grid-2 { display: grid; gap: 3rem; align-items: center; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.card .cap { padding: 1.5rem; }
.card h3 { font-size: 1.5rem; }
.card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: rgba(29,58,90,0.8); }
.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
}
.dots li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.dots li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--moss);
}

.pillars {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--border);
}
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars { grid-template-columns: 1fr 1fr 1fr; } }
.pillar { background: var(--fairway); padding: 1.5rem 2rem; }
.pillar .num { font-size: 1.875rem; color: rgba(60,143,238,0.8); font-weight: 700; }
.pillar h3 { margin-top: 0.75rem; font-size: 1.5rem; color: var(--cream); }
.pillar p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--fg-muted); }

.quote-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 0 0.5rem;
  flex: 1 0 100%;
  order: -1;
}
.quote-row::-webkit-scrollbar { display: none; }
.quote {
  flex: 0 0 min(22rem, 85vw);
  scroll-snap-align: start;
  background: var(--fairway);
  border-radius: 0.75rem;
  padding: 2rem;
}
.quote p { font-size: 1.25rem; font-style: italic; color: #fff; line-height: 1.35; }
.quote footer { margin-top: 1.5rem; font-size: 0.875rem; color: var(--fg-muted); }
.carousel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}
.carousel .arrow {
  position: static;
  z-index: 10;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: none;
}
.carousel .arrow:hover { background: var(--sand); }
.carousel .arrow.prev { left: auto; }
.carousel .arrow.next { right: auto; }

.tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.5rem; }
.tab {
  height: 2.75rem;
  border-radius: 999px;
  padding: 0 1.25rem;
  border: 0;
  background: transparent;
  color: var(--fg-muted);
  box-shadow: 0 0 0 1px var(--border);
  font-size: 0.875rem;
  font-weight: 500;
}
.tab.on { background: #fff; color: var(--ink); box-shadow: none; }
.benefit { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.benefit h4 { color: #fff; font-weight: 500; }
.benefit p { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.6; color: var(--fg-muted); }
.tick {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--sage);
}
.pane-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .pane-split { grid-template-columns: 1.1fr 0.9fr; }
}

.school-logos { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1rem; }
.school-logos img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.price-table { overflow: hidden; border-radius: 0.75rem; background: #fff; box-shadow: var(--shadow); }
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.price-row.head {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.video { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 0.75rem; background: var(--fairway); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.form label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.35rem; }
.form .field { margin-top: 1rem; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: #fff;
}
.form textarea { min-height: 8rem; }
.form .note { margin-top: 0.75rem; color: #b42318; font-size: 0.875rem; }
.form .ok { margin-top: 1.5rem; background: var(--sand); border-radius: 0.75rem; padding: 2rem; }

.schedule li {
  display: flex;
  gap: 1rem;
  background: var(--fairway);
  padding: 1rem 1.25rem;
  color: #fff;
}
.schedule time { font-size: 1.5rem; font-weight: 700; color: var(--sage); min-width: 4.5rem; }

/* Footer */
footer.site {
  background: var(--ink);
  color: #fff;
}
footer.site .grid {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (min-width: 768px) { footer.site .grid { grid-template-columns: 2fr 1fr 1fr; } }
footer.site .logo img { background: #fff; border-radius: 0.25rem; }
footer.site p, footer.site a { color: var(--fg-muted); font-size: 0.875rem; line-height: 1.6; text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site .col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}
footer.site ul { margin-top: 0.75rem; }
footer.site li { margin-top: 0.5rem; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .legal { flex-direction: row; justify-content: space-between; align-items: center; }
}
.social { display: flex; gap: 0.65rem; align-items: center; }
footer.site .social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
footer.site .social a:hover { background: var(--moss); color: #fff; }
.social svg { width: 1.2rem; height: 1.2rem; display: block; }

/* Chat */
.chat-dock {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
}
.chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 3.5rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px -8px rgba(0,111,235,0.7);
}
.chat-panel {
  display: none;
  flex-direction: column;
  width: min(22.5rem, calc(100vw - 1.5rem));
  height: min(32rem, 72svh);
  margin-bottom: 0.75rem;
  background: #fff;
  color: var(--ink);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 48px -16px rgba(11,21,33,0.45);
  border: 1px solid rgba(11,21,33,0.08);
}
.chat-panel.open { display: flex; }
.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--moss);
  color: #fff;
  padding: 0.85rem 1rem;
}
.chat-head strong { display: block; font-size: 0.95rem; }
.chat-head p { font-size: 0.75rem; color: rgba(255,255,255,0.9); margin-top: 0.2rem; }
.chat-head button { border: 0; background: none; color: #fff; font-size: 1.1rem; }
.chat-gate { padding: 1rem 1.1rem 1.25rem; overflow-y: auto; flex: 1; }
.chat-gate[hidden] { display: none; }
.chat-gate .req { font-size: 0.7rem; color: var(--muted); text-align: right; margin-bottom: 0.75rem; }
.chat-gate label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.65rem 0 0.3rem;
}
.chat-gate input,
.chat-gate select {
  width: 100%;
  height: 2.6rem;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  padding: 0 0.75rem;
  font: inherit;
  background: #fff;
}
.chat-gate input:focus,
.chat-gate select:focus { outline: 2px solid var(--moss); border-color: var(--moss); }
.chat-gate button[type="submit"] {
  width: 100%;
  margin-top: 1.15rem;
  height: 2.85rem;
  border: 0;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.chat-gate button[type="submit"]:hover { background: #0166d7; }
.chat-body { display: none; flex-direction: column; flex: 1; min-height: 0; }
.chat-body.open { display: flex; }
.chat-log { flex: 1; overflow-y: auto; padding: 0.75rem; }
.bubble { max-width: 85%; padding: 0.5rem 0.9rem; border-radius: 1rem; font-size: 0.875rem; line-height: 1.5; white-space: pre-wrap; margin: 0.4rem 0; }
.bubble.bot { background: var(--sand); border-bottom-left-radius: 0.35rem; }
.bubble.user { background: var(--moss); color: #fff; margin-left: auto; border-bottom-right-radius: 0.35rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.chips button {
  border: 0;
  background: #fff;
  box-shadow: 0 0 0 1px var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.chat-form { display: flex; gap: 0.5rem; border-top: 1px solid var(--border); padding: 0.75rem; }
.chat-form input {
  flex: 1;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--sand);
  padding: 0 1rem;
  font: inherit;
}
.chat-form button {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
}

.aspect-video { aspect-ratio: 16/10; }
.aspect-43 { aspect-ratio: 4/3; }
.aspect-34 { aspect-ratio: 3/4; max-height: 18rem; }
.aspect-hero { aspect-ratio: 5/4; }
.hidden-lg { }
@media (min-width: 1024px) { .show-lg { display: block; } }
.center { text-align: center; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.fairway-text { color: rgba(29,58,90,0.8); font-size: 1rem; line-height: 1.65; }
.muted { color: var(--muted); font-size: 0.875rem; }
.team-bio { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: rgba(29,58,90,0.8); }
.team-bio p + p { margin-top: 0.75rem; }
.role { margin-top: 0.25rem; font-size: 0.875rem; color: var(--moss); }
.founders {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .founders { grid-template-columns: 1fr 1fr; }
}
.staff-list { display: flex; flex-direction: column; gap: 2.75rem; margin-top: 2.5rem; }
.staff {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .staff { grid-template-columns: 15rem 1fr; }
}
.staff .team-bio, .founders .team-bio {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.pullquote {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--moss);
  font-style: italic;
  color: var(--fairway);
  line-height: 1.55;
}
.pullquote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
}
cta-band { position: relative; min-height: 28rem; overflow: hidden; }
.overlay-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-inner {
  position: relative;
  min-height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  text-align: center;
}
.cta-inner h2 { font-size: 2.25rem; color: #fff; }
@media (min-width: 768px) { .cta-inner h2 { font-size: 3.75rem; } }

.scroll-mt { scroll-margin-top: 7.5rem; }
@media (min-width: 768px) { .scroll-mt { scroll-margin-top: 8rem; } }
