:root {
  --nq-navy: #0c1a2e;
  --nq-navy-soft: #152642;
  --nq-gold: #c9a227;
  --nq-gold-hover: #dbb42e;
  --nq-cream: #f8f6f1;
  --nq-muted: #5c6b7f;
}

html {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--nq-cream);
  color: #1a2332;
  min-height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, .nq-serif {
  font-family: 'DM Serif Display', Georgia, serif;
}

.nq-header {
  background: var(--nq-navy);
  box-shadow: 0 2px 12px rgba(12, 26, 46, 0.15);
  flex-shrink: 0;
}

.nq-header .navbar-brand {
  color: #fff;
  padding: 0;
  line-height: 1;
}

.nq-header .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.nq-header .nav-link:hover,
.nq-header .nav-link.active {
  color: var(--nq-gold);
}

.nq-header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.nq-header .navbar-toggler-icon {
  filter: invert(1);
}

.nq-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: none;
}

.nq-footer-logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: none;
}

.btn-nq-gold {
  background: var(--nq-gold);
  border-color: var(--nq-gold);
  color: var(--nq-navy);
  font-weight: 600;
}

.btn-nq-gold:hover {
  background: var(--nq-gold-hover);
  border-color: var(--nq-gold-hover);
  color: var(--nq-navy);
}

.btn-nq-outline {
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-weight: 600;
}

.btn-nq-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.nq-hero {
  background: linear-gradient(145deg, var(--nq-navy) 0%, var(--nq-navy-soft) 55%, #1e3a5f 100%);
  color: #fff;
  padding: 4.5rem 0 5rem;
}

.nq-hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
}

.nq-hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.18);
  color: var(--nq-gold);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.nq-pillar {
  background: #fff;
  border: 1px solid #e4e0d6;
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nq-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 26, 46, 0.08);
}

.nq-pillar-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.nq-pillar-icon--learn { background: #e8f0fe; color: #1a56db; }
.nq-pillar-icon--shows { background: #fef3e2; color: #b45309; }
.nq-pillar-icon--shops { background: #e8f5ee; color: #047857; }

.nq-section {
  padding: 4rem 0;
}

.nq-section-alt {
  background: #fff;
  border-top: 1px solid #e4e0d6;
  border-bottom: 1px solid #e4e0d6;
}

.nq-zip-card {
  background: #fff;
  border: 1px solid #e4e0d6;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 32rem;
}

.nq-notice {
  background: #fff8e6;
  border: 1px solid #f0dfa8;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.nq-page-hero {
  background: var(--nq-navy);
  color: #fff;
  padding: 3rem 0;
}

.nq-footer {
  background: var(--nq-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
  flex-shrink: 0;
}

.form-control {
  color: #1a2332;
}

.form-control::placeholder {
  color: #9aa8ba;
  opacity: 1;
}

.nq-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.nq-footer a:hover {
  color: var(--nq-gold);
}

.nq-footer-label {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.nq-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1.25rem;
}