/* Wide Apple Style Hero */
.hero-box{
  width:95%;
  margin:0 auto;
  padding:40px;
  display:flex;
  gap:32px;
  background:var(--glass);
  border-radius:22px;
  border:1px solid var(--border);
  box-shadow:0 12px 30px rgba(0,0,0,0.45);
}

.hero-img-us{
  width:50%;
  height:340px;
  border-radius:18px;
  overflow:hidden;
}
.hero-img-us img{
  width:100%; height:100%;
  object-fit:cover;
}
.hero-text-us{
  width:50%;
}
.hero-text-us h1{
  font-family:"Great Vibes",serif;
  font-size:3rem;
  color:var(--amba);
  margin-top:0;
}
.hero-text-us p{
  color:#e4faf6;
  font-size:1.05rem;
  line-height:1.8;
}

/* Section Title */
.section-title{
  margin-top:50px;
}
.section-title h2{
  font-family:"Great Vibes",serif;
  color:var(--amba);
  font-size:2.4rem;
  margin:0;
}

/* Storytelling Section */
.story-box{
  background:var(--glass);
  border:1px solid var(--border);
  padding:26px;
  border-radius:18px;
  margin-top:20px;
  line-height:1.75;
  color:#dffaf4;
  font-size:1.05rem;
  box-shadow:0 8px 28px rgba(0,0,0,0.35);
}

/* Founder */
.founder-box{
  margin-top:30px;
  background:var(--glass);
  border:1px solid var(--border);
  padding:26px;
  border-radius:18px;
  display:flex;
  gap:24px;
  align-items:center;
}
.founder-img{
  width:400px;
  height:200px;
  border-radius:50%;
  overflow:hidden;
}
.founder-img img{
  width:100%; height:100%; object-fit:cover;
}
.founder-text h3{
  color:var(--amba);
  margin:0;
  font-size:1.6rem;
}
.founder-text p{
  color:#d8faf3;
  font-size:1.05rem;
  margin-top:10px;
  line-height:1.7;
}

/* Why Choose Us */
.choose-grid{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.choose-card{
  text-align:center;
  background:var(--glass);
  border:1px solid var(--border);
  padding:24px;
  border-radius:16px;
}
.choose-card i{
  font-size:2rem;
  color:var(--amba);
}
.choose-card h4{
  margin:10px 0 6px;
  color:var(--amba);
}
.choose-card p{
  color:#d8faf3;
  font-size:0.95rem;
}

/* Collage */
.collage{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:220px;
  gap:18px;
}
.collage-item{
  position:relative;
  overflow:hidden;
  border-radius:16px;
}
.collage-item img{
  width:100%; height:100%;
  object-fit:cover;
  transition:0.4s;
}
.collage-item:hover img{
  transform:scale(1.1);
}
.collage-item.tall{grid-row:span 2;}
.collage-item.wide{grid-column:span 2;}


/* Responsive */
@media(max-width:900px){
  .hero-box{flex-direction:column;}
  .hero-img-us{width:100%;}
  .hero-text-us{width:100%;}
  .choose-grid{grid-template-columns:1fr;}
  .collage{grid-template-columns:1fr 1fr;}
}
@media(max-width:600px){
  .collage{grid-template-columns:1fr;}
  .founder-img {width: 600px; }
}