:root {
  --kseblue: #006bb7;
  --navy: #071628;
  --navy-2: #0b2139;
  --steel: #78889a;
  --ice: #f5f8fb;
  --white: #ffffff;
  --gold: #fec524;
  --line: rgba(255,255,255,.16);
  --shadow: 0 24px 80px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--ice);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: linear-gradient(180deg, rgba(7,22,40,.9), rgba(7,22,40,.46));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand img { width: 210px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; color: white; font-size: 13px; font-weight: 700; letter-spacing: .01em; }
.site-nav a { opacity: .9; transition: opacity .2s ease, transform .2s ease; }
.site-nav a:hover { opacity: 1; transform: translateY(-1px); }
.nav-cta { border: 1px solid rgba(255,255,255,.35); padding: 10px 14px; border-radius: 999px; }
.nav-toggle { display: none; background: none; border: 0; color: white; font-size: 28px; }
.hero { min-height: 100vh; position: relative; display: grid; place-items: center start; overflow: hidden; padding: 120px 5vw 90px; }
.hero-media, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; transform: scale(1.04); }
.hero-slide.active { opacity: 1; }
.hero-overlay { background: radial-gradient(circle at 70% 30%, rgba(199,163,84,.25), transparent 35%), linear-gradient(90deg, rgba(4,12,24,.95), rgba(4,12,24,.62) 45%, rgba(4,12,24,.22)); }
.hero-content { position: relative; z-index: 2; max-width: 960px; color: white; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 900; color: var(--gold); margin: 0 0 18px; }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { font-size: clamp(54px, 8vw, 116px); line-height: .9; letter-spacing: -.07em; margin-bottom: 28px; }
h2 { font-size: clamp(36px, 5vw, 70px); line-height: 1.1; letter-spacing: -.055em; margin-bottom: 24px; }
h3 { font-size: 20px; letter-spacing: -.03em; }
h4 { font-size: 20px; margin-bottom: 8px; color: var(--kseblue); }
p { line-height: 1.65; }
.hero-copy { font-size: clamp(19px, 2.1vw, 28px); max-width: 760px; color: rgba(255,255,255,.86); margin-bottom: 34px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 900; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--gold); color: #071628; }
.button.secondary { color: white; border: 1px solid rgba(255,255,255,.35); }
.section { padding: 105px 5vw; }
.split { display: grid; grid-template-columns: 1.25fr 1.75fr; gap: 44px; align-items: start; }
.lead { font-size: clamp(20px, 2.25vw, 24px); line-height: 1.35; color: #24364b; }
.feature-panel { background: white; border-radius: 28px; padding: 34px; box-shadow: 0 20px 60px rgba(7,22,40,.08); }
.dark-band { background: linear-gradient(135deg, rgba(0,107,183,.94), rgba(7,22,40,.92)); color: white; position: relative; overflow: hidden; }
.dark-band:before { content: ""; position: absolute; inset: 0; background: url('assets/images/kse-background.png') center/cover no-repeat; opacity: .16; }
.dark-band > * { position: relative; z-index: 1; }
.centered, .section-header { max-width: 960px; margin: 0 auto 48px; text-align: center; }
.centered .lead, .section-header p { color: rgba(255,255,255,.72); }
.section-header p { color: #526174; font-size: 19px; }
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.standards-grid article { border: 1px solid var(--line); background: rgba(255,255,255,.06); border-radius: 24px; padding: 28px; }
.standards-grid span { color: var(--gold); font-weight: 900; }
.category-title { margin: 70px 0 22px; color: var(--navy); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.image-card, .text-cards a { background: white; border-radius: 28px; overflow: hidden; box-shadow: 0 18px 50px rgba(7,22,40,.08); transition: transform .2s ease, box-shadow .2s ease; }
.image-card:hover, .text-cards a:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.image-card img { height: 230px; width: 100%; object-fit: cover; }
.image-card div { padding: 24px; }
.image-card p, .text-cards p { color: #526174; }
.image-card span, .text-cards span, .exec-card a { color: var(--kseblue); font-weight: 900; }
.text-cards a { padding: 28px; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; }
.business a { border-top: 4px solid var(--steel); }
.offer { background: white; }
.compact { max-width: 850px; }
.offer-grid, .belief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-grid div, .belief-grid div { background: var(--ice); border-radius: 24px; padding: 28px; }
.photo-split { grid-template-columns: 1fr 1fr; align-items: center; }
.photo-split img { border-radius: 34px; box-shadow: var(--shadow); height: 540px; width: 100%; object-fit: cover; }
.leadership { background: linear-gradient(135deg, rgba(0,107,183,.94), rgba(7,22,40,.92)); color: white; }
.leadership .section-header p, .leadership .muted { color: rgba(255,255,255,.72); }
.belief-grid { grid-template-columns: repeat(4, 1fr); }
.belief-grid div { background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.exec-section { margin-top: 60px; }
.exec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.exec-card { background: white; color: var(--navy); border-radius: 24px; padding: 18px; }
.exec-photo { aspect-ratio: 1 / 1; border-radius: 18px; background: linear-gradient(135deg, #d8dee7, #eef2f7); display: grid; place-items: center; color: #667; font-weight: 900; margin-bottom: 18px; }
.impact { background: url('assets/images/ABH_Brunch_3-29-2026_165.jpg') center/cover fixed no-repeat; position: relative; }
.impact:before { content: ""; position: absolute; inset: 0; background: rgba(7,22,40,.72); }
.impact-card { position: relative; z-index: 1; max-width: 100%; background: rgba(255,255,255,.65); padding: 44px; border-radius: 32px; }
.final-cta { padding: 110px 5vw; background: linear-gradient(135deg, rgba(0,107,183,.94), rgba(7,22,40,.92)), url('assets/images/kse-background.png') center/cover; color: white; text-align: center; }
.final-cta div { max-width: 900px; margin: auto; }
.final-cta p { font-size: 20px; color: rgba(255,255,255,.76); margin-bottom: 32px; }
.site-footer { background: #030b14; color: rgba(255,255,255,.7); padding: 34px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer img { width: 180px; }
.reveal { animation: fadeUp .9s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1050px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 78px; left: 0; right: 0; background: rgba(7,22,40,.98); display: none; flex-direction: column; align-items: flex-start; padding: 22px 5vw; }
  .site-nav.open { display: flex; }
  .split, .photo-split { grid-template-columns: 1fr; }
  .card-grid, .standards-grid, .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .belief-grid, .exec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .brand img { width: 165px; }
  h1 { font-size: 52px; }
  .section { padding: 76px 6vw; }
  .card-grid, .standards-grid, .offer-grid, .belief-grid, .exec-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
