@font-face {
  font-family: "CQLogo";
  src: url("../assets/fonts/Handlee-Regular.ttf") format("truetype");
  font-display: swap;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #151515;
}

/* HERO */

.hero {
  position: relative;
  min-height: 82vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  overflow: hidden;

  background-color: #111;
  background-image:
    image-set(
      url("../images/hero/foodtruck.avif") type("image/avif"),
      url("../images/hero/foodtruck.webp") type("image/webp")
    );

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark cinematic overlay */
.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.55)
    );
}

/* CONTENT */

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
  padding: 40px;

  color: white;
}

.eyebrow {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  margin-bottom: 24px;

  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(58px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 700;

  margin-bottom: 28px;
}

.subtext {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.4;

  max-width: 720px;
  margin: 0 auto;

  color: rgba(255,255,255,0.88);
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;

  margin-top: 42px;

  flex-wrap: wrap;
}

.btn {
  padding: 16px 30px;
  border-radius: 999px;

  text-decoration: none;
  font-size: 18px;
  font-weight: 600;

  transition: background-color .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.btn.primary {
  background: white;
  color: black;
}

.btn.primary:hover {
  transform: scale(1.04);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.45);
  color: white;
  background: rgba(0,0,0,0.18);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.08);
}

main {
  background: #fff;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ddd;
  border-bottom: 1px solid #ddd;
}

.trust-band div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  padding: 30px 28px;
  background: #fff;
}

.trust-band strong {
  font-size: 18px;
}

.trust-band span {
  color: #666;
  line-height: 1.5;
}

.estimate-band {
  padding: 58px 24px;
  background: #fff7e6;
  border-bottom: 1px solid #eadbb9;
}

.estimate-band-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.estimate-band h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: .98;
}

.estimate-band p:not(.section-kicker) {
  max-width: 780px;
  margin-top: 18px;
  color: #343434;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.estimate-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  max-width: 430px;
}

.estimate-band .btn.primary {
  background: #111;
  color: #fff;
}

.estimate-menu-link {
  color: #111;
  font-size: 18px;
  font-weight: 900;
  text-decoration-color: #de0f0f;
  text-underline-offset: 5px;
}

.estimate-band-actions span {
  flex-basis: 100%;
  color: #5d513a;
  font-size: 15px;
  line-height: 1.5;
}

.home-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 100px 24px;
}

.home-section,
.home-cta,
.cq-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.intro-section,
.service-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.process-section {
  max-width: none;
  background: #111;
  color: white;
}

.process-section > * {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.process-section .section-kicker {
  color: #ffcf33;
}

.process-section .section-copy h2 {
  max-width: 940px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}

.process-steps article {
  min-height: 300px;
  padding: 28px;
  background: #151515;
}

.process-steps span {
  display: inline-block;
  margin-bottom: 58px;
  color: #ffcf33;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
}

.process-steps h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.1;
}

.process-steps p {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.6;
}

.event-section {
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
  background: #f7f7f7;
}

.event-section > * {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  margin-bottom: 16px;
  color: #de0f0f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-copy h2,
.home-cta h2 {
  font-size: clamp(38px, 5vw, 74px);
  line-height: .96;
  letter-spacing: -0.04em;
}

.intro-text {
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.65;
  color: #2a2a2a;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.event-grid article,
.service-list div {
  padding: 28px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  background: #fff;
}

.event-grid h3,
.service-list h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
}

.event-grid p,
.service-list p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  color: #111;
  font-size: 15px;
  font-weight: 900;
  text-decoration-color: #de0f0f;
  text-underline-offset: 5px;
}

.service-list {
  display: grid;
  gap: 16px;
}

.review-section {
  border-top: 1px solid #eee;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.review-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 30px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  background: #fff;
}

.review-grid p {
  color: #2a2a2a;
  font-size: 19px;
  line-height: 1.65;
}

.review-grid span {
  margin-top: 28px;
  color: #de0f0f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.review-link {
  display: inline-block;
  margin-top: 30px;
  color: #111;
  font-weight: 900;
  text-decoration-color: #de0f0f;
  text-underline-offset: 5px;
}

.home-cta {
  padding: 100px 24px;
  text-align: center;
  background: #111;
  color: white;
}

.home-cta h2 {
  max-width: 1050px;
  margin: 0 auto;
}

.home-cta p:not(.section-kicker) {
  max-width: 760px;
  margin: 26px auto 34px;
  color: rgba(255,255,255,.78);
  font-size: 21px;
  line-height: 1.55;
}

.home-cta .btn.primary {
  display: inline-block;
}

/* MOBILE */

@media (max-width: 768px) {
  .hero {
    background-position: 68% center;
    min-height: 78vh;
  }

  .hero-content {
    padding: 24px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 64px);
    line-height: .98;
    letter-spacing: -0.04em;
  }

  .subtext {
    font-size: 20px;
  }

  .hero-buttons {
    gap: 14px;
    margin-top: 34px;
  }

  .btn {
    width: min(100%, 220px);
    padding: 15px 22px;
    text-align: center;
  }

  .trust-band,
  .event-grid,
  .process-steps,
  .review-grid,
  .intro-section,
  .service-section {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    min-height: auto;
  }

  .estimate-band {
    padding: 46px 22px;
  }

  .estimate-band-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .estimate-band-actions {
    justify-content: flex-start;
    justify-self: stretch;
    max-width: none;
  }

  .estimate-band .btn {
    width: min(100%, 260px);
  }

  .home-section,
  .home-cta {
    padding: 72px 22px;
  }

  .process-steps article {
    min-height: auto;
  }

  .process-steps span {
    margin-bottom: 30px;
  }

  .intro-section,
  .service-section {
    gap: 34px;
  }

  .review-grid {
    gap: 14px;
  }

  .review-grid article {
    min-height: auto;
    padding: 24px;
  }

  .review-grid p {
    font-size: 17px;
    line-height: 1.6;
  }

  .section-copy h2,
  .home-cta h2 {
    letter-spacing: -0.03em;
  }
}

/* FOOTER */

.cq-footer {
  background: #0f0f0f;
  color: white;

  padding: 90px 24px 40px;

  margin-top: 0;
}

.footer-grid {
  max-width: 1400px;

  margin: auto;

  display: grid;
  grid-template-columns:
    1.6fr
    1fr
    1fr
    1fr;

  gap: 54px;
}

.footer-logo {
  font-family: "CQLogo", sans-serif;

  color: white;
  text-decoration: none;

  font-size: 38px;

  display: inline-block;

  margin-bottom: 22px;
}

.footer-logo span {
  color: #de0f0f;
}

.footer-brand p {
  color: rgba(255,255,255,.72);

  line-height: 1.8;

  max-width: 440px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links h3 {
  font-size: 14px;

  text-transform: uppercase;
  letter-spacing: .12em;

  color: #ffcf33;

  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,.78);

  text-decoration: none;

  transition: opacity .2s ease;
}

.footer-links a:hover {
  opacity: .65;
}

.footer-bottom {
  max-width: 1400px;

  margin: 70px auto 0;
  padding-top: 26px;

  border-top: 1px solid rgba(255,255,255,.10);

  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,.52);

  font-size: 14px;
}

/* MOBILE */

@media (max-width: 950px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-bottom {
    flex-direction: column;
  }

}
