* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

/* Top Bar */
.top-bar {
  background: #050505;
  border-bottom: 1px solid #2b2b2b;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 48px;
}

.top-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.top-link:hover {
  text-decoration: underline;
}

/* Hero */
.hero-section {
  background: #e9e9e9;
  color: #111;
  padding: 28px 24px 36px;
}

.hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.hero-image-frame {
  background: #000;
  padding: 14px;
  flex: 0 0 420px;
  box-shadow: -10px 10px 0 #000;
}

.hero-main-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-right {
  flex: 1;
  min-width: 0;
}

.hero-right h1 {
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 16px;
}

.hero-subtext {
  text-align: center;
  font-size: 18px;
  margin-bottom: 24px;
}

/* Service bars */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.service-row {
  background: #000;
  color: #fff;
  text-decoration: none;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 38px;
  overflow: visible;
}

.service-row:hover {
  filter: brightness(1.08);
}

.service-text {
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
  padding-right: 18px;
}

.service-img {
  height: 66px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/* Each bar longer than previous */
.service-1 {
  width: 58%;
}

.service-2 {
  width: 66%;
}

.service-3 {
  width: 74%;
}

.service-4 {
  width: 88%;
}

.hero-cta-wrap {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.quote-button {
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  padding: 14px 26px;
  display: inline-block;
}

.quote-button:hover {
  filter: brightness(1.08);
}

/* About */
.about-section {
  background: #000;
  padding: 34px 24px 28px;
}

.about-box {
  max-width: 1200px;
  margin: 0 auto;
  border: 55px solid #6d0000;
  padding: 130px 60px 130px;
  position: relative;
  min-height: 640px;
  background: #000;
}

.about-box h2 {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background: #6d0000;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  padding: 0 16px;
}

.about-box p {
  font-size: 22px;
  line-height: 1.7;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

/* Gallery */
.gallery-section {
  background: #000;
  padding: 0 24px 40px;
}

.gallery-row {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* Bottom Bar */
.bottom-bar {
  background: #050505;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.bottom-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.bottom-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.bottom-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-image-frame {
    flex: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-right h1 {
    font-size: 40px;
  }

  .service-1,
  .service-2,
  .service-3,
  .service-4 {
    width: 100%;
  }

  .gallery-row {
    grid-template-columns: 1fr;
  }

  .gallery-img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .top-contact {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    text-align: center;
  }

  .hero-right h1 {
    font-size: 30px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .service-row {
    min-height: 58px;
    padding-left: 18px;
  }

  .service-text {
    font-size: 20px;
    white-space: normal;
  }

  .service-img {
    height: 58px;
  }

  .quote-button {
    font-size: 20px;
  }

  .about-box {
    border-width: 24px;
    padding: 90px 24px;
    min-height: auto;
  }

  .about-box p {
    font-size: 18px;
  }

  .bottom-contact {
    gap: 18px;
  }
}