*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: oklch(97% 0.012 45);
  color: oklch(32% 0.01 40);
}

a { color: #EE232D; }
a:hover { color: #c41c25; }

/* ── NAV ─────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  background: oklch(97% 0.012 45);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: #EE232D;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: oklch(20% 0.01 40);
}

.nav-links a:hover,
.nav-links a.nav-current { color: #EE232D; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: oklch(20% 0.01 40);
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
}

.nav-drawer.open { display: block; }

.nav-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 240px;
  background: oklch(97% 0.012 45);
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}

.nav-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: oklch(20% 0.01 40);
  margin-bottom: 28px;
}

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav-drawer-links a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: oklch(20% 0.01 40);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.nav-drawer-links a:hover,
.nav-drawer-links a.nav-current { color: #EE232D; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: #EE232D;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover { background: #c41c25; color: white; }

.btn-outline {
  display: inline-block;
  border: 1px solid #EE232D;
  color: #EE232D;
  background: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
}

.btn-outline:hover { background: rgba(255,255,255,0.9); color: #c41c25; border-color: #c41c25; }

.btn-maroon {
  display: inline-block;
  background: oklch(45% 0.15 10);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-maroon:hover { opacity: 0.88; color: white; }

.badge {
  display: inline-block;
  background: oklch(90% 0.07 350);
  color: oklch(40% 0.16 25);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 36px 64px;
  font-size: 13px;
  color: oklch(45% 0.01 40);
  border-top: 1px solid rgba(0,0,0,0.07);
}

/* ── RESPONSIVE (nav + footer) ───────────────────────── */
@media (max-width: 768px) {
  .site-nav { padding: 18px 20px; }
  .nav-logo { font-size: 17px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .site-footer { padding: 24px 20px; font-size: 11px; }
}
