/* ============================================================
   About Page — Specific Styles
   ============================================================ */

/* ── About Hero ────────────────────────────────────────────── */
.about-hero {
  min-height: 60vh;
  background: linear-gradient(135deg, #2A1206 0%, #3D1F0D 50%, #5C2E0F 100%);
  display: flex;
  align-items: flex-end;
  padding: 9rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #FDF6EC;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.about-hero h1 em { color: #E8935A; font-style: italic; }

.about-hero p {
  color: rgba(253,246,236,0.72);
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 540px;
}

/* ── About Story Layout ────────────────────────────────────── */
.about-section {
  padding: 6rem 1.5rem;
  background: #FDF6EC;
}
.about-section.dark {
  background: linear-gradient(135deg, #2A1206 0%, #3D1F0D 100%);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
}

.about-story-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #3D1F0D;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-story-text p {
  color: rgba(61,31,13,0.72);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

/* ── About image cards ─────────────────────────────────────── */
.about-story-images {
  position: relative;
  height: 420px;
}
.about-img-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(61,31,13,0.22);
}
.about-img-a {
  width: 260px;
  height: 320px;
  top: 0; left: 0;
  transform: rotate(-2.5deg);
  z-index: 1;
}
.about-img-b {
  width: 230px;
  height: 285px;
  bottom: 0; right: 0;
  transform: rotate(3deg);
  z-index: 2;
}
.about-img-card .story-img-crop {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-img-card .story-img-crop img {
  width: 100%;
  height: 111.5%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── Values grid ───────────────────────────────────────────── */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  background: rgba(253,246,236,0.07);
  border: 1px solid rgba(253,246,236,0.12);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; color: #FDF6EC; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.92rem; color: rgba(253,246,236,0.6); line-height: 1.65; }
