/* ============================================================
   ABOUT PAGE — css/about.css
   Styles specific to about.html
   ============================================================ */

/* ── STORY SECTION ── */
#story .section-body + .section-body { margin-top: 1rem; }

#story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--cream);
}

.story-visual { position: relative; height: 600px; }
.story-img-main { position: absolute; top: 0; right: 0; width: 78%; height: 82%; object-fit: cover; }
.story-img-sm { position: absolute; bottom: 0; left: 0; width: 48%; height: 48%; object-fit: cover; border: 6px solid var(--cream); }

.story-badge {
  position: absolute;
  top: 44%;
  left: 42%;
  z-index: 2;
  width: 105px;
  height: 105px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
}

.story-badge strong { font-size: 1.8rem; font-weight: 600; color: var(--charcoal); line-height: 1; }
.story-badge span { font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); text-align: center; margin-top: 2px; }

.story-quote {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--gold);
  background: white;
}

.story-quote blockquote {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  line-height: 1.65;
}

/* ── VALUES SECTION ── */
#values { background: var(--charcoal); }
#values .section-title { color: var(--cream); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: 3rem;
}

.val-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.4s;
}

.val-card:hover { background: var(--card-hover); }
.val-icon { font-size: 2rem; margin-bottom: 1.5rem; display: block; }
.val-title { font-family: var(--ff-display); font-size: 1.2rem; color: var(--gold); margin-bottom: 0.8rem; }
.val-desc { font-size: 0.78rem; line-height: 1.8; color: rgba(245,240,232,0.4); }

/* ── SUBSIDIARIES ── */
#subsidiaries { background: var(--warm-white); }

.sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }

.sub-card {
  background: var(--cream);
  padding: 3.5rem;
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.sub-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: rgba(196,169,107,0.1);
  border-radius: 50%;
  transform: translate(40%, -40%);
}

.sub-logo { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400; color: var(--gold); margin-bottom: 0.4rem; }
.sub-loc { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.sub-desc { font-size: 0.84rem; line-height: 1.85; color: var(--mid); }

/* ── PROCESS ── */
#process { background: var(--cream); text-align: center; }
/* Shared .process-steps / .step-circle / .step-title / .step-desc → css/style.css */

/* ── RESPONSIVE — ABOUT ── */
@media (max-width: 900px) {
  #story { grid-template-columns: 1fr; gap: 3rem; }
  .story-visual { height: 380px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .sub-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .story-visual { height: 260px; }
}
