:root {
  --red: #d90808;
  --orange: #ffae43;
  --ink: #172033;
  --muted: #667085;
  --paper: #f3f6f8;
  --dark: #222024;
  --black: #050505;
  --line: #e0e5eb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
}

.top-strip {
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.strip-inner,
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  background: #050505;
  color: var(--white);
}

.nav-inner {
  min-height: 70px;
  gap: 32px;
}

.brand img {
  width: 230px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.nav-contact {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 16px;
}

.nav-contact span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-contact strong {
  grid-column: 1;
  font-size: 18px;
  line-height: 1;
}

.menu-button {
  display: none;
}

.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 6px;
  border: 2px solid var(--orange);
  background: var(--orange);
  color: #111;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-small {
  grid-row: 1 / span 2;
  grid-column: 2;
  min-height: 42px;
  padding-inline: 20px;
  font-size: 12px;
}

.button-outline {
  background: transparent;
  color: var(--white);
  border-color: #ffffff;
}

.hero {
  background: var(--dark);
  color: var(--white);
  padding: 78px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 86px;
  align-items: center;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 3px;
  background: var(--white);
  color: #637083;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge-red {
  background: var(--red);
  color: var(--white);
}

.badge-dark {
  background: #222;
  color: var(--orange);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: 58px;
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 span,
.price del,
.google-rating span {
  color: #DC2626;
  text-decoration: line-through !important;
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 34px;
  color: #c5c8ce;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.fineprint {
  margin: 18px 0 20px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 4px;
  background: #f7f8fb;
  color: #202637;
  font-size: 12px;
}

.rating span {
  color: var(--orange);
  letter-spacing: .15em;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #111;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.save-burst {
  position: absolute;
  top: 36px;
  right: 36px;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.save-burst strong {
  font-size: 32px;
}

.offers,
.reviews {
  padding: 82px 0;
  background: var(--paper);
}

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

.section-heading h2 {
  margin: 0 0 48px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.1;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.offer-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.offer-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.offer-card div {
  padding: 20px 22px;
}

.offer-card h3,
.promo-card h3,
.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.15;
}

.offer-card p {
  margin: 0 0 12px;
  font-size: 13px;
}

.offer-card small {
  display: block;
  margin-bottom: 12px;
  color: #798394;
  font-size: 10px;
  font-style: italic;
}

.price {
  font-size: 15px !important;
  font-weight: 900;
}

.price del {
  margin-right: 8px;
  text-decoration: none;
}

.mini-button {
  min-height: 28px;
  padding-inline: 14px;
  border-radius: 4px;
  font-size: 10px;
}

.promos {
  padding: 84px 0;
  background: var(--black);
  color: var(--white);
}

.promos .section-heading h2,
.difference .section-heading h2,
.cta h2 {
  color: var(--white);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  min-height: 260px;
  padding: 32px;
  border-radius: 6px;
  background: #4b4b4d;
  border: 1px solid #666;
}

.promo-feature {
  background: var(--red);
  border-color: var(--orange);
}

.promo-card span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 5px 9px;
  border-radius: 3px;
  background: var(--orange);
  color: #151515;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card h3 {
  font-size: 22px;
}

.promo-card p {
  margin: 0 0 28px;
  color: #f0f1f3;
  font-size: 13px;
}

.promo-card a {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 13px 16px;
  border-radius: 4px;
  background: var(--white);
  color: #222;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.difference {
  padding: 33px 0 92px;
  background: transparent url(assets/dry-mud.jpg) 50% 50% / 100% no-repeat;
  color: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.feature-grid article {
  min-height: 178px;
  padding: 26px 20px;
  border: 2px solid var(--orange);
  border-radius: 6px;
  background: rgba(0, 0, 0, .62);
}

.feature-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-size: 13px;
  font-weight: 900;
  background-size: 48px 48px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.feature-grid span.icon-calendar {background-image: url(assets/icon-calendar.png)}
.feature-grid span.icon-map {background-image: url(assets/icon-map.png)}
.feature-grid span.icon-shield {background-image: url(assets/icon-shield.png)}
.feature-grid span.icon-money {background-image: url(assets/icon-money.png)}
.feature-grid span.icon-award {background-image: url(assets/icon-award.png)}

.feature-grid p {
  margin: 0;
  color: #d8d8d8;
  font-size: 12px;
}

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

blockquote {
  margin: 0;
  min-height: 175px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

blockquote div {
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: .12em;
}

blockquote p {
  margin: 0 0 18px;
  color: #49566a;
  font-size: 13px;
  font-style: italic;
}

cite {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

cite span {
  display: block;
  margin-top: 3px;
  color: #7a8595;
  font-weight: 500;
}

.google-rating {
  width: fit-content;
  margin: 42px auto 0;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: #687386;
  font-size: 13px;
}

.google-rating strong {
  margin-left: 12px;
  color: var(--ink);
}

.cta {
  padding: 98px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.1;
}

.cta p:not(.badge) {
  max-width: 650px;
  margin: 18px auto 36px;
  color: #c9ccd2;
}

.call-panel {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 22px 26px;
  border: 2px solid var(--orange);
  border-radius: 8px;
}

.call-panel > a:first-child {
  color: var(--white);
  font-size: 34px;
  font-weight: 900;
  text-decoration: underline;
}

.location {
  padding: 72px 0;
  background: var(--red);
  color: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 112px;
  align-items: center;
}

.location h2 {
  margin: 0 0 14px;
  font-size: 30px;
}

.location p,
.location li {
  font-size: 14px;
}

.location ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.map-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.map-card img {
  width: 100%;
  aspect-ratio: 15 / 8;
  object-fit: cover;
}

.map-card a {
  position: absolute;
  left: 26px;
  bottom: 22px;
  padding: 12px 18px;
  border-radius: 5px;
  background: var(--orange);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer {
  padding: 46px 0 28px;
  background: var(--black);
  color: #6f7682;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 36px;
}

.footer img {
  width: 225px;
  margin-bottom: 18px;
}

.footer p,
.footer a {
  font-size: 11px;
  font-weight: 700;
}

.footer nav {
  display: flex;
  align-items: end;
  gap: 28px;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 40px, 900px);
  }

  .nav-links,
  .nav-contact span,
  .nav-contact strong {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
    padding: 10px 14px;
    border: 1px solid #555;
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
  }

  .hero-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .offer-grid,
  .promo-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 520px);
  }

  .strip-inner {
    justify-content: center;
  }

  .strip-inner span:last-child,
  .nav-contact {
    display: none;
  }

  .brand img {
    width: 188px;
  }

  .hero,
  .offers,
  .promos,
  .reviews,
  .cta,
  .location {
    padding-block: 56px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    border-radius: 6px;
  }

  .save-burst {
    width: 92px;
    height: 92px;
    top: 18px;
    right: 18px;
  }

  .save-burst strong {
    font-size: 24px;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 30px;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-card img {
    aspect-ratio: 16 / 10;
  }

  .promo-card {
    min-height: 0;
    padding: 26px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .call-panel {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .call-panel > a:first-child {
    font-size: 28px;
  }

  .footer-inner,
  .footer nav {
    flex-direction: column;
    align-items: start;
  }
}
