/* ============================================================
   Maritime Behavioral Health Management — 2026 redesign
   VARIANT 2 · Maritime brand colors (teal / ice / slate), image-forward
   ============================================================ */

:root {
  --teal: #3aa6b9;
  --teal-deep: #2997aa;
  --teal-dark: #19768a;
  --ice: #e9f8f9;
  --ice-2: #cae6e8;
  --slate: #0f172a;
  --slate-soft: #454f5e;
  --white: #ffffff;
  --bg: #f8fcfd;
  --line: #d8ebee;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", sans-serif;

  --max: 1180px;
  --pad: clamp(20px, 5vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--teal); color: var(--white); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- type ---------- */
h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--teal);
  opacity: 0.8;
}

/* ---------- header ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.head-logo img { height: 42px; width: auto; }
.head-nav { display: flex; align-items: center; gap: 34px; }
.head-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--slate-soft);
  transition: color 0.2s;
}
.head-nav a:hover, .head-nav a.on { color: var(--teal-deep); }
.head-cta {
  border: 1px solid var(--teal);
  color: var(--teal-deep) !important;
  padding: 10px 22px;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.head-cta:hover { background: var(--teal); color: var(--white) !important; }

.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--slate); margin: 5px 0; transition: 0.3s; }

@media (max-width: 900px) {
  .nav-burger { display: block; }
  .head-nav {
    position: fixed;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 28px var(--pad) 36px;
    gap: 22px;
    display: none;
  }
  .head-nav.open { display: flex; }
}

/* ---------- hero (photo) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
  background: var(--slate);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.62) 46%, rgba(25, 118, 138, 0.35) 100%),
    linear-gradient(rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.35));
}
.hero-inner { position: relative; z-index: 2; }
.hero .kicker { color: var(--ice-2); }
.hero .kicker::before { background: var(--teal); }
.hero h1 {
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 1.04;
  max-width: 15ch;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: #7fd4e4;
}
.hero-sub {
  margin-top: 32px;
  max-width: 56ch;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
  color: rgba(233, 248, 249, 0.85);
  font-weight: 300;
}
.hero-ctas { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--teal);
  color: var(--white);
  background: var(--teal);
  transition: all 0.25s;
}
.btn:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.btn.ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn.ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.12); }
.sec .btn.ghost, .brand-band .btn.ghost {
  color: var(--teal-dark);
  border-color: var(--teal);
}
.sec .btn.ghost:hover, .brand-band .btn.ghost:hover {
  background: var(--teal);
  color: var(--white);
}

/* ---------- stat band ---------- */
.stats {
  background: linear-gradient(96deg, var(--teal-dark), var(--teal) 60%, var(--teal-deep));
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat {
  padding: 46px 30px 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.stat:first-child { border-left: 0; }
.stat b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  color: var(--white);
}
.stat b i { font-style: normal; color: var(--ice-2); }
.stat span {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 900px) {
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,0.25); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.25); }
}

/* ---------- generic section ---------- */
.sec { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.sec-light { background: var(--ice); }
.sec h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.12;
  max-width: 22ch;
  color: var(--slate);
}
.sec .lede {
  margin-top: 26px;
  max-width: 62ch;
  font-size: 17px;
  color: var(--slate-soft);
}

.cols-2 {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 900px) { .cols-2 { grid-template-columns: 1fr; } }

.prose p { margin-bottom: 1.3em; color: var(--slate-soft); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--teal-dark); font-weight: 600; }

/* side photo used in text columns */
.side-photo {
  margin-top: 34px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
}
.side-photo img { width: 100%; height: auto; }
.photo-cap {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-soft);
  opacity: 0.75;
}

/* ---------- continuum ---------- */
.continuum { margin-top: clamp(50px, 7vw, 80px); }
.cont-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.cont-track::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(58, 166, 185, 0.25));
}
.cont-step { padding: 0 26px 0 0; position: relative; }
.cont-step::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  background: var(--white);
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}
.cont-step.filled::before { background: var(--teal); }
.cont-step h3 { font-size: 21px; color: var(--slate); margin-bottom: 10px; }
.cont-step p { font-size: 14px; line-height: 1.65; color: var(--slate-soft); }
.cont-step .cont-brands {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
}
@media (max-width: 900px) {
  .cont-track { grid-template-columns: 1fr; gap: 38px; }
  .cont-track::before { display: none; }
}

/* ---------- portfolio grid (photo cards) ---------- */
.folio-grid {
  margin-top: clamp(50px, 7vw, 76px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 900px) { .folio-grid { grid-template-columns: 1fr; } }

.folio-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.folio-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--acc, var(--teal));
  z-index: 3;
}
.folio-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}
.folio-photo {
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: var(--ice);
}
.folio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.folio-card:hover .folio-photo img { transform: scale(1.045); }
.folio-body { padding: 32px 36px 34px; display: flex; flex-direction: column; flex: 1; }
.folio-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.folio-logo {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 7px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.folio-logo.dark { background: var(--slate); border-color: var(--slate); }
.folio-logo img { max-height: 100%; width: auto; max-width: 160px; object-fit: contain; }
.folio-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--ice);
  border: 1px solid var(--ice-2);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.folio-card h3 { font-size: 25px; color: var(--slate); margin-bottom: 6px; }
.folio-loc {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-soft);
  opacity: 0.8;
  margin-bottom: 16px;
}
.folio-card p { font-size: 14.5px; line-height: 1.7; color: var(--slate-soft); flex: 1; }
.folio-more {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.folio-more::after { content: "→"; transition: transform 0.25s; }
.folio-card:hover .folio-more::after { transform: translateX(5px); }

/* ---------- values ---------- */
.values-grid {
  margin-top: clamp(46px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  border-top: 3px solid var(--teal);
  background: var(--white);
  padding: 40px 36px 44px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.07);
}
.value-card .vnum {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--teal-deep);
  display: block;
  margin-bottom: 20px;
}
.value-card h3 { font-size: 24px; color: var(--slate); margin-bottom: 16px; }
.value-card p { font-size: 14.5px; line-height: 1.75; color: var(--slate-soft); }

/* ---------- team ---------- */
.team-grid {
  margin-top: clamp(46px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
.person {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.person:hover { border-color: var(--teal); box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12); }
.person figure {
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: var(--ice);
}
.person figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.35s, transform 0.6s;
}
.person:hover figure img { filter: grayscale(0%); transform: scale(1.03); }
.person figcaption { padding: 20px 22px 24px; }
.person b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--slate);
}
.person span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
}

/* ---------- CTA band (photo) ---------- */
.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(90px, 11vw, 140px) 0;
  overflow: hidden;
  background: var(--slate);
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 23, 42, 0.78), rgba(25, 118, 138, 0.72));
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { margin: 0 auto; color: var(--white); }
.cta-band .lede { margin-left: auto; margin-right: auto; color: rgba(233, 248, 249, 0.88); }
.cta-band .kicker { justify-content: center; color: var(--ice-2); }
.cta-band .kicker::before { display: none; }
.cta-band .btn { margin-top: 44px; }
.cta-band .btn:hover { background: var(--white); border-color: var(--white); color: var(--teal-dark); }

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  padding: 190px 0 90px;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(58, 166, 185, 0.16), transparent 60%),
    linear-gradient(var(--ice), var(--bg));
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.06;
  color: var(--slate);
  max-width: 18ch;
}
.page-hero .lede {
  margin-top: 26px;
  max-width: 62ch;
  font-size: 17px;
  color: var(--slate-soft);
}

/* ---------- photo strip band ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.photo-strip img { width: 100%; height: 280px; object-fit: cover; border-radius: 4px; }
@media (max-width: 800px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 220px; }
}

/* ---------- footer ---------- */
.site-foot {
  background: var(--slate);
  color: var(--ice);
  padding: 76px 0 46px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr; } }
.site-foot img { height: 44px; width: auto; margin-bottom: 22px; }
.site-foot p { font-size: 13.5px; line-height: 1.7; color: rgba(233, 248, 249, 0.6); max-width: 34ch; }
.foot-h {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7fd4e4;
  margin-bottom: 20px;
}
.site-foot ul { list-style: none; }
.site-foot li { margin-bottom: 12px; }
.site-foot li a, .site-foot address {
  font-style: normal;
  font-size: 14px;
  color: rgba(233, 248, 249, 0.75);
  transition: color 0.2s;
  line-height: 1.7;
}
.site-foot li a:hover { color: var(--white); }
.foot-base {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(233, 248, 249, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(233, 248, 249, 0.45);
}
.foot-base a { color: rgba(233, 248, 249, 0.6); }
.foot-base a:hover { color: var(--white); }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.c-block { margin-bottom: 38px; }
.c-block .foot-h { margin-bottom: 12px; color: var(--teal-deep); }
.c-block p, .c-block a { font-size: 17px; color: var(--slate-soft); line-height: 1.7; }
.c-block a:hover { color: var(--teal-deep); }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(30px, 4vw, 50px);
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.08);
}
.form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin: 0 0 8px;
}
.form input, .form textarea, .form select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--slate);
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  margin-bottom: 24px;
  outline: none;
  border-radius: 3px;
  transition: border-color 0.2s;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--teal); }
.form textarea { min-height: 140px; resize: vertical; }

/* ---------- reveal animation ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- platform detail bands ---------- */
.brand-band { padding: clamp(64px, 8vw, 100px) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.brand-band:nth-of-type(even) { background: var(--ice); }
.brand-band:last-of-type { border-bottom: 0; }
.brand-band .cols-2 { align-items: start; }
.bb-meta { position: sticky; top: 110px; }
.bb-logo {
  height: 64px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 26px;
}
.bb-logo.dark { background: var(--slate); border-color: var(--slate); }
.bb-logo img { max-height: 100%; width: auto; max-width: 210px; object-fit: contain; }
.bb-meta h2 { font-size: clamp(28px, 3vw, 38px); color: var(--slate); }
.bb-facts { margin-top: 26px; border-top: 1px solid var(--ice-2); }
.bb-fact { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--ice-2); font-size: 13px; }
.bb-fact span { letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-soft); opacity: 0.8; font-size: 11px; padding-top: 2px; }
.bb-fact b { font-weight: 600; color: var(--slate); text-align: right; }
.bb-link { margin-top: 28px; display: inline-flex; }
@media (max-width: 900px) { .bb-meta { position: static; } }

.bb-photo {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
}
.bb-photo img { width: 100%; max-height: 400px; object-fit: cover; }

/* SVG logos have no intrinsic size — give them explicit width */
.folio-logo img[src$=".svg"] { width: 150px; height: auto; }
.bb-logo img[src$=".svg"] { width: 200px; height: auto; }

/* ---------- hero badges ---------- */
.hero-badges { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(255,255,255,0.45); border-radius: 100px;
  padding: 8px 18px; background: rgba(15,23,42,0.35); backdrop-filter: blur(4px);
}
.hero-badges span.hl { background: var(--teal); border-color: var(--teal); }

/* ---------- payer strip ---------- */
.payers { background: var(--white); border-bottom: 1px solid var(--line); padding: 40px 0 44px; }
.payers-line { text-align: center; font-size: 15px; color: var(--slate-soft); margin-bottom: 28px; }
.payers-line strong { color: var(--teal-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.payers-logos { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 4vw, 56px); flex-wrap: wrap; }
.payers-logos img { height: 34px; width: auto; filter: grayscale(100%); opacity: 0.62; transition: filter 0.3s, opacity 0.3s; }
.payers-logos img:hover { filter: grayscale(0%); opacity: 1; }
.payers-more { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-soft); opacity: 0.7; }

/* ---------- continuum matrix ---------- */
.matrix-scroll { margin-top: clamp(46px, 6vw, 70px); overflow-x: auto; }
.matrix { width: 100%; min-width: 760px; border-collapse: separate; border-spacing: 6px; }
.matrix th {
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--slate-soft); padding: 10px 8px; text-align: center;
}
.matrix th.svc { text-align: left; font-size: 13px; color: var(--slate); width: 168px; }
.matrix td {
  background: var(--white); border: 1px solid var(--line); border-radius: 5px;
  padding: 16px 12px; text-align: center; vertical-align: middle; min-height: 74px;
}
.matrix td.hit { background: var(--ice); border-color: var(--ice-2); }
.matrix td.hit::before { content: "✓"; display: block; color: var(--teal-deep); font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.matrix td .who { display: block; font-size: 11.5px; line-height: 1.5; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-dark); font-weight: 600; }
.matrix td .plus { display: block; margin-top: 4px; font-size: 10.5px; color: var(--slate-soft); letter-spacing: 0.04em; }
.matrix td.na { color: var(--ice-2); font-size: 18px; background: transparent; border-style: dashed; }
.matrix th.rowh {
  text-align: left; padding-right: 18px;
}
.matrix th.rowh b { display: block; font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--slate); letter-spacing: 0; text-transform: none; }
.matrix th.rowh span { display: block; margin-top: 4px; font-size: 10.5px; color: var(--slate-soft); letter-spacing: 0.1em; }
.matrix-notes { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 800px) { .matrix-notes { grid-template-columns: 1fr; } }
.mnote {
  border-left: 3px solid var(--teal); background: var(--white); border-radius: 0 5px 5px 0;
  padding: 18px 22px; font-size: 14px; line-height: 1.65; color: var(--slate-soft);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
}
.mnote b { color: var(--slate); }
.mnote .mtag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); background: var(--teal); border-radius: 100px; padding: 3px 10px; margin-bottom: 8px;
}
.mnote .mtag.soon { background: var(--slate-soft); }

/* ---------- footprint map ---------- */
.map-cols { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(40px, 6vw, 80px); align-items: center; margin-top: clamp(46px, 6vw, 70px); }
@media (max-width: 900px) { .map-cols { grid-template-columns: 1fr; } }
.map-box { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 20px; box-shadow: 0 18px 50px rgba(15, 23, 42, 0.09); }
.map-box svg { width: 100%; height: auto; display: block; }
.map-cap { margin-top: 10px; text-align: center; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-soft); opacity: 0.65; }
.geo-card {
  background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--teal);
  border-radius: 0 6px 6px 0; padding: 26px 30px; margin-bottom: 20px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}
.geo-card h3 { font-size: 21px; color: var(--slate); margin-bottom: 10px; }
.geo-card p { font-size: 14.5px; line-height: 1.7; color: var(--slate-soft); }
.geo-card p b { color: var(--teal-dark); }
.partner-logos { display: flex; gap: 26px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.pl-item { display: flex; align-items: center; gap: 12px; flex: 1 1 200px; }
.pl-item img { height: 44px; width: auto; flex-shrink: 0; }
.pl-item span { font-size: 10.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--slate-soft); line-height: 1.55; }

/* ---------- folio extras ---------- */
.folio-note {
  margin-top: 16px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--teal-dark); background: var(--ice); border: 1px solid var(--ice-2);
  border-radius: 5px; padding: 9px 13px; display: inline-block;
}
.folio-footnote { margin-top: 30px; font-size: 14px; color: var(--slate-soft); max-width: 76ch; line-height: 1.7; }
.folio-footnote b { color: var(--teal-dark); }
