:root {
  --navy: #1B2A41;
  --navy-deep: #131F30;
  --blue: #42CAFD;
  --blue-ink: #0D9ED9;
  --blue-tint: #EBF8FF;
  --blue-tint-2: #DCF2FE;
  --orange: #FF8811;
  --red: #EC0868;
  --purple: #631D76;
  --white: #FFFFFF;
  --bg: #FAFCFF;
  --slate: #51637E;
  --slate-light: #7C8DA6;
  --border: #E1EAF4;
  --shadow: 0 12px 44px rgba(27, 42, 65, 0.09);
  --shadow-sm: 0 4px 18px rgba(27, 42, 65, 0.07);
  --display: 'Figtree', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --radius: 22px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--navy);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--blue); color: var(--navy); }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
a { color: inherit; text-decoration: none; }
.mark { display: inline-block; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.status-live { display: flex; align-items: center; gap: 8px; color: var(--blue-ink); }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-ink);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(13,158,217,0.45); }
  70% { box-shadow: 0 0 0 8px rgba(13,158,217,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,158,217,0); }
}
.topbar a:hover { color: var(--navy); }

/* ---------- nav ---------- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
nav .wrap { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; }
.lockup { color: var(--blue); display: block; }
.logo .lockup { height: 34px; width: 163.5px; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--slate); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all 0.22s;
  cursor: pointer;
}
.btn-blue { background: var(--blue); color: var(--navy); }
.btn-blue:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-line { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-line:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--blue); transform: translateY(-1px); }
.nav-links .btn { padding: 11px 24px; font-size: 14.5px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 60%, var(--blue-tint) 100%);
}
.hero-mark {
  position: absolute;
  right: -200px; top: -160px;
  width: 660px; height: 660px;
  color: var(--blue);
  opacity: 0.07;
  transform: rotate(10deg);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-tint-2);
  color: var(--blue-ink);
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 30px;
}
h1 {
  font-size: clamp(44px, 6.2vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h1 em {
  font-style: normal;
  color: var(--blue-ink);
  position: relative;
  white-space: nowrap;
}
h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: var(--blue);
  opacity: 0.35;
  z-index: -1;
  border-radius: 4px;
}
.hero-sub { margin-top: 30px; font-size: 19.5px; color: var(--slate); max-width: 530px; }
.hero-sub strong { color: var(--navy); font-weight: 700; }
.hero-ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-phone { font-size: 15.5px; color: var(--slate); font-weight: 500; }
.hero-phone a { color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--blue); padding-bottom: 1px; }
.hero-phone a:hover { color: var(--blue-ink); }
.trust-row { margin-top: 44px; display: flex; gap: 26px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--slate); }
.tick {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}

/* ---------- vitals card ---------- */
.vitals {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.vitals-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 26px;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate);
}
.vitals-head .live { color: var(--blue-ink); display: flex; align-items: center; gap: 7px; }
.ecg-box { padding: 22px 26px 6px; }
.ecg { width: 100%; height: 64px; display: block; }
.ecg path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: ecg 3.4s linear infinite;
}
@keyframes ecg {
  0% { stroke-dashoffset: 640; }
  62% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}
.vitals-rows { padding: 12px 26px 24px; }
.vrow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.vrow:last-child { border-bottom: none; }
.vrow .vk { color: var(--slate); font-weight: 500; }
.vrow .vv { font-weight: 700; display: flex; align-items: center; gap: 8px; }
.vv .tick { width: 18px; height: 18px; font-size: 11px; }
.vrow .warn { color: var(--orange); }
.vitals-foot {
  background: var(--blue-tint);
  padding: 14px 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-ink);
}

/* ---------- trusted strip ---------- */
.trusted { padding: 54px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.trusted .wrap { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.trusted-label {
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate-light);
  max-width: 200px;
  line-height: 1.7;
}
.trusted-names { display: flex; gap: 14px; flex-wrap: wrap; }
.tname {
  font-weight: 700; font-size: 15px; color: var(--slate);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
}

/* ---------- stats (navy anchor) ---------- */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stats-mark {
  position: absolute; left: -180px; bottom: -220px;
  width: 560px; height: 560px;
  color: var(--blue); opacity: 0.07;
  transform: rotate(-8deg);
  pointer-events: none;
}
.stats .wrap { position: relative; }
.stats-head { text-align: center; margin-bottom: 70px; }
.stats-head .section-label { justify-content: center; }
.section-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-ink);
  margin-bottom: 18px;
}
.stats .section-label { color: var(--blue); }
h2 {
  font-size: clamp(32px, 4.1vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.stats h2 { color: var(--white); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 38px 32px;
  text-align: center;
}
.stat-num {
  font-weight: 800;
  font-size: clamp(38px, 3.8vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num span { color: var(--blue); }
.stat-num .zero { color: var(--red); }
.stat-label { margin-top: 14px; font-size: 14.5px; color: #9FB0C8; line-height: 1.55; }

/* ---------- services ---------- */
.services { padding: 110px 0 120px; }
.section-head { max-width: 660px; margin-bottom: 64px; }
.section-head p { margin-top: 22px; color: var(--slate); font-size: 18px; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 36px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: block;
  position: relative;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blue-tint-2); }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--blue-tint);
  color: var(--blue-ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background 0.25s, color 0.25s;
}
.svc:hover .svc-icon { background: var(--navy); color: var(--blue); }
.svc h3 { font-size: 19.5px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 10px; }
.svc p { font-size: 14.5px; color: var(--slate); line-height: 1.6; }
.svc-more { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--blue-ink); opacity: 0; transform: translateY(4px); transition: all 0.25s; display: inline-block; }
.svc:hover .svc-more { opacity: 1; transform: none; }

/* ---------- team & photo placeholders ---------- */
.team { padding: 110px 0 120px; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tm h3 { font-size: 18px; font-weight: 800; margin-top: 18px; letter-spacing: -0.01em; }
.tm p { font-size: 14px; color: var(--slate); margin-top: 2px; }
.ph {
  background: repeating-linear-gradient(45deg, var(--blue-tint), var(--blue-tint) 12px, #F5FBFF 12px, #F5FBFF 24px);
  border: 2px dashed #A9D7EF;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: #6FA9C9;
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.ph-portrait { aspect-ratio: 4 / 5; width: 100%; border-radius: 18px; }
.ph-circle { width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; }
.ph-circle svg { width: 19px; height: 19px; }
.ph-xl { width: 190px; height: 190px; border-radius: 50%; margin: 0 auto; }
.ava-row { margin-top: 36px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ava-stack { display: flex; }
.ava-ph {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue-tint);
  border: 2px dashed #A9D7EF;
  color: #6FA9C9;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: -12px;
  box-shadow: 0 0 0 3px var(--bg);
}
.ava-ph:first-child { margin-left: 0; }
.ava-ph svg { width: 17px; height: 17px; }
.ava-cap { font-size: 14.5px; font-weight: 600; color: var(--slate); }
.quote-foot { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.quote-foot .quote-who { margin-top: 0; }
.cta-flex { display: grid; grid-template-columns: 1fr 230px; gap: 64px; align-items: center; position: relative; }
.cta-person { text-align: center; color: #9FB0C8; }
.cta-person b { display: block; color: var(--white); margin-top: 18px; font-size: 16.5px; }
.cta-person span { font-size: 13.5px; }
.cta-card .ph { background: rgba(255,255,255,0.05); border-color: rgba(66,202,253,0.4); color: var(--blue); }

/* ---------- treatment plan ---------- */
.plan { padding: 110px 0 120px; background: linear-gradient(180deg, var(--bg), var(--blue-tint)); }
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.plan-grid::before {
  content: '';
  position: absolute;
  top: 38px; left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 10px, transparent 10px 20px);
  opacity: 0.5;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 34px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--blue);
  font-weight: 800; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.step .step-sub {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-ink);
  margin-bottom: 12px;
}
.step p { font-size: 14.5px; color: var(--slate); }

/* ---------- proof ---------- */
.proof { padding: 110px 0 120px; }
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 80px; }
.quote {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 42px;
  box-shadow: var(--shadow-sm);
}
.quote-mark { font-weight: 900; font-size: 60px; line-height: 0.4; color: var(--blue); display: block; margin-bottom: 26px; }
.quote p { font-size: 17.5px; line-height: 1.7; color: var(--navy); }
.quote-who { margin-top: 26px; font-size: 14px; color: var(--slate); }
.quote-who b { color: var(--navy); display: block; font-size: 15px; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.case-idx { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--blue); }
.case h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.01em; margin: 16px 0 10px; }
.case p { font-size: 14.5px; color: #9FB0C8; line-height: 1.6; }
.case-go { margin-top: 22px; display: inline-block; font-weight: 700; font-size: 14.5px; color: var(--blue); }
.case .case-watermark {
  position: absolute; right: -70px; bottom: -80px;
  width: 220px; height: 220px;
  color: var(--blue); opacity: 0.1;
  transform: rotate(10deg);
}

/* ---------- cta ---------- */
.cta { padding: 40px 0 120px; }
.cta-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 32px;
  padding: 90px 80px;
  position: relative;
  overflow: hidden;
}
.cta-mark {
  position: absolute; right: -140px; top: -120px;
  width: 520px; height: 520px;
  color: var(--blue); opacity: 0.09;
  transform: rotate(10deg);
  pointer-events: none;
}
.cta-card .inner { position: relative; max-width: 620px; }
.cta-card .section-label { color: var(--blue); }
.cta-card h2 { color: var(--white); margin-bottom: 24px; }
.cta-card p { color: #9FB0C8; font-size: 18.5px; margin-bottom: 40px; }
.cta-card p strong { color: var(--white); font-weight: 700; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-card .hero-phone { color: #9FB0C8; }
.cta-card .hero-phone a { color: var(--white); }

/* ---------- footer ---------- */
footer { padding: 70px 0 40px; background: var(--white); border-top: 1px solid var(--border); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.foot-grid h4 {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 20px;
}
.foot-grid a, .foot-grid p { display: block; font-size: 14.5px; color: var(--slate); margin-bottom: 10px; }
.foot-grid a:hover { color: var(--blue-ink); }
.foot-logo { margin-bottom: 18px; }
.foot-logo .lockup { height: 28px; width: 134.7px; }
.foot-tag { color: var(--slate); font-size: 14.5px; max-width: 280px; }
.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--slate-light);
  flex-wrap: wrap; gap: 12px;
}
.foot-bottom a { color: var(--slate); }
.foot-bottom a:hover { color: var(--blue-ink); }
.foot-bottom a.tenacity { color: var(--purple); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 56px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid::before { display: none; }
  .feature .wrap { grid-template-columns: 1fr; gap: 56px; }
  .case-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 70px 48px; }
  .cta-flex { grid-template-columns: 1fr; gap: 44px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
  .svc-grid, .stat-grid, .plan-grid, .quotes { grid-template-columns: 1fr; }
  .topbar .s-hide { display: none; }
  .cta-card { padding: 56px 32px; border-radius: 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .trusted .wrap { justify-content: flex-start; }
}
/* ---------- inner pages ---------- */
.page-hero { position: relative; padding: 70px 0 64px; overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 60%, var(--blue-tint) 100%); }
.page-hero .hero-mark { right: -240px; top: -220px; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 58px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; max-width: 20ch; }
.prose-wrap { padding: 70px 0 90px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.page-intro { font-size: 20px; color: var(--slate); margin-bottom: 36px; font-weight: 500; }
.backlink { margin-bottom: 28px; font-weight: 700; }
.backlink a { color: var(--blue-ink); }
.prose h2 { font-size: 27px; margin: 44px 0 16px; }
.prose h3 { font-size: 20px; font-weight: 800; margin: 34px 0 12px; }
.prose p { margin-bottom: 18px; color: #33445C; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: #33445C; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--blue-ink); font-weight: 600; border-bottom: 1.5px solid var(--blue); }
.prose strong { color: var(--navy); }
.prose blockquote { border-left: 4px solid var(--blue); padding: 4px 0 4px 20px; margin: 24px 0; color: var(--slate); font-style: italic; }
.ph-wide { aspect-ratio: 16 / 7; width: 100%; border-radius: 18px; margin: 28px 0; }
.list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-top: 10px; }
.list-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px 34px; transition: transform 0.25s, box-shadow 0.25s; display: block; }
.list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.lc-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-ink); }
.list-card h3 { font-size: 19px; font-weight: 800; margin: 12px 0 10px; letter-spacing: -0.01em; }
.list-card p { font-size: 14.5px; color: var(--slate); line-height: 1.6; }
.lc-go { display: inline-block; margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--blue-ink); }
@media (max-width: 1024px) { .list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .list-grid { grid-template-columns: 1fr; } }

/* ---------- real images ---------- */
.cimg { border-radius: 18px; margin: 28px 0; max-width: 100%; display: block; }
.cimg.portrait, img.cimg[src*="liam"] { max-width: 340px; }
.cta-headshot { width: 190px; height: 190px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto; object-position: 50% 18%; box-shadow: 0 0 0 4px rgba(66,202,253,0.35); }
.tm-photo { aspect-ratio: 4 / 5; width: 100%; border-radius: 18px; object-fit: cover; display: block; }

.q-photo { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.img-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px 0; }
.img-row img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 14px; display: block; }
@media (max-width: 720px) { .img-row { grid-template-columns: repeat(2, 1fr); } }

.img-row-3 { grid-template-columns: repeat(3, 1fr); }

.video-embed { aspect-ratio: 16 / 9; width: 100%; border-radius: 18px; overflow: hidden; margin: 28px 0; background: var(--navy); }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
