/* Triangle Junk Removal — shared styles */
:root {
  --primary: #1B4332;
  --primary-light: #2D6A4F;
  --accent: #F4A423;
  --accent-dark: #D4860A;
  --neutral-900: #111827;
  --neutral-700: #374151;
  --neutral-400: #9CA3AF;
  --neutral-100: #F3F4F6;
  --neutral-50: #F9FAFB;
  --white: #FFFFFF;
  --success: #059669;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 16px;
  --font-head: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --site-header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-700);
  background: var(--neutral-50);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--primary);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--neutral-900);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--neutral-900);
}

/* Header phone CTA — slightly stronger emphasis without changing brand direction */
.btn-header-call {
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.btn-header-call:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-alt {
  background: var(--neutral-100);
}

.section-white {
  background: var(--white);
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.625rem);
  line-height: 1.15;
  color: var(--neutral-900);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 0 40px;
  color: var(--neutral-700);
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--neutral-900);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo:hover {
  color: var(--primary);
}

.logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(300px, 52vw);
  object-fit: contain;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text strong {
  color: var(--primary);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav > a,
.main-nav .nav-dropdown > span {
  padding: 8px 12px;
  color: var(--neutral-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: var(--radius);
}

.main-nav > a:hover,
.main-nav .nav-dropdown:hover > span {
  color: var(--primary);
  background: var(--neutral-100);
}

.main-nav > a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > span {
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--neutral-700);
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: var(--neutral-100);
  color: var(--primary);
}

.header-cta {
  display: none;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  background: var(--neutral-100);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--neutral-900);
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-100);
  padding: 0 24px 24px;
  box-shadow: var(--shadow-md);
}

.mobile-menu.mobile-menu-open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--neutral-100);
  color: var(--neutral-700);
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .mobile-submenu {
  padding-left: 16px;
}

.mobile-menu .mobile-submenu a {
  font-size: 0.95rem;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .header-cta {
    display: block;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

/* Text-only service / neighborhood heroes (no background photo) */
.city-hero:not(.hero-split):not(:has(.hero-bg img)) {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3d2e 100%);
  min-height: 380px;
}

.city-hero:not(.hero-split):not(:has(.hero-bg img)) .hero-overlay {
  background: rgba(17, 24, 39, 0.35);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.92) 0%,
    rgba(17, 24, 39, 0.75) 100%
  );
  z-index: 1;
}

/* Homepage hero: pan image to show crew + negative space for form; subtle dark overlay only */
.hero-split .hero-bg img {
  object-position: 58% 40%;
}

.hero-split .hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(27, 67, 50, 0.5) 0%,
    rgba(17, 24, 39, 0.32) 45%,
    rgba(17, 24, 39, 0.28) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 720px;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 640px;
  opacity: 0.95;
  margin-bottom: 24px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.9rem;
  opacity: 0.95;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat {
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--white);
}

.hero-stat span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.cta-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  margin-top: 8px;
}

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.trust-item h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: var(--neutral-900);
}

.trust-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--neutral-700);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px;
  border-left: 4px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-left-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: var(--neutral-900);
}

.card p {
  margin: 0 0 16px;
}

.card-link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.grid-3 {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Steps */
.steps-flow {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .steps-flow {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
  }

  .steps-flow::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: var(--neutral-400);
    z-index: 0;
  }
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-family: var(--font-head);
  margin: 0 0 10px;
  color: var(--neutral-900);
}

/* Pricing table */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

table.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--neutral-100);
}

.pricing-table th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-tier {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .pricing-tier {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent);
}

.pricing-card h3 {
  font-family: var(--font-head);
  margin: 0 0 8px;
}

.price-tag {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-head);
}

/* Reviews */
.star-rating {
  color: #E3B008;
  letter-spacing: 2px;
  font-size: 1rem;
}

.review-card .star-rating {
  margin-bottom: 12px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.review-card blockquote {
  margin: 0 0 16px;
  font-style: italic;
  color: var(--neutral-700);
}

.review-author {
  font-weight: 600;
  color: var(--neutral-900);
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-success {
  background: rgba(5, 150, 105, 0.12);
  color: var(--success);
}

.badge-accent {
  background: rgba(244, 164, 35, 0.2);
  color: var(--neutral-900);
}

/* Map section */
.map-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 900px) {
  .map-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.map-placeholder {
  position: relative;
  min-height: 320px;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-inner {
  text-align: center;
  color: var(--white);
  padding: 24px;
}

.map-placeholder-inner h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.map-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--neutral-100);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.2s;
  font-size: 1.25rem;
  color: var(--accent-dark);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: var(--neutral-700);
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* CTA banner */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 12px;
  color: var(--white);
}

.cta-banner p {
  margin: 0 0 24px;
  opacity: 0.85;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.mini-stars {
  font-size: 0.85rem;
  color: #E3B008;
  margin-left: 8px;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 64px 0 32px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-brand p {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.footer-phone {
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin: 0 0 16px;
  color: var(--white);
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-bottom p {
  margin: 0 0 8px;
}

/* Content prose */
.prose {
  max-width: 720px;
}

.prose p {
  margin: 0 0 1.25em;
}

.prose h2 {
  font-family: var(--font-head);
  color: var(--neutral-900);
  margin-top: 2rem;
}

.page-hero-sm {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.page-hero-sm h1 {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 12px;
}

.page-hero-sm p {
  margin: 0;
  max-width: 700px;
  opacity: 0.95;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--neutral-900);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--neutral-400);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .error-msg {
  color: #B91C1C;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #B91C1C;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-submit {
  margin-top: 8px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--neutral-700);
  margin-top: 12px;
}

.contact-layout {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.4fr 1fr;
  }
}

.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-card .big-phone {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 16px 0;
}

.contact-card .big-phone a {
  color: var(--primary);
  text-decoration: none;
}

/* Neighborhood pills */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border: 1px solid var(--neutral-100);
  text-align: left;
}

.compare-table th {
  background: var(--neutral-100);
  font-family: var(--font-head);
}

/* Urgency strip */
.urgency-strip {
  background: rgba(244, 164, 35, 0.15);
  border: 1px solid rgba(244, 164, 35, 0.4);
  color: var(--neutral-900);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
  display: inline-block;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.12);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta.is-visible {
  display: flex;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none !important;
  }
}

.sticky-cta-phone {
  font-weight: 700;
  font-size: 1rem;
}

.sticky-cta-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  color: var(--neutral-700);
}

.team-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.internal-links {
  padding: 24px;
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  margin-top: 40px;
}

.internal-links a {
  font-weight: 600;
}

/* Thank you state */
.form-thanks {
  display: none;
  padding: 32px;
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  text-align: center;
}

.form-thanks.is-visible {
  display: block;
}

#contactForm.is-hidden {
  display: none;
}

/* Lists */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

main {
  min-height: 40vh;
}

/* Hero split layout (Apex hub + lead form) */
.hero-split {
  min-height: min(84svh, 720px);
  align-items: stretch;
}

.hero-split__container {
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-top: 32px;
  padding-bottom: 32px;
}

.hero-split .container {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-split__grid {
  display: grid;
  gap: 28px;
  align-items: center;
  width: 100%;
}

@media (min-width: 960px) {
  .hero-split__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 360px);
    gap: 48px;
    align-items: center;
    /* Slight drop so headline/form clear crew faces — keep subtle */
    transform: translateY(36px);
  }
}

.hero-split__copy {
  max-width: 520px;
}

.hero-split__copy .hero-eyebrow {
  margin-bottom: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero-split__copy h1 {
  max-width: 100%;
  margin-bottom: 12px;
  font-size: clamp(2.15rem, 4.2vw, 3.05rem);
  line-height: 1.06;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero-split__copy .hero-sub {
  max-width: 440px;
  margin-bottom: 20px;
  font-size: 0.975rem;
  line-height: 1.48;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.94);
}

.hero-split__copy .hero-ctas {
  margin-bottom: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hero-split__copy .hero-ctas .btn-lg {
  min-height: 48px;
  padding: 13px 24px;
  font-size: 1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero-cta-note {
  display: block;
  font-size: 0.875rem;
  opacity: 0.92;
  padding: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-split__form {
  width: 100%;
  max-width: 360px;
  justify-self: center;
  position: relative;
  z-index: 3;
}

@media (min-width: 960px) {
  .hero-split__form {
    justify-self: end;
    max-width: 360px;
    margin-right: 8px;
  }

  /* Pan right: reveal full crew, truck/junk still visible; form sits in open area */
  .hero-split .hero-bg img {
    object-position: 68% 40%;
  }

  .hero-split .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(27, 67, 50, 0.55) 0%,
      rgba(17, 24, 39, 0.34) 38%,
      rgba(17, 24, 39, 0.26) 100%
    );
  }
}

.hero-lead-card {
  background: #fff;
  color: var(--neutral-900);
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 14px 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-lead-card__head {
  margin-bottom: 10px;
}

.hero-lead-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 3px;
  line-height: 1.15;
  color: var(--neutral-900);
}

.hero-lead-card__sub {
  font-size: 0.8rem;
  color: var(--neutral-700);
  margin: 0;
  line-height: 1.35;
}

.hero-lead-form--dense .form-group {
  margin-bottom: 0;
}

.hero-lead-form--dense .form-group label {
  font-size: 0.78rem;
  margin-bottom: 3px;
  line-height: 1.2;
}

.hero-lead-form--dense .form-group input,
.hero-lead-form--dense .form-group select {
  padding: 6px 10px;
  font-size: 0.85rem;
  line-height: 1.3;
}

.hero-lead-form--dense .form-group .error-msg {
  margin-top: 2px;
  font-size: 0.75rem;
}

.hero-lead-form--dense {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  gap: 8px;
}

@media (min-width: 480px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-lead-form__submit {
  width: 100%;
  margin-top: 4px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.hero-lead-form__note {
  text-align: center;
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 0.7rem;
  line-height: 1.35;
  color: var(--neutral-700);
}

.hero-lead-thanks {
  padding: 24px 16px;
}

.hero-lead-thanks__title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0 0 10px;
}

#heroLeadForm.is-hidden {
  display: none;
}

#heroFormThanks.is-visible {
  display: block;
}

/* Contact page */
.contact-hero {
  min-height: 320px;
}

.contact-layout {
  display: grid;
  gap: 40px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
  }
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--neutral-700);
  margin: 0 0 24px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details li {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--neutral-800);
}

.contact-details strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-details a {
  color: var(--neutral-900);
  font-weight: 600;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--primary);
}

.hero-lead-card--page {
  max-width: none;
  padding: 28px 32px;
  box-shadow: 0 8px 32px rgba(17, 24, 39, 0.08);
}

.hero-lead-card--page .hero-lead-card__title {
  font-size: 1.5rem;
}

.hero-lead-card--page .hero-lead-form {
  gap: 16px;
}

.hero-lead-card--page .form-group label {
  font-size: 0.9rem;
}

.hero-lead-card--page .form-group input,
.hero-lead-card--page .form-group select {
  font-size: 1rem;
  padding: 12px 14px;
}

.hero-quote-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.hero-quote-cta__btn {
  width: 100%;
  margin-top: 8px;
}

/* About page */
.about-prose {
  max-width: 820px;
}

.about-prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--neutral-700);
  margin: 0 0 1rem;
}

.about-prose p:last-of-type {
  margin-bottom: 0;
}

.about-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-trust-pill {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.about-remove-cols {
  display: grid;
  gap: 24px;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-remove-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-remove-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--neutral-700);
  line-height: 2;
}

.about-remove-list li {
  padding-left: 0;
}

.about-remove-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--neutral-100);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  font-size: 0.95rem;
  color: var(--neutral-700);
  line-height: 1.7;
}

.about-remove-note strong {
  color: var(--neutral-900);
}

.cta-banner p a {
  color: var(--white);
  font-weight: 600;
}

.cta-banner p a:hover {
  text-decoration: underline;
}

.review-stars {
  color: #e3b008;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.review-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--neutral-700);
  margin: 0 0 0.75rem;
  font-style: italic;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin: 0;
}

.step-card h3 a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step-card h3 a:hover {
  color: var(--primary);
}

/* Short laptop / zoomed windows — keep submit above the fold */
@media (min-width: 960px) and (max-height: 820px) {
  .hero-lead-card__sub {
    display: none;
  }

  .hero-split__copy .hero-sub {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .hero-lead-card {
    padding: 12px 14px;
  }

  .hero-lead-form--dense {
    gap: 6px;
  }
}

@media (max-width: 959px) {
  .hero-split {
    min-height: auto;
  }

  .hero-split .hero-bg img {
    object-position: 52% 38%;
  }

  .hero-split .hero-overlay {
    background: rgba(17, 24, 39, 0.42);
  }

  .hero-split__container {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-split__grid {
    transform: translateY(20px);
  }

  .hero-split__copy {
    text-align: center;
    max-width: none;
  }

  .hero-split__copy .hero-sub {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
  }

  .hero-split__copy .hero-ctas {
    align-items: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-split__form {
    max-width: 100%;
  }
}

/* City landing pages */
.city-hero .hero-sub {
  max-width: 720px;
}

.content-lead {
  max-width: 720px;
  font-size: 1.05rem;
}

.content-lead p + p {
  margin-top: 1rem;
}

.intro-media {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.remove-item h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--neutral-900);
  margin: 0 0 10px;
}

.remove-item p {
  margin: 0;
  font-size: 0.98rem;
}

.grid-remove {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .grid-remove {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-remove {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* What We Remove — centered header + card grid polish */
.section-what-remove .what-remove-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.section-what-remove .what-remove-head .section-title {
  margin-bottom: 0;
}

.section-what-remove .what-remove-head .section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 14px auto 0;
  background: var(--accent);
  border-radius: 2px;
}

.section-what-remove .what-remove-head .section-subtitle {
  max-width: 560px;
  margin: 18px auto 0;
}

.section-what-remove .what-remove-head .section-subtitle a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.section-what-remove .what-remove-head .section-subtitle a:hover {
  text-decoration: underline;
}

.section-what-remove .grid-remove {
  gap: 24px;
}

.section-what-remove .remove-item {
  border-left: 4px solid var(--primary-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.section-what-remove .remove-item:hover {
  transform: translateY(-3px);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.section-what-remove .remove-item h3 {
  font-size: 1.25rem;
}

.remove-item--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.remove-item--link:hover h3 {
  color: var(--primary);
}

.remove-item--link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Why choose us — split copy + 4 cards */
.section-why-choose {
  overflow: hidden;
}

.why-choose-split {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 960px) {
  .why-choose-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 24px 56px;
    align-items: start;
  }

  .why-choose__copy {
    grid-column: 1;
    grid-row: 1;
  }

  .why-choose__cards {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .why-choose__closing {
    grid-column: 1;
    grid-row: 2;
  }
}

.why-choose__copy {
  max-width: 560px;
}

.why-choose__copy .section-title {
  margin-bottom: 20px;
}

.why-choose__copy .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 14px;
  background: var(--accent);
  border-radius: 2px;
}

.why-choose__copy p {
  margin: 0 0 1.15em;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--neutral-700);
}

.why-choose__tagline {
  font-weight: 600;
  color: var(--neutral-900) !important;
  margin-bottom: 0 !important;
}

.why-choose__closing {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--neutral-100);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--neutral-700);
  max-width: 560px;
}

@media (max-width: 959px) {
  .why-choose-split {
    gap: 24px;
  }

  .why-choose__closing {
    order: 3;
  }
}

.why-choose__closing a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.why-choose__closing a:hover {
  text-decoration: underline;
}

.why-choose__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 559px) {
  .why-choose__cards {
    grid-template-columns: 1fr;
  }
}

.why-card {
  position: relative;
  padding: 20px 18px 18px;
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0.85;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 106, 79, 0.25);
  box-shadow: var(--shadow-lg);
}

.why-card__num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  opacity: 0.35;
  margin-bottom: 8px;
}

.why-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 0 0 8px;
  line-height: 1.2;
}

.why-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--neutral-700);
}

/* Areas we serve — neighborhood button grid */
.section-areas .areas-head {
  margin-bottom: 36px;
}

.section-areas .section-subtitle {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.areas-neighborhood-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 560px) {
  .areas-neighborhood-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 768px) {
  .areas-neighborhood-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.areas-neighborhood-btn {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: normal;
  line-height: 1.3;
}

.areas-neighborhood-btn:hover,
.areas-neighborhood-btn:focus-visible {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
}

.why-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.why-bullets li {
  padding: 10px 0 10px 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--neutral-100);
}

.why-bullets li:last-child {
  border-bottom: none;
}

.why-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.jobs-plain {
  list-style: disc;
  padding-left: 1.25rem;
  max-width: 720px;
}

.jobs-plain li {
  margin-bottom: 10px;
}

/* Common jobs — compact mini cards */
.section-common-jobs .jobs-head {
  margin-bottom: 28px;
}

.section-common-jobs .jobs-head .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--accent);
  border-radius: 2px;
}

.jobs-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .jobs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.job-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px 11px;
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.job-card:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 106, 79, 0.2);
  box-shadow: var(--shadow-sm);
}

.job-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
}

.job-card__text {
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--neutral-700);
}

.jobs-more {
  text-align: center;
  max-width: 620px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(27, 67, 50, 0.1);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--neutral-700);
}

.jobs-more a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.jobs-more a:hover {
  text-decoration: underline;
}

.helpful-links-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 600px) {
  .helpful-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.link-card {
  display: block;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
  text-decoration: none;
  color: var(--neutral-900);
  font-weight: 600;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.link-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  color: var(--primary);
}

.link-card span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--neutral-700);
  margin-top: 6px;
}

.area-links-note {
  margin-top: 20px;
  font-size: 0.98rem;
}
