:root {
  --ink: #1B2340;
  --yellow: #F5C400;
  --teal: #0F766E;
  --paper: #FAF9F6;
  --font-display: 'Libre Franklin', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); }

.quick-exit-btn {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 200;
  background: #B3261E;
  color: white;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.quick-exit-btn:hover { background: #8f1e18; }

.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.hero-inner {
  max-width: 1080px;
  width: 100%;
  text-align: center;
  color: var(--paper);
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 10px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 46px);
  margin: 0 0 14px;
}

.tagline {
  font-size: 17px;
  color: #E5E2DA;
  margin: 0 0 48px;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.nav-card {
  background: rgba(250, 249, 246, 0.97);
  color: var(--ink);
  border-radius: 14px;
  padding: 26px 22px;
  text-decoration: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.card-image {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}
.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}
.card-icon { width: 90px; height: 90px; }

.nav-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 2px;
}
.card-sub {
  font-size: 13px;
  color: #5B6370;
  margin: 0 0 10px;
  font-style: italic;
}
.card-desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px;
  flex-grow: 1;
}
.read-more {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
}

@media (max-width: 640px) {
  .hero { padding: 40px 16px; }
}
