/* ═══════════════════════════════════════════════════
   about.css
═══════════════════════════════════════════════════ */

/* ── STORY ── */
.about-story { background: var(--dark); padding-bottom: 3rem; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1200px; margin: 0 auto;
  padding: 3rem 2rem; gap: 3rem; align-items: start;
}

/* Photo mosaic */
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.gallery-item { overflow: hidden; border: 3px solid #2a2a2a; position: relative; }
.gallery-item img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(17,17,17,.88); padding: .5rem .8rem;
  font-family: var(--font-head); font-size: .8rem;
  letter-spacing: 2px; color: var(--yellow);
  border-top: 2px solid var(--red);
}
.about-photo--tall .gallery-item img { height: 432px; }
.about-photo-stack { display: flex; flex-direction: column; gap: 10px; }

/* Text */
.about-col { }
.about-col p { font-size: .98rem; line-height: 1.8; color: #bbb; margin-bottom: 1rem; }
.about-col strong { color: var(--yellow); }

/* Arabic: the Cairo title sits tight against the body copy with the default
   line-height:1, so the two lines + paragraph touch. Give it breathing room. */
.lang-ar .about-col .section-title {
  line-height: 1.3;
  margin-bottom: 1.4rem;
}

.chef-quote {
  border-left: 6px solid var(--red);
  background: rgba(232,0,29,.08);
  padding: 1rem 1.4rem; margin: 1.2rem 0;
  font-family: var(--font-accent); font-size: .95rem;
  color: var(--white); line-height: 1.7;
  font-style: normal;
}

/* Stats */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 8px; margin-top: 1.5rem;
}
.stat-box {
  background: #1c1c1c; border: 2px solid #2a2a2a;
  padding: .9rem .4rem; text-align: center;
  border-bottom: 3px solid var(--red);
}
.stat-box__number { font-family: var(--font-head); font-size: 1.9rem; color: var(--yellow); letter-spacing: 1px; }
.stat-box__label  { font-size: .65rem; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-top: .2rem; }

/* ── VALUES ── */
.values-section { background: var(--dark); padding-bottom: 3rem; }

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}
.value-card {
  background: #161616; border: 2px solid #2a2a2a;
  border-bottom: 4px solid var(--red);
  padding: 2rem 1.5rem; text-align: center;
  transition: transform .2s, border-color .2s;
}
.value-card:hover { transform: translateY(-5px); border-color: var(--yellow); }
.value-card__icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.value-card h3    { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 3px; color: var(--yellow); margin-bottom: .7rem; }
.value-card p     { font-size: .9rem; color: var(--white); line-height: 1.7; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .stats-row  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .about-photos { grid-template-columns: 1fr; }
  .about-photo--tall .gallery-item img { height: 260px; }
}
