.hero-home{
  align-items:center;
  gap:32px;
  padding:72px 0 48px;
}

.hero-home h1{
  max-width:760px;
}

.hero-points{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.75);
  font-size:.95rem;
  margin-top:18px;
}

.hero-points span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background:rgba(255,255,255,.03);
}

.section-band{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.installations-head{
  margin-bottom:26px;
}

.installations-sub{
  max-width:680px;
  margin:10px auto 0;
}

.home-project-regions{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  align-items:start;
}

.region-column{
  min-width:0;
}

.region-column h3{
  margin:0 0 14px;
  font-size:1.2rem;
  text-align:center;
}

.project-card-home{
  width:100%;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.02);
}

.project-card-home + .project-card-home{
  margin-top:18px;
}

.project-image-link{
  display:block;
  width:100%;
  aspect-ratio:16/10;
  background:rgba(255,255,255,.03);
  overflow:hidden;
}

.project-image-link img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.project-card-body{
  padding:16px;
}

.project-card-body h4{
  margin:0 0 8px;
  font-size:1rem;
}

.project-location{
  margin:0 0 14px;
  color:rgba(255,255,255,.72);
}

.installations-footer{
  display:flex;
  justify-content:center;
  margin-top:26px;
}

.designer-cta-panel{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:28px;
  border:1px solid rgba(212,175,55,.18);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}

.designer-actions{
  display:flex;
  gap:12px;
}

.premium-brand-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

/* Tablet */
@media (max-width:900px){
  .designer-cta-panel{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* Mobile only */
@media (max-width:700px){
  .home-project-regions{
    grid-template-columns:1fr;
  }

  .designer-actions{
    width:100%;
    flex-direction:column;
  }

  .designer-actions .btn{
    width:100%;
  }

  .premium-brand-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   HOME MOBILE FIX
   ========================================================= */

@media (max-width:920px){
  .hero-bleed{
    padding:34px 0 30px;
    background-position:center;
  }

  .hero-home{
    min-height:auto;
    grid-template-columns:1fr;
    align-items:start;
    gap:22px;
    padding:44px 0 24px;
  }

  .hero-copy{
    padding-bottom:0;
  }

  .hero-card{
    width:100%;
    max-width:560px;
  }

  .hero-estimate-card{
    background:rgba(8,12,18,.72);
    backdrop-filter:blur(12px);
  }
}

@media (max-width:640px){
  .hero-bleed{
    background-image:
      linear-gradient(180deg, rgba(5,8,13,.42) 0%, rgba(5,8,13,.74) 48%, rgba(5,8,13,.94) 100%),
      url("/assets/img/hero.webp");
    background-position:center top;
  }

  .hero-home{
    padding:36px 0 20px;
  }

  .eyebrow{
    font-size:.72rem;
    line-height:1.55;
    letter-spacing:.14em;
    max-width:310px;
  }

  .hero-home h1{
    max-width:340px;
    font-size:clamp(2.15rem, 10vw, 3rem);
    line-height:1.12;
    letter-spacing:-.03em;
  }

  .hero-home .lead{
    max-width:350px;
    font-size:1rem;
    line-height:1.65;
  }

  .hero-cta{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    max-width:350px;
  }

  .hero-cta .btn{
    width:100%;
    padding-left:12px;
    padding-right:12px;
  }

  .hero-points{
    display:grid;
    gap:8px;
    max-width:360px;
  }

  .hero-points span{
    width:100%;
    justify-content:flex-start;
    background:rgba(0,0,0,.24);
  }

  .hero-estimate-card{
    padding:20px;
    border-radius:20px;
  }

  .home-project-regions{
    grid-template-columns:1fr;
  }

  .region-column h3{
    text-align:left;
  }
}

@media (max-width:420px){
  .hero-cta{
    grid-template-columns:1fr;
  }

  .hero-home h1,
  .hero-home .lead,
  .hero-points{
    max-width:none;
  }
}