:root {
  --charcoal: #333333;
  --coal: #252525;
  --paint: #4e4c4c;
  --accent: #fcb12b;
  --link: #0c537a;
  --white: #ffffff;
  --text: #151515;
  --muted: #6f7477;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Roboto, Arial, sans-serif;
  line-height: 1.55;
  background: #ffffff;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 950px;
}

.site-header {
  background: var(--charcoal);
  padding: 30px 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
}

.brand img {
  width: min(360px, 100%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 15px;
  font-family: Signika, Arial, sans-serif;
  font-weight: 700;
}

.site-nav a:hover {
  color: #e3e3e3;
}

.quote {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 0;
  text-decoration: none;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.quote-header,
.quote-light {
  background: #ffffff;
  color: var(--charcoal);
}

.quote-dark {
  background: var(--charcoal);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
}

.hero {
  min-height: 70vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 700ms ease;
  z-index: -3;
}

.hero-slide.active {
  opacity: 1;
}

.hero-shade {
  background: rgba(0, 0, 0, 0.65);
  z-index: -2;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  padding: 90px 0;
}

.hero-brand,
.hero-subtitle,
.expertise h2,
.testimonials h2,
.contact h2,
.footer h2 {
  font-family: Signika, Arial, sans-serif;
}

.hero-brand {
  margin: 0 0 8px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.08;
}

.hero-subtitle {
  max-width: 980px;
  margin: 0 auto 28px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.14;
}

.intro-band {
  background: var(--charcoal);
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
  font-size: 18px;
}

.intro-band p {
  margin: 0;
}

.services {
  padding: 95px 0 20px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.service-row.reverse .service-image {
  order: 2;
}

.service-image img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
}

.service-copy h2,
.about-copy h2 {
  display: inline-block;
  margin: 0 0 22px;
  padding: 10px 20px;
  color: #ffffff;
  background: var(--paint);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.88);
  font-family: Signika, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.15;
}

.service-copy p {
  margin: 0 0 22px;
  font-size: 20px;
}

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

.expertise {
  margin: 70px 0;
  padding: 75px 0;
  background: var(--charcoal);
  color: #ffffff;
  text-align: center;
}

.expertise h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.1;
}

.expertise p {
  margin: 0 auto 18px;
  font-size: 20px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 500px) 1fr;
  gap: 70px;
  align-items: center;
  padding: 75px 0 40px;
}

.about-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.about-copy p {
  margin: 0 0 16px;
}

.paint-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.paint-list li {
  position: relative;
  padding-left: 32px;
}

.paint-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  background: linear-gradient(90deg, var(--accent) 0 60%, var(--link) 60% 100%);
  border-radius: 2px;
}

.testimonials {
  padding: 70px 0 90px;
  text-align: center;
}

.testimonials h2,
.contact h2 {
  margin: 0 0 36px;
  color: var(--coal);
  font-size: 42px;
  line-height: 1.15;
}

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

.testimonial {
  padding: 10px 20px 0;
}

.testimonial p {
  min-height: 78px;
  margin: 0 0 20px;
}

.testimonial img {
  width: 95px;
  height: 95px;
  margin: 0 auto 12px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial h3 {
  margin: 0;
  font-family: Signika, Arial, sans-serif;
  font-size: 20px;
}

.testimonial span {
  color: var(--muted);
  font-size: 14px;
}

.contact {
  padding: 20px 0 75px;
  text-align: center;
}

.contact > p {
  margin: -18px 0 48px;
  font-size: 20px;
}

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

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
}

.contact-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-item h3 {
  margin: 0 0 5px;
  font-family: Signika, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--coal);
  font-family: Signika, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}

.footer {
  color: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 75px 0 50px;
}

.footer::before {
  content: "";
  display: block;
}

.footer-main-wrapper,
.footer-main {
  background: transparent;
}

.footer {
  background: var(--charcoal);
}

.footer h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 600;
}

.footer p {
  margin: 0 0 18px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.follow {
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 800;
}

.footer-bottom {
  background: #242424;
  padding: 14px 0;
  text-align: center;
}

.copyright p {
  display: inline-flex;
  margin: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 14px;
}

.copyright img {
  width: 56px;
  height: 28px;
  object-fit: contain;
}

.copyright a {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .nav-bar {
    grid-template-columns: minmax(180px, 1fr) auto auto;
    gap: 16px;
  }

  .brand img {
    width: min(290px, 100%);
  }

  .hero-brand,
  .hero-subtitle,
  .expertise h2 {
    font-size: 36px;
  }

  .service-row,
  .about {
    gap: 42px;
  }
}

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

  .site-header {
    padding: 18px 0;
  }

  .nav-bar {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: min(260px, 100%);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .quote-header {
    display: none;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding-top: 14px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero {
    min-height: 64vh;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero-brand,
  .hero-subtitle {
    font-size: 23px;
  }

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

  .intro-band {
    font-size: 16px;
  }

  .services {
    padding-top: 55px;
  }

  .service-row,
  .about,
  .testimonial-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .service-row {
    gap: 18px;
    margin-bottom: 64px;
  }

  .service-row.reverse .service-image {
    order: 0;
  }

  .align-right {
    text-align: left;
  }

  .service-copy h2,
  .about-copy h2 {
    margin-top: 0;
    font-size: 23px;
    box-shadow: none;
  }

  .service-copy p,
  .expertise p,
  .contact > p {
    font-size: 18px;
  }

  .expertise {
    margin: 30px 0;
    padding: 55px 0;
  }

  .expertise h2,
  .testimonials h2,
  .contact h2 {
    font-size: 28px;
  }

  .about {
    padding-top: 45px;
    gap: 30px;
  }

  .testimonial p {
    min-height: auto;
  }

  .contact-item p,
  .contact-item a {
    font-size: 16px;
  }

  .footer-main {
    gap: 36px;
    padding: 55px 0 40px;
  }

  .follow {
    text-align: left;
  }

  .socials {
    justify-content: flex-start;
  }
}
