:root {
  --black: #0d0d0d;
  --dark: #171717;
  --steel: #2b2b2b;
  --orange: #f26a1b;
  --yellow: #ffb703;
  --light: #f5f1ea;
  --muted: #b8b8b8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--light);
  color: var(--black);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.site-header {
  background: rgba(13, 13, 13, 0.96);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--orange);
}

.nav {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo span {
  display: block;
  font-family: "Anton", sans-serif;
  color: var(--orange);
  font-size: 1.7rem;
  letter-spacing: 1px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.92rem;
}

.menu a {
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 12px 18px;
  border-radius: 4px;
}

.nav-cta:hover {
  background: #ff7b2c;
}

#menu-toggle {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 30px;
  height: 3px;
  background: white;
  transition: 0.2s ease;
}

.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58)),
    url("images/hero-demolition.jpg") center/cover;
  color: white;
  padding: 110px 0;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.eyebrow.dark {
  color: var(--orange);
}

h1,
h2 {
  font-family: "Anton", sans-serif;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero-text {
  max-width: 720px;
  margin: 24px 0;
  font-size: 1.2rem;
  color: #e6e6e6;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 5px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn.primary {
  background: var(--orange);
  color: white;
}

.btn.primary:hover {
  background: #ff7b2c;
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn.secondary:hover {
  background: white;
  color: var(--black);
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #f0f0f0;
  font-weight: 700;
}

.quote-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  padding: 34px;
  border-top: 6px solid var(--orange);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.quote-card h2 {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.quote-card p {
  margin-bottom: 24px;
  color: #444;
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head.light {
  color: white;
}

.section-head.light p {
  color: #ddd;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: white;
  padding: 22px;
  border-left: 6px solid var(--orange);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
}

.saving {
  background: var(--orange);
  padding: 70px 0;
}

.saving-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.saving .eyebrow {
  color: var(--black);
}

.saving p {
  font-size: 1.15rem;
  font-weight: 700;
}

.dark-section {
  background:
    linear-gradient(135deg, #0d0d0d, #202020);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-grid img {
  height: 280px;
  object-fit: cover;
  border: 4px solid #333;
  filter: contrast(1.05);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.photo-grid img:hover {
  transform: scale(1.02);
  border-color: var(--orange);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col p {
  margin-top: 22px;
  font-size: 1.1rem;
  color: #444;
}

.benefits {
  display: grid;
  gap: 14px;
}

.benefits div {
  background: var(--black);
  color: white;
  padding: 18px 20px;
  font-weight: 800;
  border-left: 6px solid var(--orange);
}

.territory-section {
  background:
    linear-gradient(135deg, #161616, #2b2b2b);
  color: white;
  padding: 80px 0;
  border-top: 6px solid var(--orange);
}

.territory-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.territory-content p {
  color: #e0e0e0;
  font-size: 1.1rem;
}

.territory-content .ontario-message {
  display: inline-block;
  margin-top: 22px;
  background: var(--orange);
  color: white;
  padding: 12px 18px;
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)),
    url("images/cta-demolition.jpg") center/cover;
  color: white;
  padding: 95px 0;
  text-align: center;
}

.cta-box {
  max-width: 850px;
}

.cta-box p {
  max-width: 680px;
  margin: 18px auto 0;
  color: #e0e0e0;
  font-size: 1.15rem;
}

.cta-actions {
  justify-content: center;
}

.contact-email {
  display: inline-block;
  margin-top: 24px;
  color: white;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-email:hover {
  color: var(--orange);
}

footer {
  background: var(--black);
  color: var(--muted);
  padding: 28px 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-right {
  text-align: right;
}

.site-credit {
  margin-top: 5px;
  font-size: 0.72rem;
  opacity: 0.65;
}

.site-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.site-credit a:hover {
  color: var(--orange);
  opacity: 1;
}

@media (max-width: 850px) {
  .footer-right {
    text-align: left;
  }
}

@media (max-width: 950px) {
  .menu {
    gap: 16px;
    font-size: 0.86rem;
  }
}

@media (max-width: 850px) {
  .burger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
    border-bottom: 3px solid var(--orange);
  }

  .menu a {
    padding: 18px 5%;
    border-top: 1px solid #2a2a2a;
  }

  .menu .nav-cta {
    border-radius: 0;
  }

  #menu-toggle:checked ~ .menu {
    display: flex;
  }

  .hero {
    padding: 82px 0;
  }

  .hero-grid,
  .saving-box,
  .two-col,
  .territory-box {
    grid-template-columns: 1fr;
  }

  .quote-card {
    margin-top: 20px;
  }

  .services-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img {
    height: 260px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .nav {
    min-height: 72px;
  }

  .logo {
    font-size: 0.82rem;
  }

  .logo span {
    font-size: 1.45rem;
  }

  .menu {
    top: 72px;
  }

  .hero {
    padding: 65px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .trust-row {
    flex-direction: column;
    gap: 8px;
  }

  .quote-card {
    padding: 26px 22px;
  }

  .section {
    padding: 70px 0;
  }

  .saving,
  .territory-section {
    padding: 60px 0;
  }

  .photo-grid img {
    height: 230px;
  }

  .contact-email {
    overflow-wrap: anywhere;
  }
}