@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

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

:root {
  --navy: #0D2145;
  --navy-mid: #1A3566;
  --red: #C0271F;
  --red-bright: #E8352C;
  --off-white: #F7F4EF;
  --warm-gray: #E8E4DC;
  --gold: #C8962A;
  --text: #1A1A1A;
  --text-muted: #5A5650;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}

.logo-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  line-height: 1;
}

.logo-ambu { color: #fff; }
.logo-dot  { color: var(--red-bright); margin: 0 1px; }
.logo-trans { color: #fff; }

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: #8FA4C8;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 300;
  align-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #8FA4C8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 500 !important;
  letter-spacing: 0.3px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-bright) !important; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 420px; /* safety floor only; content drives actual height */
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--navy);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px 48px 80px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-bright);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 5vw, 68px);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 28px;
}

.hero-headline em {
  color: var(--red-bright);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: #8FA4C8;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 0; /* stop image intrinsic size (965px) from inflating the grid row */
}

.hero-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

/* Left-edge fade — blends image into content column */
.hero-image::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, var(--navy), transparent);
  z-index: 1;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  width: fit-content;
}
.btn-primary:hover { background: var(--red-bright); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
  width: fit-content;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-light {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ─── STATS BAR ───────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  border-bottom: 3px solid var(--red);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 46px;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-number sup { font-size: 22px; vertical-align: super; }

.stat-label {
  font-size: 12px;
  color: #8FA4C8;
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* ─── SECTIONS ────────────────────────────────────── */
.section       { padding: 88px 80px; }
.section-sm    { padding: 64px 80px; }

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
}

.bg-off-white { background: var(--off-white); }
.bg-navy      { background: var(--navy); }
.bg-white     { background: #fff; }

/* ─── TWO COLUMN ──────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col-text { display: flex; flex-direction: column; gap: 18px; }

/* ─── FEATURE CARDS ───────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 26px;
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.feature-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── QUOTE SECTION ───────────────────────────────── */
.quotes-section {
  background: var(--navy);
  padding: 88px 80px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}

.quote-card {
  background: var(--navy-mid);
  border-radius: 8px;
  padding: 36px 32px;
  border-left: 4px solid var(--red);
}

.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  color: var(--red);
  line-height: 0.65;
  display: block;
  margin-bottom: 18px;
  opacity: 0.55;
}

.quote-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 16px;
  color: #C8D4E8;
  line-height: 1.65;
  margin-bottom: 22px;
}

.quote-attr { font-style: normal; }

.quote-attr strong {
  display: block;
  color: #D0DEEF;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 4px;
}

.quote-attr span {
  font-size: 12.5px;
  color: #8FA4C8;
  line-height: 1.5;
  display: block;
}

.quote-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--red-bright);
  text-decoration: none;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(232,53,44,0.35);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.quote-link:hover { border-color: var(--red-bright); }

/* ─── ARTICLE QUOTE ───────────────────────────────── */
.article-quote {
  background: var(--off-white);
  padding: 64px 80px;
  border-left: 5px solid var(--navy);
}

.article-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--navy);
  line-height: 1.4;
  max-width: 800px;
}

.article-quote cite {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 0.3px;
}

/* ─── ITEM LIST ───────────────────────────────────── */
.item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item-list li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.item-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
}

.item-list li strong { color: var(--text); font-weight: 500; }

/* ─── COMPARISON ──────────────────────────────────── */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 44px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.12);
}

.comparison-col { padding: 36px 32px; }
.comparison-col.col-good { background: var(--navy); }
.comparison-col.col-bad  { background: #f4f4f4; }

.comparison-col h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.comparison-col.col-bad h3 { color: var(--text-muted); border-bottom-color: #ddd; }
.comparison-col.col-good h3 { color: #fff; }

.comparison-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-col ul li {
  font-size: 14.5px;
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.comparison-col.col-good ul li { color: #C8D4E8; }
.comparison-col.col-bad  ul li { color: #888; }

.comparison-col.col-good ul li::before { content: '✓'; position: absolute; left: 0; color: #5DB87A; font-weight: 700; }
.comparison-col.col-bad  ul li::before { content: '✗'; position: absolute; left: 0; color: #e05252; font-weight: 700; }

/* ─── TEAM ────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.team-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.14);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #bbb;
}

.photo-placeholder svg { width: 52px; height: 52px; }
.photo-placeholder span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.team-info {
  padding: 22px 24px 26px;
  border-top: 3px solid var(--navy);
}

.team-name {
  font-family: 'DM Serif Display', serif;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-title {
  font-size: 11px;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-contact {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.team-contact a {
  color: var(--text-muted);
  text-decoration: none;
}
.team-contact a:hover { color: var(--navy); }

/* ─── CONTACT FORM ────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

input, select, textarea {
  padding: 13px 15px;
  border: 1.5px solid #D8D4CC;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
}

textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 16px 44px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}
.btn-submit:hover { background: var(--navy-mid); }

/* ─── PAGE HEADER ─────────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 88px 80px;
  border-bottom: 3px solid var(--red);
}

.page-header .section-label { color: #8FA4C8; margin-bottom: 14px; }

.page-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 4vw, 58px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-header p {
  font-size: 17px;
  color: #8FA4C8;
  max-width: 580px;
  line-height: 1.65;
}

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 3px solid var(--red);
  padding: 56px 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
}

.footer-brand .logo-wordmark { font-size: 22px; }

.footer-brand p {
  font-size: 13.5px;
  color: #8FA4C8;
  margin-top: 14px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8FA4C8;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: #C8D4E8; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }

.footer-col p { color: #C8D4E8; font-size: 14px; line-height: 1.75; }
.footer-col strong { color: #D0DEEF; font-weight: 500; }

.footer-bottom {
  background: #0a1a38;
  padding: 18px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 12px; color: #6A7FA8; }

/* ─── INLINE HELPERS ──────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 20px 0;
}

.info-band {
  background: var(--off-white);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  gap: 48px;
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
  font-size: 14px;
  color: var(--text-muted);
}

.info-band strong { color: var(--navy); font-weight: 500; }

/* ─── AUDIENCE CARDS ──────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.audience-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 28px 24px;
  border-top: 3px solid var(--navy);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.audience-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.audience-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.audience-icon svg { stroke: #8FA4C8; }

.audience-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--navy);
}

.audience-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.audience-card a {
  font-size: 13px;
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 4px;
  display: inline-block;
}

.audience-card a:hover { color: var(--red-bright); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 0 40px; }
  .section, .section-sm, .page-header, .quotes-section { padding-left: 48px; padding-right: 48px; }
  .footer { padding-left: 48px; padding-right: 48px; }
  .footer-bottom { padding: 18px 48px; }
  .article-quote { padding: 52px 48px; }
  .info-band { padding: 20px 48px; }
}

@media (max-width: 900px) {
  .nav { padding: 0 28px; }
  .nav-links li:not(:last-child) { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 64px 40px; }
  .hero-image { height: 62vw; min-height: 340px; }
  .hero-image img { object-position: 50% 49%; }
  .hero-image::after { display: none; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 20px; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }

  .quotes-grid { grid-template-columns: 1fr; }

  .comparison { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .footer { grid-template-columns: 1fr; gap: 36px; padding: 48px 40px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { padding: 16px 40px; flex-direction: column; gap: 6px; text-align: center; }

  .section, .section-sm { padding: 64px 40px; }
  .page-header { padding: 64px 40px; }
  .quotes-section { padding: 64px 40px; }
  .article-quote { padding: 48px 40px; }
  .info-band { padding: 18px 40px; gap: 28px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 34px; }
}
