/* Wrapper */
.wrap{
  max-width:var(--max);
  margin:32px auto;
  padding:0 20px;
}

/* HERO */
.story-hero{
  display:flex;
  background:var(--glass);
  padding:36px;
  border-radius:18px;
  border:1px solid var(--border);
  gap:28px;
  box-shadow:0 12px 30px rgba(0,0,0,0.45);
}
.story-hero-img{
  width:420px;
  height:300px;
  border-radius:18px;
  overflow:hidden;
}
.story-hero-img img{
  width:100%;height:100%;object-fit:cover;
}
.story-hero-text h1{
  font-family:"Great Vibes",serif;
  font-size:3rem;
  color:var(--amba);
  margin:0;
}
.story-hero-text p{
  margin-top:12px;
  line-height:1.7;
  color:#d7faf4;
}

/* Section Title */
.section-title{
  margin-top:40px;
}
.section-title h2{
  font-family:"Great Vibes",serif;
  color:var(--amba);
  font-size:2.4rem;
  margin:0;
}

/* Founder */
.founder-box{
  background:var(--glass);
  padding:26px;
  border-radius:18px;
  border:1px solid var(--border);
  display:flex;
  gap:26px;
  margin-top:20px;
  align-items:center;
}
.founder-img{
  width:270px;
  height:240px;
  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;
  margin-top:8px;
  line-height:1.6;
}

/* Timeline */
.timeline{
  margin-top:30px;
  padding-left:20px;
  border-left:3px solid var(--amba);
}
.timeline-item{
  margin-bottom:24px;
}
.timeline-item h4{
  margin:0;
  color:var(--amba);
}
.timeline-item p{
  margin-top:6px;
  color:#d8faf3;
}

/* Mission Vision Values */
.mvv-grid{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.mvv-card{
  background:var(--glass);
  padding:24px;
  border-radius:16px;
  border:1px solid var(--border);
  text-align:center;
}
.mvv-card h3{
  color:var(--amba);
  margin:0 0 8px;
}
.mvv-card p{
  color:#d8faf3;
}

/* Gallery */
.gallery{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
}

/* Slogan */
.slogan{
  margin-top:30px;
  background:var(--glass);
  padding:26px;
  border-radius:16px;
  border:1px solid var(--border);
  text-align:center;
}
.slogan img{width:180px;margin-bottom:10px;}
.slogan p{color:#d8faf3;}

/* Collage Section */
.collage{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:200px;
  gap:18px;
}

.collage-item{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--border);
}

.collage-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s ease;
}

.collage-item:hover img{
  transform:scale(1.1);
}

/* Size Variations */
.collage-item.tall{
  grid-row:span 2;
}

.collage-item.wide{
  grid-column:span 2;
}

@media(max-width:900px){
  .collage{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:180px;
  }
  .collage-item.wide{
    grid-column:span 1;
  }
}



@media(max-width:900px){
  .story-hero{flex-direction:column;}
  .story-hero-img{width:100%;height:260px;}
  .mvv-grid{grid-template-columns:1fr;}
  .gallery{grid-template-columns:1fr 1fr;}
  .founder-box{flex-direction:column;text-align:center;}
}
@media(max-width:600px){
  .gallery{grid-template-columns:1fr;}
  .collage{
    grid-template-columns:1fr;
    grid-auto-rows:220px;
  }
  .collage-item.tall{
    grid-row:span 1;
  }
}