/* Allied Waste — Bins microsite — Coming Soon
   Matched to the Figma "Specialty Bins" prototype (node 91:2):
   flat solid colour blocks, bordered panels, no drop-shadow cards. */

/* Self-hosted brand font — the exact 4 weights served by Adobe Fonts kit
   hzm5yww (verified against https://use.typekit.net/hzm5yww.css). That kit
   contains "allotrope" at 400/500/600/700 only — no heavy/italic cut and
   no ropa-soft-pro, so those are not used here. Self-hosted so rendering
   doesn't depend on the kit's own CDN/loader. */
@font-face {
  font-family: 'allotrope';
  src: url('../fonts/allotrope-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'allotrope';
  src: url('../fonts/allotrope-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'allotrope';
  src: url('../fonts/allotrope-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'allotrope';
  src: url('../fonts/allotrope-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #1F2B5C;
  --navy-deep: #161F44;
  --yellow: #FDD80C;
  --sky: #1C9FCC;
  --red: #CC2229;
  --gray-mid: #6E6F72;
  --gray-dark: #555555;
  --gray-light: #F7F8F8;
  --white: #FFFFFF;
  --line: #DDE0EA;

  --bin-general: #CC2229;
  --bin-mixed: #D9A400;
  --bin-paper: #3B8FC9;
  --bin-organics: #3A8C4C;
  --bin-timber: #8B6337;
  --bin-ecosystem: #1C9FCC;
  --bin-safety: #1F2B5C;

  --font-primary: 'allotrope', 'Barlow', 'Inter', sans-serif;
  --font-heavy:   'allotrope', 'Barlow', 'Inter', sans-serif;
  --font-button:  'allotrope', 'Nunito', 'Inter', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.site-header {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.logo img { display: block; }
.site-header .logo img { width: 200px; height: auto; }
.btn-outline-sm {
  display: inline-block;
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  border: 1.5px solid var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-outline-sm:hover { background: var(--navy); color: var(--white); }

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 44px;
}
.hero h1 {
  font-family: var(--font-heavy);
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: clamp(34px, 5.6vw, 48px);
  line-height: 1.05;
  max-width: 620px;
}
.hero .lede {
  margin-top: 10px;
  font-size: 1.1em;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
}
.hero-cta {
  margin-top: 24px;
}

/* ── Downloads section ── */
.downloads { padding: 44px 0 48px; }

.panel {
  border: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px 52px;
}
.panel h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 8px;
}
.panel > p {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-mid);
  max-width: 560px;
  margin-bottom: 28px;
}

.doc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--bin-color, var(--navy));
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  line-height: 1.2;
}
.doc-btn.on-yellow { color: var(--navy); }
.doc-btn .arrow { font-family: var(--font-button); font-weight: 500; font-size: 15px; }
.doc-btn .filesize {
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 11px;
  opacity: 0.75;
  margin-left: -2px;
}

/* ── Help / contact band ── */
.help-band {
  background: var(--navy);
  padding: 26px 0;
}
.help-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.help-text strong {
  display: block;
  font-family: var(--font-heavy);
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: clamp(34px, 5.6vw, 36px);
  line-height: 1.05;
  color: var(--white);
}
.help-text span {
  display: block;
  margin-top: 10px;
  font-size: 1.1em;
  color: rgba(255,255,255,0.6);
}
.btn-call {
  display: inline-block;
  background: var(--sky);
  color: var(--white);
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-deep);
  padding: 22px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer .logo img { width: 200px; height: auto; }
.footer-tagline {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
}
.footer-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-align: right;
  line-height: 1.6;
}
.footer-meta a { text-decoration: none; }
.footer-meta a:hover { color: var(--white); }

@media (max-width: 900px) {
  .doc-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding: 36px 0 32px; }
  .panel { padding: 28px 20px 30px; }
  .doc-row { grid-template-columns: 1fr; }
  .help-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }

  .hero-cta {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 18px 24px;
    margin-top: 28px;
  }
  .help-inner .btn-call {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 18px 24px;
  }
}
