/* ============================================
   MIDWEST BIN STORES — styles.css
   Design: Editorial Utility / Treasure-Hunt Bold
   Fonts: DM Serif Display + DM Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── CSS Variables ── */
:root {
  --gold:       #F5A623;
  --gold-light: #FDECC8;
  --gold-dark:  #C07D0A;
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E45;
  --slate:      #2C3E55;
  --cream:      #FAF8F3;
  --warm-white: #FFFDF9;
  --gray-100:   #F4F2ED;
  --gray-200:   #E8E4DC;
  --gray-400:   #9E9688;
  --gray-600:   #5C5749;
  --gray-800:   #2D2A24;
  --red-accent: #D94F2B;
  --green-ok:   #2D7A4F;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  18px;
  --radius-xl:  32px;

  --shadow-card: 0 2px 8px rgba(13,27,42,0.08), 0 0 0 1px rgba(13,27,42,0.05);
  --shadow-lift: 0 8px 32px rgba(13,27,42,0.14), 0 2px 8px rgba(13,27,42,0.08);
  --shadow-gold: 0 4px 20px rgba(245,166,35,0.25);

  --max-width: 1180px;
  --col-gap:   24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--gold);
  color: var(--navy); padding: 8px 16px; z-index: 999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════ */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 24px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--warm-white);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo .logo-icon {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.site-logo span.accent { color: var(--gold); }

.site-nav {
  display: flex; gap: 4px; align-items: center;
}
.site-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.site-nav a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 7px 14px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: #e8941a !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: #fff;
}
.nav-toggle svg { display: block; }

/* ── Breadcrumb ── */
.breadcrumb-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex; gap: 6px; align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb-inner a { color: rgba(255,255,255,0.65); }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-inner .current { color: var(--gold); }

/* ═══════════════════════════════════════════
   HERO — HOMEPAGE
═══════════════════════════════════════════ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 72px 24px 80px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(245,166,35,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(245,166,35,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-stats {
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.hero-search {
  display: flex; gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.3), var(--shadow-lift);
}
.hero-search input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--gray-800);
  outline: none;
}
.hero-search input::placeholder { color: var(--gray-400); }
.hero-search button {
  padding: 14px 22px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.hero-search button:hover { background: var(--gold-dark); }

/* ═══════════════════════════════════════════
   STATE GRID — Homepage
═══════════════════════════════════════════ */
.state-grid-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}
.section-header {
  margin-bottom: 36px;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.15;
}
.section-header p {
  color: var(--gray-600);
  margin-top: 10px;
  font-size: 1rem;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.state-card {
  background: var(--warm-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  overflow: hidden;
}
.state-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s;
}
.state-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.state-card:hover::after { transform: scaleX(1); }
.state-abbr {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}
.state-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
}
.state-count {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}
.state-arrow {
  margin-top: auto;
  color: var(--gold);
  font-size: 1.1rem;
  align-self: flex-end;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS STRIP
═══════════════════════════════════════════ */
.how-strip {
  background: var(--navy);
  padding: 60px 24px;
}
.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.how-strip .section-header h2 { color: var(--warm-white); }
.how-strip .section-label { color: var(--gold); }
.how-strip .section-header p { color: rgba(255,255,255,0.55); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.how-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.how-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.how-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 8px;
}
.how-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   CITY GRID (State Pages)
═══════════════════════════════════════════ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.city-card {
  background: var(--warm-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.city-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.city-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
}
.city-card-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  display: flex; gap: 12px;
}
.city-card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.city-card-link {
  margin-top: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: flex; align-items: center; gap: 4px;
}

/* ═══════════════════════════════════════════
   STORE LISTING CARDS (City Pages)
═══════════════════════════════════════════ */
.store-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }

.store-card {
  background: var(--warm-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}
.store-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
}
.store-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--gold-light) 100%);
}
.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 100px;
}
.store-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
  grid-column: 1 / -1;
}
.store-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem;
  color: var(--gray-600);
  grid-column: 1 / -1;
}
.store-meta-item {
  display: flex; align-items: center; gap: 5px;
}
.store-meta-item .icon { font-size: 14px; }
.store-pricing-row {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.price-chip {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.price-chip.day1 { background: var(--navy); color: var(--gold); }
.price-chip.midweek { background: var(--slate); color: #a8d8b8; }
.price-chip.endweek { background: #1a3a28; color: #6ecf95; }
.store-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  grid-column: 1 / -1;
}
.store-tags {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

/* ═══════════════════════════════════════════
   PAGE HERO (State/City/Article pages)
═══════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 48px 24px 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 120% at 100% 50%, rgba(245,166,35,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin-bottom: 20px;
}
.page-hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-chip {
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════
   TWO-COL LAYOUT (content + sidebar)
═══════════════════════════════════════════ */
.content-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .content-wrap { grid-template-columns: 1fr; }
}
.main-content { min-width: 0; }

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: var(--warm-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.widget-head {
  background: var(--navy);
  color: var(--warm-white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 18px;
}
.widget-body { padding: 18px; }
.widget-link-list { display: flex; flex-direction: column; gap: 6px; }
.widget-link-list a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color .15s;
}
.widget-link-list a:last-child { border-bottom: none; }
.widget-link-list a:hover { color: var(--gold-dark); }
.widget-link-list .count {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
}

/* ── Info Box ── */
.info-box {
  background: var(--gold-light);
  border: 1.5px solid #f0cd85;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.info-box p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { margin-top: 48px; }
.faq-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}
.faq-question {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: flex-start; gap: 12px;
  user-select: none;
}
.faq-question::before {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.2;
  transition: transform .2s;
}
.faq-item.open .faq-question::before { transform: rotate(45deg); }
.faq-answer {
  display: none;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  padding: 12px 0 4px 26px;
}
.faq-item.open .faq-answer { display: block; }

/* ── Guide Article prose ── */
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-light);
}
.prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.prose p { margin-bottom: 16px; color: var(--gray-700); line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 16px 20px; }
.prose li { margin-bottom: 8px; color: var(--gray-700); line-height: 1.65; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose strong { color: var(--gray-800); font-weight: 700; }
.prose a { color: var(--gold-dark); text-decoration: underline; }
.prose a:hover { color: var(--navy); }

/* ═══════════════════════════════════════════
   TOOL PAGE
═══════════════════════════════════════════ */
.tool-wrap {
  background: var(--warm-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 28px;
}
.tool-header {
  background: var(--navy);
  padding: 28px;
  color: var(--warm-white);
}
.tool-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.tool-header p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.tool-body { padding: 28px; }

.tool-select-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.tool-select-row label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  display: block;
  margin-bottom: 6px;
}
.tool-select-row select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: #fff;
  color: var(--gray-800);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E9688' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.tool-select-row select:focus { outline: none; border-color: var(--gold); }

.restock-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.restock-day {
  border-radius: var(--radius-sm);
  padding: 12px 6px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
}
.restock-day .day-name {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.restock-day .day-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}
.restock-day.restock {
  background: var(--navy);
  border-color: var(--navy);
}
.restock-day.restock .day-name { color: rgba(255,255,255,0.5); }
.restock-day.restock .day-price { color: var(--gold); }
.restock-day.best-value {
  background: #102a1a;
  border-color: #2D7A4F;
}
.restock-day.best-value .day-name { color: #6ecf95; }
.restock-day.best-value .day-price { color: #6ecf95; }

.tool-tip {
  background: var(--gold-light);
  border: 1px solid #f0cd85;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--gray-700);
}
.tool-tip strong { color: var(--navy); }

/* ═══════════════════════════════════════════
   GUIDES INDEX GRID
═══════════════════════════════════════════ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.guide-card {
  background: var(--warm-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.guide-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.guide-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}
.guide-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.25;
}
.guide-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.55; }
.guide-read-more {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: flex; align-items: center; gap: 4px;
}

/* ═══════════════════════════════════════════
   PDF CTA BANNER
═══════════════════════════════════════════ */
.pdf-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 48px 0;
  flex-wrap: wrap;
}
.pdf-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--gold);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.pdf-text { flex: 1; min-width: 200px; }
.pdf-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--warm-white);
  margin-bottom: 6px;
}
.pdf-text p { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.pdf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background .15s;
}
.pdf-btn:hover { background: var(--gold-dark); color: #fff; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 56px 24px 32px;
  border-top: 3px solid var(--gold);
  margin-top: 64px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 240px;
}
.footer-col h4 {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color .15s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 700px;
}

/* ═══════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 56px 0; }
.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 32px 0;
}
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 100px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: background .15s;
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

/* ── Disclaimer ── */
.disclaimer {
  background: var(--gray-100);
  border-left: 3px solid var(--gray-400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 24px 0;
}

/* ── Callout ── */
.callout {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--warm-white);
  margin: 28px 0;
}
.callout h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.callout p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* ── Related links row ── */
.related-links {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 20px 0;
}
.related-link {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  transition: background .15s, border-color .15s, color .15s;
}
.related-link:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  color: var(--navy);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 65px; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 16px;
    gap: 2px;
    z-index: 99;
  }
  .nav-toggle { display: flex; }

  .hero-stats { gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .tool-select-row { grid-template-columns: 1fr; }
  .restock-grid { grid-template-columns: repeat(4, 1fr); }

  .pdf-banner { padding: 28px; }
  .store-card { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-search { flex-direction: column; border-radius: var(--radius-md); }
  .hero-search input, .hero-search button { border-radius: var(--radius-sm); }
  .restock-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Print ── */
@media print {
  .site-header, .site-footer, .sidebar, .pdf-banner { display: none; }
  .content-wrap { grid-template-columns: 1fr; }
}
