*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1e3a5f;
  --red: #b03020;
  --cream: #f7f3ec;
  --warm: #ede8df;
  --white: #ffffff;
  --text: #2a2a2a;
  --muted: #666;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 1.05rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 680px;
}

/* HEADER */
header {
  background: var(--navy);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}

nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  transition: color 0.2s;
}

nav a:hover { color: var(--white); }

/* HERO */
.hero {
  background: var(--cream);
  border-bottom: 3px solid var(--navy);
  padding: 3.5rem 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 1.9rem;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.hero-text p {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-img {
  flex: 0 0 220px;
}

.hero-img img {
  width: 100%;
  border: 4px solid var(--navy);
  display: block;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.6rem;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: bold;
  transition: background 0.2s;
}

.btn:hover { background: #152e4d; }

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover { background: var(--cream); }

/* SECTIONS */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--warm);
  border-top: 1px solid #d8d0c4;
  border-bottom: 1px solid #d8d0c4;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0;
}

.section-dark h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.section-dark p {
  font-family: Arial, sans-serif;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* TYPOGRAPHY */
h2 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text);
}

p:last-child { margin-bottom: 0; }

strong { color: var(--navy); }

/* BANNED BINS */
.banned-bins {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.banned-bin {
  text-align: center;
  flex: 0 0 200px;
}

.bin-wrap {
  position: relative;
  display: inline-block;
  width: 180px;
}

.bin-wrap img {
  width: 100%;
  display: block;
}

.bin-wrap-small {
  width: 120px;
}

.bin-wrap-large {
  width: 220px;
}

.no-symbol {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 14px solid rgba(180, 0, 0, 0.9);
  box-sizing: border-box;
  pointer-events: none;
}

.no-symbol::after {
  content: '';
  position: absolute;
  width: 14px;
  background: rgba(180, 0, 0, 0.9);
  top: -14px;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
}

.bin-caption {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.6rem;
  line-height: 1.4;
}

.bin-caption strong {
  color: var(--red);
}

.bin-arrow {
  font-size: 2.5rem;
  color: #aaa;
  align-self: center;
  padding-bottom: 2rem;
}

.bin-wrap-required {
  border: 3px solid var(--red);
}

.required-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.3rem 0;
}

/* PULLQUOTE */
.pullquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--red);
  border-left: 4px solid var(--red);
  padding: 0.75rem 1.25rem;
  margin: 2rem 0;
  line-height: 1.5;
}

/* BETTER WAY LIST */
.better-way-list {
  margin: 1.5rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.better-way-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: #f0f7f0;
  border-left: 4px solid #3a7d44;
  border-radius: 0 4px 4px 0;
}

.better-way-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.better-way-item strong {
  display: block;
  color: #2a5c30;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.better-way-item p {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* OVERRIDE TABLE */
.override-table {
  border: 1px solid #d0c8bc;
  border-radius: 4px;
  margin: 1.25rem 0 1.5rem;
  overflow: hidden;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
}

.override-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #e0d8cc;
  gap: 0.5rem;
}

.override-row:last-child { border-bottom: none; }

.override-header {
  background: var(--navy);
  color: white;
  font-weight: bold;
  font-size: 0.78rem;
  padding: 1rem 0.75rem;
}

.override-header span { color: rgba(255,255,255,0.9); }

.col-head { text-align: center; }

.col {
  text-align: center;
  color: var(--muted);
}

.override-row strong {
  color: var(--red);
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: bold;
  text-align: right;
}

.override-total {
  background: #fff0ee;
}

.override-total strong {
  font-size: 1.05rem;
  color: var(--red);
}

@media (max-width: 640px) {
  .override-row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.8rem;
  }
  .override-header .col-head:not(:last-child) { display: none; }
  .col { display: none; }
  .override-header span:first-child { display: block; }
}

/* LINK MORE */
.link-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
}

.link-more:hover { color: var(--red); border-bottom-color: var(--red); }

.center { text-align: center; }

/* SUPPORT / VENMO */
.venmo-wrap {
  margin: 1.75rem auto;
  display: inline-block;
  text-align: center;
}

.venmo-qr {
  width: 440px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.venmo-label {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.6rem;
  margin-bottom: 0;
}

.disclosure-box {
  background: var(--warm);
  border: 1px solid #d8d0c4;
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  text-align: left;
}

.disclosure-title {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.disclosure-list {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 1.25rem;
  margin-bottom: 0.9rem;
  line-height: 1.7;
}

.disclosure-list li {
  margin-bottom: 0.35rem;
}

.disclosure-note {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.check-info {
  margin-top: 1.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}

.check-info p {
  margin-bottom: 0.5rem;
}

.check-info address {
  font-style: normal;
  color: var(--navy);
  font-weight: bold;
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 1.75rem 0;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.9;
}

.small { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* RESPONSIVE */
@media (max-width: 680px) {
  .hero-inner { flex-direction: column-reverse; gap: 1.5rem; }
  .hero-img { flex: none; width: 160px; }
  .hero-text h1 { font-size: 1.5rem; }
  nav { gap: 1rem; }
  .narrow { max-width: 100%; }

  /* Bin comparisons: stack vertically on mobile */
  .banned-bins {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .bin-arrow {
    transform: rotate(90deg);
    padding-bottom: 0;
    font-size: 2rem;
  }

  .banned-bin { text-align: center; }

  .bin-wrap-small { width: 140px; }
  .bin-wrap-large { width: 180px; }
  .bin-wrap { width: 160px; }

  /* Override table: collapse to label + total only */
  .override-row {
    grid-template-columns: 1fr auto;
    font-size: 0.85rem;
  }

  .override-header { display: none; }
  .col { display: none; }

  /* Better way items: tighten on small screens */
  .better-way-item { flex-direction: column; gap: 0.5rem; }

  /* Pullquote */
  .pullquote { font-size: 1rem; }

  h2 { font-size: 1.4rem; }
}
