:root {
  --navy: #071b43;
  --navy-2: #0e2b63;
  --red: #d71920;
  --red-dark: #a60f16;
  --ink: #172033;
  --muted: #697386;
  --soft: #f4f7fb;
  --line: #dbe3ef;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 27, 67, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--navy); color: #fff; padding: 10px 14px; z-index: 99; }
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 70px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; color: var(--navy); letter-spacing: .02em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; background: var(--navy); color: var(--white); border-radius: 999px; border: 3px solid var(--red); font-size: .8rem; }
.nav-links { display: flex; gap: 18px; font-weight: 800; font-size: .92rem; color: var(--navy); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--red); }

.hero { background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); }
.hero-photo {
  min-height: clamp(360px, 47vw, 610px);
  background-image: linear-gradient(90deg, rgba(7,27,67,.28), rgba(7,27,67,.02) 38%, rgba(7,27,67,.18)), url('assets/hero-catcher.jpg');
  background-size: cover;
  background-position: center 27%;
  border-bottom: 8px solid var(--navy);
}
.hero-panel {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: stretch;
  margin-top: -64px;
  position: relative;
  z-index: 2;
  padding-bottom: 58px;
}
.hero-copy, .quick-card {
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(219,227,239,.9);
  border-radius: 24px;
}
.hero-copy { padding: clamp(24px, 4vw, 44px); border-top: 9px solid var(--red); }
.eyebrow, .section-kicker { margin: 0 0 8px; color: var(--red); text-transform: uppercase; font-weight: 950; letter-spacing: .1em; font-size: .78rem; }
h1 { margin: 0; color: var(--navy); font-size: clamp(3.2rem, 8vw, 7rem); line-height: .88; letter-spacing: -.06em; text-transform: uppercase; }
.tagline { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 900; color: var(--navy); margin: 18px 0 12px; }
.bio-line { color: #38445a; max-width: 780px; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 999px; border: 2px solid var(--navy); color: var(--navy); font-weight: 950; text-decoration: none; }
.button.primary { background: var(--red); border-color: var(--red); color: #fff; }
.button:hover { transform: translateY(-1px); }
.quick-card { padding: 26px; border-top: 9px solid var(--navy); }
.quick-card dl { margin: 0; display: grid; gap: 15px; }
.quick-card div { padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.quick-card div:last-child { border-bottom: 0; padding-bottom: 0; }
dt { font-size: .73rem; color: var(--muted); text-transform: uppercase; font-weight: 950; letter-spacing: .08em; }
dd { margin: 3px 0 0; color: var(--navy); font-weight: 950; }

.section { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; gap: 36px; align-items: end; margin-bottom: 28px; }
.section-head h2, .panel h2, .profile-download h2, .contact-section h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.04em; }
.section-head p { max-width: 560px; margin: 0; color: var(--muted); font-weight: 650; }
.section-head.light h2, .section-head.light p { color: #fff; }
.video-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 18px; }
.video-card { border: 1px solid var(--line); border-radius: 20px; padding: 18px; background: #fff; box-shadow: 0 10px 25px rgba(7,27,67,.08); }
.video-card h3 { color: var(--navy); margin: 14px 0 6px; }
.video-card p { color: var(--muted); margin: 0 0 10px; }
.video-placeholder, .mini-placeholder { border-radius: 16px; min-height: 180px; display: grid; place-items: center; text-align: center; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; padding: 18px; font-weight: 950; }
.video-placeholder small { display: block; color: rgba(255,255,255,.74); margin-top: 8px; font-weight: 700; }
.mini-placeholder { min-height: 130px; background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.text-link { color: var(--red); font-weight: 950; text-decoration: none; }

.stats-band { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.stats-band:before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 10%, rgba(215,25,32,.45), transparent 32%), radial-gradient(circle at 90% 80%, rgba(255,255,255,.10), transparent 32%); pointer-events: none; }
.stats-band .wrap { position: relative; }
.stat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 18px; padding: 18px 14px; }
.stat span { display: block; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .07em; font-size: .72rem; font-weight: 950; }
.stat strong { display: block; margin-top: 6px; color: #fff; font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1; }
.stat-note { margin: 18px 0 0; font-weight: 950; color: #fff; }

.split { display: grid; grid-template-columns: 1.4fr .8fr; gap: 22px; }
.panel { border: 1px solid var(--line); border-radius: 24px; padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); background: #fff; }
.panel p { font-size: 1.05rem; font-weight: 650; color: #3c475a; }
.accent-panel { background: var(--soft); border-top: 9px solid var(--red); }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; font-weight: 900; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li:before { content: ""; position: absolute; left: 0; top: .35em; width: 14px; height: 14px; border-radius: 50%; background: var(--red); box-shadow: inset 0 0 0 4px #fff; border: 2px solid var(--red); }

.profile-download { display: grid; grid-template-columns: .85fr 1fr; gap: 32px; align-items: center; background: linear-gradient(180deg, #fff, var(--soft)); }
.profile-download p { color: var(--muted); font-weight: 700; }
.profile-preview { display: block; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.profile-preview img { width: 100%; }

.schedule-list { display: grid; gap: 14px; }
.schedule-item { display: grid; grid-template-columns: 90px 1fr 160px; gap: 16px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.schedule-item span { color: var(--red); font-weight: 950; }
.schedule-item strong { color: var(--navy); }
.schedule-item em { color: var(--muted); font-style: normal; font-weight: 700; text-align: right; }

.contact-section { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: 0 10px 25px rgba(7,27,67,.08); }
.contact-card h3 { margin: 0 0 12px; color: var(--navy); }
.contact-card p { margin: 6px 0; font-weight: 800; color: #3c475a; }
.contact-card a { color: var(--red); text-decoration: none; }
.site-footer { background: var(--navy); color: rgba(255,255,255,.76); padding: 26px 0; font-weight: 700; }
.site-footer p { margin: 0; }

@media (max-width: 900px) {
  .nav { min-height: 64px; }
  .nav-links { display: none; }
  .hero-panel, .split, .profile-download, .contact-grid { grid-template-columns: 1fr; }
  .hero-panel { margin-top: -36px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card.featured { grid-column: 1 / -1; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 22px, 1120px); }
  .hero-photo { min-height: 390px; background-position: center top; }
  h1 { font-size: 3.4rem; }
  .video-grid, .stat-grid { grid-template-columns: 1fr 1fr; }
  .schedule-item { grid-template-columns: 1fr; gap: 4px; }
  .schedule-item em { text-align: left; }
}
