/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2438;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Brand tokens (professional pharma palette) ===== */
:root {
  --navy: #0B2A4A;
  --navy-deep: #07203B;
  --blue: #1E5FBF;
  --blue-dark: #164B99;
  --blue-soft: #E8F0FB;
  --teal: #0E8A8C;
  --gold: #B89548;
  --gradient: linear-gradient(135deg, #0B2A4A 0%, #1E5FBF 100%);
  --gradient-soft: linear-gradient(135deg, #0F3461 0%, #2A6FCF 100%);
  --ink: #0F172A;
  --body: #475569;
  --muted: #64748B;
  --bg-soft: #F8FAFC;
  --bg-tint: #F1F5F9;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --shadow-sm: 0 1px 2px rgba(11,42,74,0.06);
  --shadow-md: 0 8px 24px rgba(11,42,74,0.08);
  --shadow-lg: 0 24px 60px rgba(11,42,74,0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1200px;
}

/* ===== Accessibility ===== */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Layout ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tint { background: var(--bg-soft); }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: 20px; }
p { margin: 0 0 16px; color: var(--body); }
.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--body); max-width: 720px; }
.accent-text { color: var(--blue); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(11, 42, 74, 0.18);
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(11, 42, 74, 0.28); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--navy); background: var(--bg-soft); }
.btn-ghost { background: transparent; color: var(--navy); padding: 10px 16px; }
.btn-ghost:hover { color: var(--blue); }
.btn-arrow::after { content: "→"; transition: transform 0.2s ease; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 72px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.nav-cta) {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav a:not(.nav-cta):hover { color: var(--blue); background: var(--bg-tint); }
.nav a[aria-current="page"]:not(.nav-cta) { color: var(--blue); background: var(--blue-soft); }
.nav-cta { margin-left: 12px; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--navy);
  font-size: 22px;
  border-radius: 6px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 112px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(30, 95, 191, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(14, 138, 140, 0.05) 0%, transparent 50%),
    #fff;
}
.hero-content { max-width: 820px; }
.hero h1 { margin-bottom: 24px; }
.hero p { font-size: 20px; margin-bottom: 32px; max-width: 660px; color: var(--body); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.hero-trust span::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
}

/* ===== Grids / Cards ===== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: 15px; }

/* Linkified card — looks like a card, behaves like an anchor */
.card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card-link h3 { color: var(--navy); }
.card-link p { color: var(--body); flex: 1; }
.card-link .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.01em;
  transition: gap 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card-link:hover .card-cta { gap: 12px; }
.card-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--radius-lg);
}

/* ===== Feature row ===== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.reverse > :first-child { order: 2; }
.feature-row ul { padding-left: 0; list-style: none; margin: 24px 0 0; }
.feature-row li {
  position: relative;
  padding: 12px 0 12px 32px;
  color: var(--body);
  border-bottom: 1px solid var(--border);
}
.feature-row li:last-child { border-bottom: 0; }
.feature-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  background-image: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
}
.feature-row li::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 12px;
  text-align: center;
}
.feature-img {
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats-3 { grid-template-columns: repeat(3, 1fr); }
.stat {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat-value {
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== Credentials / badges ===== */
.credentials {
  text-align: center;
}
.credentials-header { max-width: 720px; margin: 0 auto 48px; }
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.badge-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 580px;
}

/* "In progress" sub-section under the main credentials grid */
.credentials-pending {
  margin: 56px auto 0;
  max-width: 720px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.pending-header { margin-bottom: 28px; }
.pending-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a16207;
  background: #fef3c7;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.credentials-pending p {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

/* Capability detail pages — photo placeholders, back link, related cards */
.capability-banner { padding-top: 64px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 24px;
  transition: gap 0.25s ease, color 0.2s ease;
}
.back-link:hover { gap: 10px; color: var(--navy); }

.photo-placeholder {
  position: relative;
  background:
    linear-gradient(135deg, var(--bg-soft) 0%, #e2e8f0 100%);
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.image-band.photo-placeholder,
.image-band .photo-placeholder {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  min-height: 320px;
  aspect-ratio: auto;
}
.capability-hero-band .photo-placeholder {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  min-height: 360px;
  width: 100%;
}
.photo-placeholder-inner {
  padding: 32px;
  max-width: 460px;
}
.photo-placeholder-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.photo-placeholder-inner p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.photo-placeholder-inner code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  background: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--navy);
  white-space: nowrap;
  display: inline-block;
  margin-top: 4px;
}
.feature-img.photo-placeholder { box-shadow: none; }
.feature-img.photo-placeholder:hover {
  transform: none;
  box-shadow: none;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.related-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease, border-color 0.2s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(11, 42, 74, 0.3);
  border-color: var(--blue);
}
.related-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.related-card h3 {
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--navy);
}
.related-card p {
  font-size: 14px;
  color: var(--body);
  margin: 0;
  line-height: 1.55;
}
.related-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 20px;
  color: var(--blue);
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.related-card:hover .related-arrow { transform: translateX(4px); }
@media (max-width: 640px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* Pending badge variant — amber accent, dashed border, "pending" framing */
.badge-pending {
  border-style: dashed;
  border-color: #fcd34d;
  background: #fffbeb;
}
.badge-pending:hover {
  border-color: #f59e0b;
  box-shadow: 0 18px 40px -18px rgba(161, 98, 7, 0.25), 0 4px 12px -4px rgba(161, 98, 7, 0.15);
}
.badge-pending .badge-seal {
  border-color: #dc2626;
  color: #dc2626;
}
.badge-pending .badge-seal::before { border-color: #dc2626; }
.badge-pending .badge-seal small { color: #dc2626; }
.badge-pending .badge-label { color: #78350f; }
.badge-pending .badge-sub { color: #92400e; }
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.badge { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.25s ease; }
.badge:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 40px -18px rgba(11, 42, 74, 0.35), 0 4px 12px -4px rgba(11, 42, 74, 0.18);
  transform: translateY(-4px);
}
.badge .badge-seal { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.badge:hover .badge-seal { transform: scale(1.06) rotate(-2deg); }
.badge-seal {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--navy);
  position: relative;
}
.badge-seal::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  opacity: 0.4;
}
.badge-seal strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}
.badge-seal small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 4px;
  text-transform: uppercase;
}
.badge-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  text-align: center;
  margin-bottom: 4px;
}
.badge-sub {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ===== CTA band ===== */
/* ===== Brand landing: choose-your-path cards ===== */
.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.path-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.35s ease, border-color 0.25s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.path-card .eyebrow { color: var(--blue); }
.path-card h2 { font-size: clamp(24px, 2.4vw, 30px); margin: 6px 0 4px; color: var(--navy); }
.path-card .path-sub { font-size: 15px; font-weight: 600; color: var(--teal); margin: 0 0 16px; letter-spacing: 0.01em; }
.path-card > p { color: var(--body); margin: 0 0 20px; }
.path-card ul { list-style: none; padding: 0; margin: 0 0 28px; }
.path-card li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--body); font-size: 15px; }
.path-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.path-card .path-cta { margin-top: auto; }
@media (max-width: 760px) { .path-grid { grid-template-columns: 1fr; } .path-card { padding: 30px; } }

.cta-band {
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.cta-band > * { position: relative; }
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { opacity: 0.92; max-width: 600px; margin: 0 auto 32px; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.cta-band .btn-primary:hover { background: #fff; color: var(--blue); transform: translateY(-1px); }

/* ===== Forms ===== */
.form { display: grid; gap: 20px; min-width: 0; }
.field { display: grid; gap: 6px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; min-width: 0; }
label { font-size: 14px; font-weight: 600; color: var(--navy); }
input, textarea, select {
  font-family: inherit;
  font-size: 15px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 95, 191, 0.15);
}
textarea { resize: vertical; min-height: 140px; }
.form-actions { display: flex; gap: 12px; }
.required { color: var(--blue); font-weight: 700; }
.form-help { font-size: 13px; color: var(--muted); }

/* ===== Contact layout ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-layout > * { min-width: 0; }
.contact-info {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-item .label { font-size: 12px; color: var(--muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-item .value { font-weight: 500; color: var(--ink); }

/* ===== Careers ===== */
.jobs { display: grid; gap: 12px; }
.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.job:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.job-info h3 { font-size: 17px; margin: 0 0 4px; }
.job-meta { font-size: 14px; color: var(--muted); }
.job-meta span:not(:last-child)::after { content: " · "; margin: 0 4px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-deep);
  color: #cbd5e1;
  padding: 64px 0 32px;
  margin-top: 96px;
}
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.site-footer a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 2px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: #94a3b8; font-size: 14px; margin: 16px 0 0; max-width: 360px; }
.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.35);
}
.footer-brand .footer-logo img {
  height: 80px;
  width: auto;
  display: block;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
  font-weight: 600;
  transition: color 0.15s ease;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social:hover { color: #fff; }

/* ===== Page banner (non-hero pages) ===== */
.page-banner {
  position: relative;
  padding: 80px 0 64px;
  background:
    radial-gradient(ellipse at top right, rgba(30, 95, 191, 0.06) 0%, transparent 50%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-banner .container { position: relative; }
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { font-size: 18px; max-width: 640px; margin: 0; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-content { flex: 1; }
.cookie-content p { margin: 0; font-size: 14px; color: var(--body); line-height: 1.5; }
.cookie-content strong { color: var(--navy); }
.cookie-content a { color: var(--blue); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 10px 18px; font-size: 14px; }
@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 18px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse > :first-child { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .stat:nth-child(2n) { border-right: 0; }

  /* 3-stat variant: keep 3-across on tablet but tighten padding and stop overflow */
  .stats-3 { grid-template-columns: repeat(3, 1fr); }
  .stats-3 .stat { border-right: 1px solid var(--border); border-bottom: 0; padding: 20px 14px; }
  .stats-3 .stat:last-child { border-right: 0; }
  .stats-3 .stat-value { font-size: clamp(24px, 4.5vw, 32px); }
  .stats-3 .stat-label { font-size: 11px; letter-spacing: 0.08em; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 56px; }
  .cta-band { padding: 40px 24px; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .nav[data-open="true"] {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
  }
  .nav[data-open="true"] .nav-cta { margin: 8px 0 0; }
  .menu-toggle { display: block; }
  .grid-3, .grid-4, .grid-2, .field-row { grid-template-columns: 1fr; }
  .badge-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .job { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   iPhone & mobile polish
   ===================================================================== */

/* Prevent iOS Safari from zooming in when focusing an input */
input, textarea, select { font-size: 16px; }

/* Crisp tap highlight + no 300ms tap delay */
html { -webkit-tap-highlight-color: rgba(30, 95, 191, 0.15); }
a, button { touch-action: manipulation; }

/* Respect notch / Dynamic Island safe areas */
.site-header { padding-top: env(safe-area-inset-top); }
.site-header .container {
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}
.cookie-banner {
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
}
.skip-link { left: max(16px, env(safe-area-inset-left)); }
.site-footer { padding-bottom: max(32px, calc(32px + env(safe-area-inset-bottom))); }

/* Avoid horizontal overflow on small phones */
html, body { overflow-x: hidden; max-width: 100%; }

/* Logo text fallback (shows if PNG fails to load) */
.logo-text {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo-text span { color: var(--blue); }
.site-footer .logo-text { color: #fff; }
.site-footer .logo-text span { color: #cbd5e1; }

/* Phone-specific refinements */
@media (max-width: 640px) {
  body { font-size: 17px; line-height: 1.55; }

  .site-header .container { height: 76px; }
  .logo img { height: 56px; }
  .nav[data-open="true"] { top: calc(64px + env(safe-area-inset-top)); }
  .menu-toggle { font-size: 26px; padding: 10px 12px; min-width: 44px; min-height: 44px; }

  /* Ensure every interactive control meets 44pt tap target */
  .btn { min-height: 48px; padding: 14px 22px; }
  .nav a { min-height: 44px; display: flex; align-items: center; }
  .nav[data-open="true"] a { padding: 12px 14px; font-size: 16px; }
  .nav-cta { min-height: 48px; }
  .job .btn { width: 100%; }
  .contact-item .icon { min-width: 36px; min-height: 36px; }

  /* Tighten hero on phones */
  .hero { padding: 40px 0 48px; }
  .hero h1 { font-size: clamp(30px, 8vw, 40px); }
  .hero p { font-size: 17px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-wrap: wrap; gap: 12px 18px; font-size: 13px; }

  .section { padding: 48px 0; }
  .page-banner { padding: 48px 0 36px; }
  .page-banner h1, h1 { font-size: clamp(28px, 7.5vw, 36px); }
  h2 { font-size: clamp(24px, 6vw, 32px); }

  .card { padding: 24px; }
  .badge { padding: 24px 16px; }
  .badge-seal { width: 72px; height: 72px; }
  .badge-seal strong { font-size: 17px; }

  .stats { border-radius: 12px; }
  .stat { padding: 20px 12px; }

  /* 3-stat variant on phones: stack vertically — 3-across is too cramped */
  .stats-3 { grid-template-columns: 1fr; }
  .stats-3 .stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 20px 16px;
  }
  .stats-3 .stat:last-child { border-bottom: 0; }
  .stats-3 .stat-value { font-size: clamp(28px, 8vw, 36px); }
  .stats-3 .stat-label { font-size: 12px; letter-spacing: 0.08em; }

  .cta-band { padding: 32px 22px; border-radius: 14px; }
  .cta-band h2 { font-size: clamp(22px, 6vw, 28px); }

  .feature-row { gap: 28px; }

  /* Cookie banner: full-width edge-to-edge on phones */
  .cookie-banner { padding: 16px; gap: 12px; border-radius: 14px; }
  .cookie-content p { font-size: 13px; }
  .cookie-actions .btn { min-height: 44px; padding: 12px 16px; }
}

/* Very small phones (e.g. iPhone SE 1st gen) */
@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: clamp(26px, 8vw, 34px); }
  .badge-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   What's Happening — news feed
   ===================================================================== */

.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.news-chip {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.news-chip:hover { border-color: var(--blue); color: var(--blue); }
.news-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.news-chip:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.news-refresh {
  margin-left: auto;
  appearance: none;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.news-refresh:hover { color: var(--blue); border-color: var(--blue); }
.news-refresh:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-toolbar { gap: 8px; }
  .news-refresh { margin-left: 0; flex: 1 0 100%; justify-content: center; }
}

.news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease, border-color 0.2s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(11, 42, 74, 0.3);
  border-color: var(--blue);
}
.news-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--radius-lg);
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.news-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.news-tag-fda { background: #fee2e2; color: #991b1b; }
.news-tag-industry { background: #dbeafe; color: #1e40af; }
.news-tag-community { background: #d1fae5; color: #065f46; }

/* Pillars callout strip under the page banner heading */
.news-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.news-pillar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.4;
}
.news-pillar strong { color: var(--navy); font-weight: 700; }
.pillar-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.pillar-dot-fda { background: #ef4444; }
.pillar-dot-industry { background: #3b82f6; }
.pillar-dot-community { background: #10b981; }
@media (max-width: 720px) {
  .news-pillars { grid-template-columns: 1fr; gap: 10px; padding-top: 20px; margin-top: 24px; }
  .news-pillar { font-size: 13px; }
}
.news-date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.news-title {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--navy);
  font-weight: 700;
}
.news-snippet {
  font-size: 14px;
  color: var(--body);
  margin: 0 0 18px;
  line-height: 1.55;
  flex: 1;
}
.news-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.news-card:hover .news-cta { gap: 10px; }

/* Skeleton loaders */
.news-card-skeleton {
  pointer-events: none;
  background: #fff;
}
.news-skel {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: skel-pulse 1.4s ease-in-out infinite;
  border-radius: 6px;
}
.news-skel-tag { width: 110px; height: 18px; margin-bottom: 18px; }
.news-skel-title { height: 18px; margin-bottom: 8px; }
.news-skel-title.short { width: 70%; margin-bottom: 18px; }
.news-skel-body { height: 12px; margin-bottom: 8px; }
@keyframes skel-pulse {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .news-skel { animation: none; background: #f1f5f9; }
}

.news-error {
  text-align: center;
  padding: 32px;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-lg);
  color: #92400e;
  font-size: 15px;
  margin: 24px 0 0;
}
.news-retry {
  background: transparent;
  border: 1px solid #92400e;
  color: #92400e;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  margin-left: 8px;
}
.news-retry:hover { background: #92400e; color: #fef3c7; }

.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 48px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-strong);
}

.news-disclaimer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================================
   Subtle motion — scroll reveal, nav underline, card lift, button shine
   ===================================================================== */

/* Nav underline that grows on hover, persistent on current page */
@media (min-width: 641px) {
  .nav a:not(.nav-cta) { position: relative; }
  .nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
    border-radius: 2px;
  }
  .nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
  .nav a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); opacity: 0.6; }
}

/* Card lift refinement (existing card hover gets smoother) */
.card { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.25s ease; }
.card-icon { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.25s ease; }
.card:hover .card-icon { transform: scale(1.08) rotate(-3deg); background: var(--blue); color: #fff; }

/* Process step subtle hover */
.process-step { transition: background 0.25s ease; }
.process-step:hover { background: var(--bg-tint); }

/* Stat hover */
.stat { transition: background 0.25s ease; }
.stat:hover { background: var(--bg-tint); }

/* Scroll-reveal: items start slightly translated + transparent, then settle */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle button shine on hover for primary CTAs */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transition: left 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}
.btn-primary:hover::before { left: 150%; }

/* Logo subtle hover */
.site-header .logo img { transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
.site-header .logo:hover img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .nav a::after,
  .card,
  .card-icon,
  .badge,
  .badge-seal,
  .btn-primary::before,
  .site-header .logo img,
  .process-step,
  .stat {
    transition: none !important;
    transform: none !important;
  }
}

/* =====================================================================
   Photo wiring — hero grid, image bands, contact aside image
   ===================================================================== */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero-grid .hero-content { max-width: 640px; }
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 60px -20px rgba(11, 42, 74, 0.45),
    0 6px 20px -6px rgba(11, 42, 74, 0.25);
  aspect-ratio: 4 / 3;
  transform: translateZ(0);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(11, 42, 74, 0.08);
  pointer-events: none;
  z-index: 2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-media:hover img { transform: scale(1.03); }

/* Refined photo treatment for feature rows + contact aside */
.feature-img {
  box-shadow:
    0 18px 50px -18px rgba(11, 42, 74, 0.4),
    0 4px 14px -4px rgba(11, 42, 74, 0.18);
  border: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-img:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px -20px rgba(11, 42, 74, 0.45),
    0 8px 18px -6px rgba(11, 42, 74, 0.22);
}
.feature-img img {
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.feature-img:hover img { transform: scale(1.04); }

.image-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--navy);
}
.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 42, 74, 0.15) 0%, transparent 30%, transparent 70%, rgba(11, 42, 74, 0.2) 100%);
  pointer-events: none;
}
.image-band img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.image-band:hover img { transform: scale(1.02); }
.image-band-tall img { max-height: 520px; }

.contact-info-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 12px 36px -12px rgba(11, 42, 74, 0.35),
    0 3px 10px -3px rgba(11, 42, 74, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-info-image:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 48px -16px rgba(11, 42, 74, 0.4),
    0 6px 14px -4px rgba(11, 42, 74, 0.2);
}
.contact-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.contact-info-image:hover img { transform: scale(1.04); }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .feature-img,
  .feature-img img,
  .image-band img,
  .contact-info-image,
  .contact-info-image img {
    transition: none;
    transform: none !important;
  }
}

/* ===== Process / How we work ===== */
/* ===== Emphasized statement band ===== */
.statement-band {
  background: var(--gradient);
  color: #fff;
  padding: 76px 0;
}
.statement-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
}
.statement-text {
  margin: 0;
  max-width: 960px;
  font-size: clamp(23px, 3.2vw, 34px);
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
}
.statement-text strong {
  display: block;
  margin-top: 14px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 640px) {
  .statement-band { padding: 52px 0; }
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 10px 30px -10px rgba(11, 42, 74, 0.15);
}
.process-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  counter-increment: step;
}
.process-step:last-child { border-right: 0; }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--border); padding: 24px; }
  .process-step:last-child { border-bottom: 0; }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-media { aspect-ratio: 16 / 10; }
  .image-band img { max-height: 320px; }
  .image-band-tall img { max-height: 380px; }
}

@media (max-width: 640px) {
  .hero-grid { gap: 32px; }
  .hero-media { aspect-ratio: 4 / 3; border-radius: 14px; }
  .image-band img { max-height: 260px; }
  .image-band-tall img { max-height: 300px; }
  .contact-info-image { aspect-ratio: 16 / 10; border-radius: 14px; }
}
