.public-main {
  width: 100%;
  margin: 0;
}

.home-hero-band,
.home-photo-band {
  width: 100%;
  min-height: 430px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-hero-band {
  background-image: url("../images/roughneck-1.png");
  min-height: 520px;
}

.photo-band-two {
  background-image: url("../images/roughneck-4.png");
  min-height: 360px;
}

.photo-band-three {
  background-image: url("../images/roughneck-7.png");
  min-height: 340px;
}

.band-overlay {
  width: 100%;
  min-height: inherit;
  background: linear-gradient(90deg, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.50) 45%, rgba(17,17,17,0.35) 100%);
  display: flex;
  align-items: center;
}

.light-overlay {
  background: linear-gradient(90deg, rgba(17,17,17,0.54) 0%, rgba(17,17,17,0.36) 45%, rgba(17,17,17,0.24) 100%);
}

.band-content {
  width: min(1180px, 92%);
  margin: 0 auto;
  color: white;
  max-width: 720px;
}

.narrow-band-content {
  max-width: 620px;
}

.band-content h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 14px 0;
  color: white;
}

.band-content h3 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 14px 0;
  color: white;
}

.band-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: rgba(255,255,255,0.94);
}

.home-content-section {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 50px 0;
}

.light-section {
  padding-top: 40px;
  padding-bottom: 50px;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.content-copy h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.content-copy p {
  line-height: 1.75;
  color: var(--text-soft);
}

.content-image-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.content-image-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  min-height: 360px;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.info-card p,
.info-card li {
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .public-main {
    width: 100%;
  }

  .home-hero-band,
  .home-photo-band {
    min-height: 280px;
    background-position: center center;
  }

  .home-hero-band {
    min-height: 400px;
  }

  .photo-band-two,
  .photo-band-three {
    min-height: 260px;
  }

  .band-overlay {
    padding: 0;
    background: linear-gradient(180deg, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.52) 55%, rgba(17,17,17,0.36) 100%);
  }

  .light-overlay {
    background: linear-gradient(180deg, rgba(17,17,17,0.58) 0%, rgba(17,17,17,0.40) 55%, rgba(17,17,17,0.28) 100%);
  }

  .band-content {
    width: min(100%, 92%);
    max-width: 100%;
    padding: 22px 0;
  }

  .narrow-band-content {
    max-width: 100%;
  }

  .band-content h2 {
    font-size: 1.95rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .band-content h3 {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .band-content p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .band-content .button-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 16px;
  }

  .band-content .button-row .btn {
    width: 100%;
    text-align: center;
  }

  .home-content-section {
    width: min(100%, 94%);
    padding: 30px 0;
  }

  .light-section {
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .content-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .content-copy h3 {
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .content-copy p {
    font-size: 0.97rem;
    line-height: 1.7;
  }

  .content-copy .button-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .content-copy .button-row .btn {
    width: 100%;
    text-align: center;
  }

  .content-image-card {
    padding: 12px;
    border-radius: 14px;
  }

  .content-image-card img {
    min-height: 220px;
    max-height: 280px;
    border-radius: 10px;
  }

  .three-col-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-card {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .info-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
  }

  .info-card p,
  .info-card li {
    font-size: 0.96rem;
    line-height: 1.65;
  }
}