/* ===== About Hero ===== */
.about-hero{
  position:relative;min-height:380px;
  display:flex;align-items:flex-end;
  padding:160px 0 50px;
  background:url('https://images.unsplash.com/photo-1518611012118-696072aa579a?w=1920') center/cover no-repeat;
  color:#fff;margin-top:-70px;
}
.about-hero .hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(20,30,40,.4),rgba(20,30,40,.55))}
.about-hero .hero-content{position:relative;z-index:2}
.about-hero .hero-title{color:#fff;font-size:clamp(2.6rem,5vw,4.2rem);margin-bottom:6px;font-weight:500}
.about-hero .hero-subtitle{color:rgba(255,255,255,.88);font-size:1.05rem}

/* ===== Section base ===== */
.about-section{padding:100px 0;background:#fcfbf8}
.about-section--alt{background:var(--bg-soft)}

.section-label{
  font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--primary);margin-bottom:14px;font-weight:600;
}
.section-label--green{color:#3aa66a}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.9rem,3vw,2.6rem);font-weight:600;color:var(--dark);
  margin-bottom:22px;line-height:1.2;
}
.section-text{color:var(--muted);font-size:.98rem;line-height:1.7;margin-bottom:18px}
.section-text em{color:var(--dark);font-style:italic}
.section-text strong{color:var(--dark);font-weight:600}

/* ===== Editorial image ===== */
.editorial-image{
  border-radius:24px;overflow:hidden;
  box-shadow:0 16px 40px -20px rgba(0,0,0,.25);
  transition:transform .4s ease, box-shadow .4s ease;
}
.editorial-image img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease;display:block;min-height:420px}
.editorial-image:hover{transform:translateY(-4px);box-shadow:0 24px 50px -20px rgba(0,0,0,.32)}
.editorial-image:hover img{transform:scale(1.04)}

/* ===== Story ===== */
.story-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:70px;align-items:center}

/* ===== Philosophy ===== */
.philosophy-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:70px;align-items:center}

/* ===== Stats ===== */
.stats-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:30px;
}
.stat-card{
  background:#fff;border-radius:18px;padding:24px 26px;text-align:center;
  border:1px solid var(--border);
  box-shadow:0 6px 20px -16px rgba(0,0,0,.12);
  transition:transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover{transform:translateY(-3px);box-shadow:0 12px 30px -18px rgba(0,0,0,.2)}
.stat-number{
  font-family:'Cormorant Garamond',serif;font-weight:700;
  font-size:2.1rem;color:var(--primary);line-height:1;margin-bottom:6px;
}
.stat-label{font-size:.82rem;color:var(--muted);letter-spacing:.04em}

/* ===== Sustainability ===== */
.sustainability-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:70px;align-items:center}
.sustainability-list{margin-top:18px;display:flex;flex-direction:column;gap:12px}
.sustainability-item{
  position:relative;padding-left:30px;color:var(--dark);font-size:.95rem;
}
.sustainability-item::before{
  content:"✓";position:absolute;left:0;top:0;
  width:20px;height:20px;border-radius:50%;
  background:rgba(58,166,106,.15);color:#3aa66a;
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;font-weight:700;
}

/* ===== Trust ===== */
.trust-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:70px;align-items:center}

/* ===== Responsive ===== */
@media (max-width:960px){
  .story-grid,.philosophy-grid,.sustainability-grid,.trust-grid{
    grid-template-columns:1fr;gap:40px;
  }
  .editorial-image img{min-height:320px}
  .about-section{padding:70px 0}
  .about-hero{min-height:300px;padding:130px 0 40px}
  /* Image-first on mobile for alt sections */
  .philosophy-grid .philosophy-image{order:-1}
  .trust-grid .trust-image{order:-1}
}
@media (max-width:520px){
  .stats-grid{grid-template-columns:1fr 1fr;gap:12px}
  .stat-card{padding:18px}
  .stat-number{font-size:1.7rem}
  .editorial-image{border-radius:20px}
  .editorial-image img{min-height:260px}
}