/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --ink:       #0D0D0D;
  --ink2:      #1A1A1A;
  --red:       #C0201F;
  --red-hot:   #E0302F;
  --cream:     #F2EDE4;
  --cream2:    #E8E0D4;
  --dust:      #B8AFA2;
  --gold:      #C8921A;
  --white:     #FFFFFF;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── ANN BAR ── */
.ann-bar {
  background: var(--red);
  padding: 9px 0;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.ann-bar a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 32px;
}
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center;
  gap: 36px; list-style: none;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,237,228,0.6); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--red); color: var(--white) !important;
  padding: 10px 24px; text-decoration: none;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--red-hot) !important; }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 6px;
  background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: 0.3s; }

/* ── LOCAL HERO ── */
.local-hero {
  position: relative;
  padding: 88px 0 80px;
  background: var(--ink2);
  overflow: hidden;
}
.local-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/11.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.12) saturate(0.4);
}
.local-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.local-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(242,237,228,0.35);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(242,237,228,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(242,237,228,0.7); }
.breadcrumb span { color: rgba(242,237,228,0.18); }
.local-hero-tag {
  display: inline-block;
  background: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); padding: 4px 12px;
  margin-bottom: 20px;
}
.local-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700; line-height: 0.95;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--cream); margin-bottom: 22px;
}
.local-hero h1 em { font-style: normal; color: var(--red); }
.local-hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300; color: rgba(242,237,228,0.65);
  line-height: 1.7; max-width: 600px; margin-bottom: 36px;
}
.hero-actions {
  display: flex; align-items: center;
  gap: 18px; flex-wrap: wrap;
}
.btn-primary {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 15px 38px; text-decoration: none;
  display: inline-block; transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-hot); }
.btn-ghost {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242,237,228,0.7); text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  border-bottom: 1px solid rgba(242,237,228,0.2);
  padding-bottom: 3px; transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--cream); border-color: rgba(242,237,228,0.5); }
.btn-ghost svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--cream); border-bottom: 1px solid var(--cream2); }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1200px; margin: 0 auto;
}
.trust-item {
  padding: 20px 24px; display: flex;
  align-items: center; gap: 13px;
  border-right: 1px solid var(--cream2);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; flex-shrink: 0; }
.trust-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); line-height: 1.2;
}
.trust-sub { font-size: 12px; color: #777; margin-top: 2px; line-height: 1.4; }

/* ── SHARED SECTION ELEMENTS ── */
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--red); flex-shrink: 0;
}
.section-h {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700; line-height: 1.0;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--cream);
}
.section-h .red { color: var(--red); }
.section-h .muted { color: rgba(242,237,228,0.3); }
.section-h-dark { color: var(--ink); }
.section-h-dark .red { color: var(--red); }

/* ── INTRO / ABOUT SECTION ── */
.intro-section { background: var(--ink2); padding: 88px 0; }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.intro-body {
  font-size: 16px; font-weight: 300;
  color: rgba(242,237,228,0.65); line-height: 1.85;
  margin-top: 24px;
}
.intro-body p { margin-bottom: 18px; }
.intro-body p:last-child { margin-bottom: 0; }
.intro-body strong { font-weight: 600; color: var(--cream); }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.why-item {
  display: flex; align-items: flex-start;
  gap: 18px; padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--red);
  padding-top: 3px; flex-shrink: 0; width: 24px;
}
.why-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 4px;
}
.why-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(242,237,228,0.45); line-height: 1.65;
}

/* ── SERVICES SECTION ── */
.services-section { background: var(--ink); padding: 88px 0; }
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end; margin-bottom: 52px;
}
.services-intro-right {
  font-size: 15px; font-weight: 300;
  color: rgba(242,237,228,0.45); line-height: 1.8; padding-bottom: 4px;
}
.services-intro-right strong { font-weight: 600; color: rgba(242,237,228,0.75); }

.dumpster-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(255,255,255,0.04);
}
.dumpster-card {
  background: var(--ink2); padding: 48px 40px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.dumpster-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: transparent; transition: background 0.3s;
}
.dumpster-card:hover { background: #1e1e1e; }
.dumpster-card:hover::before { background: var(--red); }
.dumpster-card.featured::before { background: var(--red); }
.dumpster-card.featured { background: #181818; }
.dc-badge {
  position: absolute; top: 20px; right: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--red); color: var(--white); padding: 4px 10px;
}
.dc-bg-num {
  position: absolute; bottom: -10px; right: -8px;
  font-family: 'Oswald', sans-serif;
  font-size: 88px; font-weight: 700; line-height: 0.85;
  color: rgba(242,237,228,0.05); letter-spacing: -0.04em;
  pointer-events: none; user-select: none;
}
.dc-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.dc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 40px; font-weight: 700;
  color: var(--cream); line-height: 1; margin-bottom: 4px;
}
.dc-price {
  font-family: 'Oswald', sans-serif;
  font-size: 19px; font-weight: 500;
  color: var(--gold); margin-bottom: 18px;
}
.dc-desc {
  font-size: 14px; font-weight: 300;
  color: rgba(242,237,228,0.45); line-height: 1.7; margin-bottom: 24px;
}
.dc-list {
  list-style: none; display: flex;
  flex-direction: column; gap: 8px;
  margin-bottom: 32px; flex: 1;
}
.dc-list li {
  font-size: 13px; color: rgba(242,237,228,0.6);
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.4;
}
.dc-list li::before { content: '—'; color: var(--red); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.dc-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 0; text-align: center; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.15); color: var(--cream);
  transition: border-color 0.2s, background 0.2s; display: block; position: relative; z-index: 1;
}
.dc-btn:hover, .dumpster-card.featured .dc-btn { border-color: var(--red); background: var(--red); }
.dumpster-card.featured .dc-btn:hover { background: var(--red-hot); }
.pricing-note {
  text-align: center; margin-top: 24px;
  font-size: 13px; font-weight: 300;
  color: rgba(242,237,228,0.3); line-height: 1.6;
}
.pricing-note a { color: var(--dust); text-decoration: none; }

/* ── USE CASES ── */
.uses-section { background: var(--cream); padding: 88px 0; }
.uses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 48px; background: var(--cream2);
}
.use-card {
  background: var(--cream); padding: 32px 26px; transition: background 0.25s;
}
.use-card:hover { background: var(--ink); }
.use-card:hover .use-title { color: var(--cream); }
.use-card:hover .use-text { color: rgba(242,237,228,0.5); }
.use-card:hover .tag { background: rgba(192,32,31,0.15); border-color: rgba(192,32,31,0.3); color: #e87070; }
.use-num {
  font-family: 'Oswald', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.16em; color: var(--red); margin-bottom: 14px;
}
.use-icon { font-size: 28px; margin-bottom: 12px; }
.use-title {
  font-family: 'Oswald', sans-serif; font-size: 19px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--ink); margin-bottom: 10px; transition: color 0.25s;
}
.use-text {
  font-size: 13px; font-weight: 300; color: #666;
  line-height: 1.7; margin-bottom: 18px; transition: color 0.25s;
}
.use-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: 'Oswald', sans-serif; font-size: 10px;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(192,32,31,0.08); border: 1px solid rgba(192,32,31,0.2);
  color: var(--red); padding: 3px 9px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

/* ── PROJECTS ── */
.projects-section { background: var(--ink2); padding: 88px 0; }
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 48px; background: rgba(255,255,255,0.04);
}
.project-card {
  background: var(--ink2); padding: 28px 24px;
  border-left: 3px solid transparent; transition: border-color 0.25s, background 0.25s;
}
.project-card:hover { border-color: var(--red); background: #1c1c1c; }
.project-icon { font-size: 24px; margin-bottom: 12px; }
.project-title {
  font-family: 'Oswald', sans-serif; font-size: 16px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--cream); margin-bottom: 8px;
}
.project-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(242,237,228,0.45); line-height: 1.65;
}

/* ── QUOTE FORM ── */
.quote-section { background: var(--ink); padding: 88px 0; position: relative; overflow: hidden; }
.quote-section::before {
  content: 'QUOTE';
  position: absolute; top: 50%; right: -20px;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.016); letter-spacing: -0.04em;
  line-height: 1; pointer-events: none; white-space: nowrap;
}
.quote-grid {
  display: grid; grid-template-columns: 1fr 500px;
  gap: 72px; align-items: start;
}
.quote-intro { font-size: 15px; font-weight: 300; color: rgba(242,237,228,0.5); line-height: 1.8; margin-top: 20px; }
.quote-intro strong { font-weight: 600; color: rgba(242,237,228,0.8); }
.quote-perks { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.quote-perk {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.quote-perk:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.perk-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.perk-title {
  font-family: 'Oswald', sans-serif; font-size: 15px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--cream); margin-bottom: 3px;
}
.perk-desc { font-size: 13px; font-weight: 300; color: rgba(242,237,228,0.4); line-height: 1.6; }

.form-card {
  background: var(--cream); color: var(--ink);
  padding: 40px 36px; position: sticky; top: 88px;
}
.form-tag {
  display: inline-block; background: var(--red);
  font-family: 'Oswald', sans-serif; font-size: 10px;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); padding: 4px 12px; margin-bottom: 16px;
}
.form-h {
  font-family: 'Oswald', sans-serif; font-size: 26px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--ink); line-height: 1.1; margin-bottom: 5px;
}
.form-sub { font-size: 13px; color: #777; margin-bottom: 22px; line-height: 1.55; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.fgroup { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.fgroup label {
  font-family: 'Oswald', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #444;
}
.fgroup input, .fgroup select, .fgroup textarea {
  padding: 10px 13px; border: 1.5px solid #d8d2c8;
  font-family: 'Source Sans 3', sans-serif; font-size: 14px;
  color: var(--ink); outline: none; background: #faf7f3;
  border-radius: 0; width: 100%; transition: border-color 0.2s;
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--red); background: #fff; }
.fgroup textarea { resize: vertical; min-height: 68px; }
.consent-wrap { background: #f0ebe3; border-left: 2px solid #c8b89a; padding: 11px 13px; margin-bottom: 8px; }
.consent-label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 11px; color: #666; line-height: 1.5; cursor: pointer;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0; width: 14px; height: 14px; margin-top: 1px; accent-color: var(--red);
}
.form-btn {
  width: 100%; font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--red); color: var(--white); border: none;
  padding: 16px; cursor: pointer; margin-top: 4px; transition: background 0.2s;
}
.form-btn:hover { background: var(--red-hot); }

/* ── FAQ ── */
.faq-section { background: var(--ink2); padding: 88px 0; }
.faq-layout { display: grid; grid-template-columns: 300px 1fr; gap: 72px; align-items: start; }
.faq-sidebar { position: sticky; top: 88px; }
.faq-sidebar .section-h { margin-bottom: 16px; }
.faq-sidebar p { font-size: 14px; font-weight: 300; color: rgba(242,237,228,0.4); line-height: 1.75; margin-bottom: 28px; }
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--cream);
  text-align: left; font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  transition: color 0.2s;
}
.faq-q.open { color: var(--red); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: currentColor; transition: transform 0.3s, opacity 0.3s; }
.faq-icon::before { width: 1px; height: 12px; top: 3px; left: 8.5px; }
.faq-icon::after  { width: 12px; height: 1px; top: 8.5px; left: 3px; }
.faq-q.open .faq-icon::before { transform: rotate(90deg); opacity: 0; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.38s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; font-weight: 300; color: rgba(242,237,228,0.5); line-height: 1.8; }

/* ── SERVICE AREAS STRIP ── */
.areas-strip { background: var(--ink); padding: 72px 0; position: relative; overflow: hidden; }
.areas-strip::before {
  content: 'AZ'; position: absolute; right: -40px; bottom: -60px;
  font-family: 'Oswald', sans-serif; font-size: 320px; font-weight: 700;
  color: rgba(255,255,255,0.018); line-height: 1; pointer-events: none;
}
.areas-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; margin-top: 40px; background: rgba(255,255,255,0.04);
}
.area-card {
  background: var(--ink2); padding: 24px 20px; text-align: center;
  transition: background 0.2s;
}
.area-card:hover { background: #1c1c1c; }
.area-card.current { background: rgba(192,32,31,0.12); border-top: 2px solid var(--red); }
.area-name {
  font-family: 'Oswald', sans-serif; font-size: 16px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(242,237,228,0.5); transition: color 0.2s;
}
.area-card:hover .area-name { color: var(--cream); }
.area-card.current .area-name { color: var(--cream); }
.area-card a { text-decoration: none; display: block; }
.area-sub { font-size: 11px; color: rgba(242,237,228,0.25); margin-top: 4px; letter-spacing: 0.08em; }
.area-card.current .area-sub { color: var(--red); font-weight: 500; }

/* ── CTA BANNER ── */
.cta-section { background: var(--red); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, rgba(0,0,0,0) 0, rgba(0,0,0,0) 24px, rgba(0,0,0,0.07) 24px, rgba(0,0,0,0.07) 25px);
}
.cta-inner {
  position: relative; display: flex;
  align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700; text-transform: uppercase; line-height: 0.95; color: var(--white);
}
.cta-title small {
  display: block; font-size: 0.36em; font-weight: 400;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.6); margin-bottom: 8px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.btn-cta-white {
  font-family: 'Oswald', sans-serif; font-size: 15px;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--white); color: var(--red); padding: 15px 36px;
  text-decoration: none; display: inline-block; transition: background 0.2s;
}
.btn-cta-white:hover { background: var(--cream); }
.btn-cta-outline {
  font-family: 'Oswald', sans-serif; font-size: 15px;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 15px 30px; border: 1.5px solid rgba(255,255,255,0.4);
  text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s;
}
.btn-cta-outline:hover { border-color: var(--white); color: var(--white); }

/* ── FOOTER ── */
footer { background: #080808; padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-text {
  font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--cream);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.footer-logo-text span { color: var(--red); }
.footer-logo-mark {
  width: 30px; height: 30px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.footer-desc { font-size: 13px; font-weight: 300; color: rgba(242,237,228,0.3); line-height: 1.75; margin-bottom: 22px; }
.footer-contact a {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: rgba(242,237,228,0.45);
  text-decoration: none; margin-bottom: 8px; transition: color 0.2s;
}
.footer-contact a:hover { color: var(--cream); }
.footer-contact svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.5; }
.footer-col-head {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,237,228,0.22); margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(242,237,228,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(242,237,228,0.18); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 12px; color: rgba(242,237,228,0.18); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(242,237,228,0.5); }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.social-btn {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.social-btn:hover { background: var(--red); border-color: var(--red); }
.social-btn svg { width: 13px; height: 13px; fill: var(--cream); opacity: 0.55; transition: opacity 0.2s; }
.social-btn:hover svg { opacity: 1; }

/* ── MOBILE BAR ── */
.mob-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 11px 20px; align-items: center; justify-content: space-between; gap: 12px;
}
.mob-bar-text { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(242,237,228,0.45); }
.mob-bar a { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; background: var(--red); color: var(--white); padding: 10px 22px; text-decoration: none; white-space: nowrap; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-grid, .quote-grid, .faq-layout { grid-template-columns: 1fr; }
  .form-card, .faq-sidebar { position: static; }
  .services-intro { grid-template-columns: 1fr; gap: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a { display: block; padding: 14px 32px; }
  .nav-links .nav-cta { margin: 10px 32px; display: block; text-align: center; }
  .hamburger { display: flex; }
  nav { position: sticky; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .dumpster-pair, .uses-grid, .projects-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .mob-bar { display: flex; }
  .container { padding: 0 20px; }
  .frow { grid-template-columns: 1fr; }
  .local-hero h1 { font-size: clamp(34px, 8vw, 52px); }
  
  .has-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: #111;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding-left: 50px !important;
  }
}
@media (max-width: 480px) {
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; }
  .areas-grid { grid-template-columns: 1fr; }
}

.nav-links li {
  position: relative;
}

.has-dropdown > a::after {
  content: "▼";
  font-size: 9px;
  margin-left: 8px;
  display: inline-block;
  transition: 0.3s;
}

.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 260px;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
  list-style: none;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px);
  transition: .3s ease;
  z-index: 9999;
}

.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: rgba(242,237,228,.7);
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--red);
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  
}
