/* Vital Health Staffing — design system v2
   Editorial serif headlines (Fraunces) + Inter UI type.
   Hard-edge color blocks, offset shadows, diagonal cuts — not soft SaaS-template cards. */

:root {
  --blue: #323487;
  --blue-dark: #1e2058;
  --blue-tint: #eef0fb;
  --pink: #c9962b;
  --pink-dark: #9c7420;
  --ink: #191a2e;
  --ink-soft: #5c5e78;
  --paper: #fffdf9;
  --line: #e2e0f5;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }

h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.04;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; font-weight: 600; }

em { font-style: italic; color: var(--pink); }

p { margin: 0 0 1.1em; color: var(--ink-soft); }
.lead { font-size: 1.15rem; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Labels / eyebrows ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.tag::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--pink);
  display: inline-block;
}
.tag.on-dark { color: #f0d9a3; }
.tag.on-dark::before { background: #f0d9a3; }

/* ---------- Buttons: rectangular, offset hard shadow ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn::after { content: "→"; }

.btn-pink {
  background: var(--pink);
  border-color: var(--pink-dark);
  color: #fff;
  box-shadow: 5px 5px 0 var(--pink-dark);
}
.btn-pink:hover { box-shadow: 7px 7px 0 var(--pink-dark); }

.btn-blue {
  background: var(--blue);
  border-color: var(--blue-dark);
  color: #fff;
  box-shadow: 5px 5px 0 var(--blue-dark);
}
.btn-blue:hover { box-shadow: 7px 7px 0 var(--blue-dark); }

.btn-on-dark {
  background: transparent;
  border-color: #fff;
  color: #fff;
  box-shadow: 5px 5px 0 rgba(255,255,255,0.35);
}
.btn-on-dark:hover { box-shadow: 7px 7px 0 rgba(255,255,255,0.35); }

.btn-ghost {
  border-color: var(--line);
  box-shadow: none;
  color: var(--blue);
}
.btn-ghost:hover { box-shadow: none; border-color: var(--blue); transform: none; }
.btn-ghost::after { content: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}
.logo img { height: 54px; width: auto; display: block; }
.logo .logo-mark {
  width: 40px;
  height: 40px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  box-shadow: 3px 3px 0 var(--ink);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  padding: 4px 0;
}
nav.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--pink);
  transition: right 0.18s ease;
}
nav.main-nav a:not(.nav-cta):hover::after,
nav.main-nav a.active:not(.nav-cta)::after {
  right: 0;
}
nav.main-nav a.active { color: var(--pink); }

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 3px 3px 0 var(--pink);
}
.nav-cta:hover { box-shadow: 4px 4px 0 var(--pink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Ticker / marquee ---------- */
.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--ink);
}
.ticker-track {
  display: inline-block;
  padding: 10px 0;
  animation: ticker-scroll 26s linear infinite;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker-track span { color: var(--pink); margin: 0 14px; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 30px 0 34px; }

/* ---------- Hero v3 — light, editorial, blue as accent not backdrop ---------- */
.hero-v3 {
  background: var(--paper);
  padding: 56px 0 0;
}
.hero-v3-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  padding-bottom: 50px;
}
.hero-v3-pill {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.hero-v3-copy h1 {
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.hero-v3-copy h1 em { color: var(--pink); font-style: italic; }
.hero-v3-copy .lead {
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 0;
}
.hero-v3-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-tint);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin: 20px 0 28px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.hero-v3-chip strong { color: var(--blue); font-weight: 700; }
.hero-v3-chip span { color: var(--pink); font-weight: 700; }
.hero-v3-chip:hover { background: #e4e7f8; }
.hero-v3-media { position: relative; }
.hero-v3-media .shadow-block {
  position: absolute;
  top: 22px; left: 22px;
  width: 100%; height: 100%;
  background: var(--pink);
  border-radius: 4px;
  z-index: 0;
}
.hero-v3-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--ink);
  border-radius: 4px;
  display: block;
}
.hero-v3-strip {
  display: flex;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.hero-v3-strip .strip-item {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 26px 16px;
  border-left: 2px solid var(--ink);
  font-family: "Inter", sans-serif;
}
.hero-v3-strip .strip-item:first-child { border-left: none; }
.hero-v3-strip .strip-num {
  font-family: "Fraunces", serif;
  font-size: clamp(0.95rem, 1.3vw, 1.45rem);
  font-weight: 600;
  color: var(--pink);
  display: block;
  white-space: nowrap;
  margin-bottom: 4px;
}
.hero-v3-strip .strip-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 860px) {
  .hero-v3-grid { grid-template-columns: 1fr; padding-bottom: 34px; }
  .hero-v3-media { order: -1; }
  .hero-v3-media img { height: 340px; }
  .hero-v3-strip { flex-wrap: wrap; }
  .hero-v3-strip .strip-item { flex: 1 1 50%; border-left: none; border-top: 2px solid var(--ink); }
  .hero-v3-strip .strip-item:nth-child(odd) { border-left: none; }
}

.diagonal-bottom {
  height: 56px;
  background: var(--paper);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-top: -2px;
}

/* Page hero (inner pages) — smaller, still hard-edged */
.page-hero {
  background: var(--blue);
  color: #fff;
  padding: 68px 0 100px;
  position: relative;
}
.page-hero h1 { color: #fff; max-width: 720px; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 560px; }
.page-hero .diagonal-bottom { position: absolute; bottom: -2px; left: 0; right: 0; }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.bg-tint { background: var(--blue-tint); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink p { color: rgba(255,255,255,0.75); }

.section-head { max-width: 620px; margin: 0 0 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Numbered index list ---------- */
.index-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.index-list { display: flex; flex-direction: column; }
.index-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-top: 2px solid var(--ink);
}
.index-item:last-child { border-bottom: 2px solid var(--ink); }
.index-num {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--pink);
  font-weight: 600;
}
.index-item h3 { margin-bottom: 6px; }
.index-item p { margin-bottom: 0; }

/* ---------- Feature split (image + text, asymmetric bleed) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-split .feature-media { position: relative; }
.feature-split .feature-media .shadow-block {
  position: absolute; top: 18px; left: -18px;
  width: 100%; height: 100%;
  background: var(--blue-tint);
  border: 2px solid var(--ink);
  border-radius: 4px;
  z-index: 0;
}
.feature-split .feature-media img {
  position: relative; z-index: 1;
  width: 100%; height: 340px; object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 4px;
}
.feature-split.reverse .feature-media { order: 2; }
.feature-split.reverse .feature-media .shadow-block { left: auto; right: -18px; }

/* ---------- Pull quote ---------- */
.pull-quote {
  background: var(--blue);
  color: #fff;
  position: relative;
  padding: 100px 0;
}
.pull-quote blockquote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  max-width: 880px;
  margin: 0 0 28px;
  color: #fff;
}
.pull-quote .quote-mark {
  font-family: "Fraunces", serif;
  font-size: 5rem;
  color: var(--pink);
  line-height: 0;
  display: block;
  margin-bottom: 20px;
}
.pull-quote cite {
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #f0d9a3;
  display: block;
}
.pull-quote cite a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pull-quote cite a:hover { color: #fff; }
.pull-quote cite span {
  display: block;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-top: 2px;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.stat-strip .container { display: flex; }
.stat-cell {
  flex: 1;
  min-width: 0;
  padding: 40px 16px;
  border-left: 2px solid var(--ink);
  text-align: center;
  overflow: hidden;
}
.stat-cell:first-child { border-left: none; }
.stat-cell .stat-num {
  font-family: "Fraunces", serif;
  font-size: clamp(0.95rem, 1.3vw, 1.45rem);
  color: var(--pink);
  font-weight: 600;
  display: block;
  white-space: nowrap;
  margin-bottom: 4px;
}
.stat-cell .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 32px;
}
.team-card { position: relative; }
.team-photo {
  position: relative;
  margin-bottom: 20px;
  width: 180px;
  height: 180px;
  margin-left: auto;
  margin-right: auto;
}
.team-photo .shadow-block {
  position: absolute;
  top: 10px; left: 10px;
  width: 100%; height: 100%;
  background: var(--pink);
  border-radius: 50%;
}
.team-photo-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
}
.team-photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.team-card { text-align: center; }
.team-card .email-link { display: inline-block; }
.team-card p,
.team-card details.bio-more p { text-align: left; }
.team-card details.bio-more { margin: 0 0 14px; }
.team-card details.bio-more summary {
  cursor: pointer;
  color: var(--pink);
  font-weight: 600;
  font-size: 0.86rem;
  list-style: none;
  text-align: left;
}
.team-card details.bio-more summary::-webkit-details-marker { display: none; }
.team-card details.bio-more summary::after { content: " +"; }
.team-card details.bio-more[open] summary::after { content: " \2212"; }
.team-card details.bio-more[open] summary { margin-bottom: 8px; }
/* ---------- FAQ accordion ---------- */
.faq-jump-section { padding: 40px 0 0; }
.faq-jump-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.faq-jump-row .btn {
  padding: 12px 20px;
  font-size: 0.88rem;
}
.faq-group { margin-bottom: 46px; scroll-margin-top: 110px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-item {
  border-bottom: 2px solid var(--line);
  padding: 22px 0;
}
.faq-item:first-of-type { border-top: 2px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--pink);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { margin-bottom: 10px; }
.faq-item p {
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0;
}

.team-role {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
}
.team-card h3 { margin-bottom: 2px; font-size: 1.15rem; }
.team-card p { font-size: 0.92rem; }
.team-card a.email-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 1px;
}

/* ---------- Role cards ---------- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.role-card {
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 30px 26px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--blue-tint);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.role-card:hover { box-shadow: 8px 8px 0 var(--pink); transform: translate(-2px,-2px); }
.role-card .role-abbr {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 8px;
}

/* ---------- Members strip ---------- */
.members-strip { border-top: 2px solid var(--ink); padding: 50px 0; }
.members-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px;
}
.member-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 18px 26px;
  border-radius: 4px;
  min-height: 96px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.member-badge:hover {
  box-shadow: 4px 4px 0 var(--pink);
  transform: translate(-1px, -1px);
}
.member-badge img {
  height: 64px;
  width: auto;
  max-width: 180px;
  display: block;
}

/* ---------- CTA block (diagonal full bleed) ---------- */
.cta-block {
  background: var(--pink);
  color: #fff;
  padding: 100px 0 130px;
  position: relative;
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px));
}
.cta-block h2 { color: #fff; max-width: 640px; }
.cta-block p { color: rgba(255,255,255,0.88); max-width: 520px; }
.cta-block .hero-actions { margin-top: 26px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-compact { line-height: 2; }
.contact-compact strong { color: var(--ink); font-weight: 700; margin-right: 4px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item .idx {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--pink);
  background: var(--paper);
}
.contact-item h4 { margin-bottom: 2px; font-size: 1rem; font-family:"Inter",sans-serif; font-weight:700; color: var(--ink); }
.contact-item p { margin: 0; }

form.contact-form {
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 34px;
  box-shadow: 8px 8px 0 var(--blue-tint);
}
form.contact-form label {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  display: block;
  color: var(--ink);
}
form.contact-form > div { margin-bottom: 18px; }
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--paper);
}
form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 40px;
}
.footer-top h2 { color: #fff; max-width: 480px; margin-bottom: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; font-family: "Inter",sans-serif; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 11px; }
.footer-grid a { color: rgba(255,255,255,0.72); font-size: 0.93rem; }
.footer-grid a:hover { color: var(--pink); }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-family:"Fraunces",serif; font-weight: 600; font-size: 1.2rem; margin-bottom: 14px; }
.footer-logo-chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
}
.social-links { display: flex; gap: 18px; }
.social-links a { color: rgba(255,255,255,0.72); font-weight: 500; }
.social-links a:hover { color: var(--pink); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { height: 300px; }
  .index-grid { grid-template-columns: 1fr; gap: 30px; }
  .feature-split, .contact-grid { grid-template-columns: 1fr; }
  .feature-split.reverse .feature-media { order: 0; }
  .team-grid, .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip .container { flex-wrap: wrap; }
  .stat-cell { flex: 1 1 50%; border-left: none; border-top: 2px solid var(--ink); }
  .stat-cell:nth-child(odd) { border-left: none; }
}

@media (max-width: 720px) {
  nav.main-nav {
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  nav.main-nav.open { max-height: 420px; }
  nav.main-nav ul { flex-direction: column; align-items: flex-start; padding: 14px 28px 24px; gap: 6px; }
  nav.main-nav a { display: block; padding: 10px 0; }
  .nav-toggle { display: block; }
  .team-grid, .roles-grid { grid-template-columns: 1fr; }
  .cta-block { clip-path: none; padding: 70px 0; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
