/* =========================================
   Banner / Hero Styles
   ========================================= */

section.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100vh;
  top: 0;
  width: 100%;
}
section.home {
  height: 100vh;
}
.home::before {
  background-size: contain !important;
}

.home-hero .site-container {
  position: relative;
  z-index: 1;
  width: 100%;
}
/* --- Default Page Hero --- */
.page-hero {
  padding: 80px 0;
  background-color: #111;
  text-align: center;
  border-bottom: 1px solid #222;
  margin-bottom: 40px;
}

/* Shared banner typography (same as Home / About) */
.page-hero .page-title {
  font-size: clamp(1.5rem, 0.9984rem + 2.293vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* --- Work Hero --- */
.work-hero {
  padding: 4rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  height: 100vh;
  top: 0;
  width: 100%;
}

.work-hero-label {
  display: inline-block;
  background-color: #222;
  color: #ccc;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.work-hero-title {
  font-size: clamp(1.5rem, 0.9984rem + 2.293vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px;
  max-width: 900px;
}

.work-hero-title strong,
.work-hero-title span {
  color: var(--color-accent);
}

/* Second line of work hero title (gold/accent) */
.work-hero-title-accent {
  display: block;
  color: var(--color-accent, #c9a227);
  margin-top: 0.1em;
}

.work-hero-text {
  font-size: clamp(0.875rem, 0.7914rem + 0.3822vw, 1.25rem);
  line-height: 1.6;
  color: #ccc;
  max-width: 800px;
}

/* --- Service Hero --- */
.service-hero {
  padding: 80px 0;
  background-color: #0a0a0a; /* Slightly darker than default */
  border-bottom: 1px solid #222;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url("../images/banner.svg") no-repeat center center/cover;
  pointer-events: none;
}

.service-hero-label {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.service-hero-title {
  font-size: clamp(1.5rem, 0.9984rem + 2.293vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.service-hero-text {
  font-size: clamp(0.875rem, 0.7914rem + 0.3822vw, 1.25rem);
  color: #bbb;
  max-width: 700px;
  line-height: 1.5;
}

/* --- Contact Hero --- */
.contact-hero {
  padding: 100px 0 60px;
  text-align: center;
}

.contact-hero-title,
.contact-title {
  font-size: clamp(1.5rem, 0.9984rem + 2.293vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero-text,
.contact-subtitle {
  font-size: clamp(0.875rem, 0.7914rem + 0.3822vw, 1.25rem);
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Home Hero --- */

/* Gold Ring Glow Effect */
.home::before {
  width: 100vw;
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background: url(../images/banner.svg) no-repeat;
  z-index: 0;
  background-size: cover;
  background-position: top;
  opacity: 50%;
}

.home-hero .site-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-eyebrow {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.home-title {
  font-size: clamp(1.5rem, 0.9984rem + 2.293vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  text-align: center;
}

.home-title span {
  display: block;
}

.home-title-highlight {
  color: var(--color-accent);
}

.home-description {
  font-size: clamp(0.875rem, 0.7914rem + 0.3822vw, 1.25rem);
  color: #ffffff;
  max-width: 600px;
  line-height: 1.6;
}

.home-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Button override for banner context */
.home-actions .button {
  font-size: 15px;
}

/* =========================================
   Banner Responsive
   ========================================= */

/* Tablet */
@media (max-width: 900px) {
  section.home-hero,
  .work-hero {
    min-height: 100vh;
    height: auto;
    padding: 80px 0 60px;
    position: relative;
  }

  .home-hero .site-container,
  .sub-main-hero {
    padding: 0 20px;
  }

  .home-title {
    font-size: clamp(1.35rem, 4.5vw, 2.5rem);
  }

  .home-description {
    max-width: 100%;
    padding: 0 10px;
  }

  .home-actions {
    gap: 14px;
  }

  .home-actions .button {
    font-size: 14px;
    padding: 14px 20px;
    min-height: 44px;
  }

  .page-hero {
    padding: 50px 20px 40px;
    margin-bottom: 30px;
  }

  .page-hero .page-title {
    font-size: clamp(1.25rem, 4vw, 2.25rem);
  }

  .work-hero {
    padding: 80px 20px 60px;
    align-items: center;
    text-align: center;
  }

  .work-hero-content {
    max-width: 100%;
    padding: 0 16px;
  }

  .work-hero-label {
    font-size: 0.8rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .work-hero-title {
    font-size: clamp(1.25rem, 4vw, 2.25rem);
  }

  .work-hero-text {
    font-size: clamp(0.8125rem, 2vw, 1.125rem);
    max-width: 100%;
  }

  .service-hero {
    padding: 50px 20px 40px;
    margin-bottom: 35px;
  }

  .service-hero::before {
    width: 180px;
    height: 180px;
    opacity: 0.4;
  }

  .service-hero-title {
    font-size: clamp(1.25rem, 4vw, 2.25rem);
  }

  .service-hero-text {
    font-size: clamp(0.8125rem, 2vw, 1.125rem);
    max-width: 100%;
  }

  .contact-hero {
    padding: 60px 20px 40px;
  }

  .contact-hero-title,
  .contact-title {
    font-size: clamp(1.25rem, 4vw, 2.25rem);
  }

  .contact-hero-text,
  .contact-subtitle {
    font-size: clamp(0.8125rem, 2vw, 1.125rem);
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  section.home-hero,
  .work-hero {
    padding: 70px 0 50px;
    min-height: 70vh;
  }

  .home-hero .site-container,
  .sub-main-hero {
    padding: 0 16px;
  }

  .home-title {
    font-size: clamp(1.15rem, 5vw, 1.75rem);
    line-height: 1.2;
  }

  .home-title span {
    margin-bottom: 0.15em;
  }

  .home-description,
  .home-description .home-actions-subheading {
    font-size: clamp(0.8125rem, 2.5vw, 1rem);
    padding: 0 4px;
  }

  .home-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 12px;
  }

  .home-actions .button {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 18px;
    min-height: 44px;
  }

  .page-hero {
    padding: 40px 16px 30px;
    margin-bottom: 24px;
  }

  .page-hero .page-title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .work-hero {
    padding: 70px 16px 50px;
  }

  .work-hero-content {
    padding: 0 8px;
  }

  .work-hero-label {
    font-size: 0.75rem;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .work-hero-title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-bottom: 16px;
  }

  .work-hero-text {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
  }

  .service-hero {
    padding: 40px 16px 30px;
    margin-bottom: 28px;
  }

  .service-hero::before {
    width: 120px;
    height: 120px;
  }

  .service-hero-label {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .service-hero-title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-bottom: 14px;
  }

  .service-hero-text {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
  }

  .contact-hero {
    padding: 50px 16px 35px;
  }

  .contact-hero-title,
  .contact-title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-bottom: 14px;
  }

  .contact-hero-text,
  .contact-subtitle {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
  }
}

/* Page content (About/Services/Product wrapper) – responsive */
@media (max-width: 900px) {
  section.page-content {
    min-height: auto;
    height: auto;
    padding: 80px 0 60px;
    position: relative;
  }
}

@media (max-width: 576px) {
  section.page-content {
    padding: 70px 0 50px;
  }
}
