/* NAPA Brand Standards v2.1 - Color Palette */
:root {
  --napa-blue: #0A0094;
  --napa-yellow: #FFC836;
  --stainless-gray: #DADAD9;
  --gunmetal-gray: #878786;
  --white: #FFFFFF;

  /* Layout tokens */
  --radius: 12px;
  --pad: 18px;
  --max: 1100px;
}

/* Typography: Franklin Gothic as NAPA Sans fallback */
@font-face {
  font-family: 'Franklin Gothic';
  src: local('Franklin Gothic Medium'), local('FranklinGothic-Medium');
  font-weight: 500;
  font-style: normal;
}

* { box-sizing: border-box }
html, body { height: 100% }

body {
  margin: 0;
  font-family: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
  font-weight: 400;
  color: var(--white);
  background: var(--napa-blue);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px }

/* Logo Banner */
.logo-banner {
  background: var(--napa-blue);
  padding: 20px 0;
  text-align: center;
}

.header-logo {
  max-width: 320px;
  height: auto;
  display: inline-block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--napa-blue);
  border-bottom: 1px solid var(--gunmetal-gray);
}

.header-inner { display: flex; align-items: center; gap: 16px; padding-top: 12px; padding-bottom: 12px }

.brand { display: flex; align-items: center; gap: 10px }
.brand-mark { font-size: 20px }
.brand-title { display: block; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase }
.brand-subtitle { display: block; font-size: 12px; color: var(--stainless-gray) }

.nav { margin-left: auto; display: flex; gap: 14px; align-items: center }
.nav a { color: var(--stainless-gray); font-size: 14px; padding: 8px 10px; border-radius: 8px }
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.1) }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--napa-yellow);
  color: var(--napa-blue);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cta:hover { opacity: 0.9 }

/* Hero */
.hero { padding: 54px 0 24px }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 22px; align-items: stretch }

/* H1: NAPA Sans Bold Condensed, ALL CAPS */
.hero h1 {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 .highlight { color: var(--napa-yellow) }
.muted { color: var(--stainless-gray) }

.hero p { color: var(--stainless-gray); font-size: 16px; max-width: 58ch }

.hero-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 2px solid var(--gunmetal-gray);
  background: transparent;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}
.button:hover { border-color: var(--stainless-gray) }

.button.primary {
  background: var(--napa-yellow);
  border-color: var(--napa-yellow);
  color: var(--napa-blue);
  font-weight: 700;
}
.button.primary:hover { opacity: 0.9 }

/* Notice box */
.notice {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--gunmetal-gray);
  color: var(--stainless-gray);
  font-size: 13px;
}

/* Hero card */
.hero-card {
  border: 1px solid var(--gunmetal-gray);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-media {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gunmetal-gray);
  background: rgba(0, 0, 0, 0.2);
}
.hero-media img { width: 100%; height: auto; display: block }

.card-top { display: flex; gap: 8px; flex-wrap: wrap }

.pill {
  font-size: 12px;
  color: var(--stainless-gray);
  padding: 6px 10px;
  border: 1px solid var(--gunmetal-gray);
  border-radius: 999px;
  background: transparent;
}

.card-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px }

.kpi {
  border: 1px solid var(--gunmetal-gray);
  border-radius: 10px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.15);
}
.kpi-num { font-size: 20px; font-weight: 800; color: var(--napa-yellow) }
.kpi-label { font-size: 12px; color: var(--stainless-gray) }

.card-foot ul { margin: 8px 0 0 18px; color: var(--stainless-gray); font-size: 13px }

/* Sections */
.section { padding: 42px 0 }
.section.alt {
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid var(--gunmetal-gray);
  border-bottom: 1px solid var(--gunmetal-gray);
}

/* H2: NAPA Sans Bold Condensed, Title Case */
h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lead { margin: 0 0 16px; color: var(--stainless-gray); max-width: 70ch }

/* Grid layouts */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px }
.grid.two { grid-template-columns: repeat(2, 1fr) }

/* Store & pay cards */
.store, .pay {
  border: 1px solid var(--gunmetal-gray);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.store h3, .pay h3 {
  margin: 0 0 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta { margin: 0 0 12px; color: var(--stainless-gray); font-size: 13px }

.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px }

/* Links - yellow accent */
.link {
  color: var(--napa-yellow);
  font-weight: 600;
  font-size: 14px;
}
.link:hover { text-decoration: underline }

.fine { color: var(--stainless-gray); font-size: 13px; margin-top: 10px }

.hours { color: var(--stainless-gray); font-size: 13px; display: grid; gap: 4px; margin-top: 8px }

/* Split layout */
.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; align-items: start }

.panel {
  border: 1px solid var(--gunmetal-gray);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.15);
  padding: 16px;
}

.bullets { color: var(--stainless-gray); margin: 12px 0 0 18px }

/* Contact box */
.contact-box {
  border: 1px solid var(--gunmetal-gray);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
  display: grid;
  gap: 10px;
  max-width: 520px;
}

/* Logo container - min height 34px per brand standards */
.logo-wrap {
  margin-top: 12px;
  border: 1px solid var(--gunmetal-gray);
  border-radius: 10px;
  padding: 16px;
  background: var(--white);
}
.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 260px;
  min-height: 34px;
}

/* Footer */
.footer { padding: 22px 0; color: var(--stainless-gray) }
.footer-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap }

.small { font-size: 13px; color: var(--stainless-gray) }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .split { grid-template-columns: 1fr }
  .grid { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 520px) {
  .nav { display: none }
  .hero h1 { font-size: 30px }
  .grid { grid-template-columns: 1fr }
  .grid.two { grid-template-columns: 1fr }
}
