/* ═══════════════════════════ ABOUT PAGE ═══════════════════════════ */

/* ── INTRO ── */
.about-intro {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start; background: var(--cream);
}
.about-intro-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.about-photo-frame { position: relative; }

/* Photo container */
.about-photo-placeholder {
  width: 320px; height: 400px;
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

/* Real photo */
.about-real-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Fallback when photo missing */
.aph-fallback {
  width: 100%; height: 100%;
  display: none;
  align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(201,168,76,0.03) 40px,rgba(201,168,76,0.03) 41px);
}
.aph-inner {
  font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  color: rgba(201,168,76,0.3);
}

/* Badge */
.about-photo-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  padding: 16px 20px; border-radius: 3px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
  text-align: center;
}
.apb-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.apb-label { font-size: 0.65rem; letter-spacing: 0.12em; color: rgba(26,50,96,0.7); line-height: 1.3; }

.about-intro-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }

.about-intro-content .s-tag { display: block; }
.about-para { color: var(--text-muted); line-height: 1.9; font-size: 1rem; margin-top: 1.1rem; }
.about-para strong { color: var(--navy); }

.about-stats-row {
  display: flex; gap: 0; margin-top: 2rem;
  border: 1px solid rgba(201,168,76,0.2); border-radius: 2px; overflow: hidden;
}
.about-stat { flex: 1; text-align: center; padding: 18px 12px; border-right: 1px solid rgba(201,168,76,0.15); background: var(--white); }
.about-stat:last-child { border-right: none; }
.about-stat-num { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-stat-label { font-size: 0.62rem; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; }

/* ── APPROACH CARDS WITH IMAGES ── */
.approach-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.approach-card {
  background: var(--white); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 3px; overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.approach-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201,168,76,0.15); border-color: var(--gold-dim); }

/* Image in approach card */
.approach-icon-wrap {
  width: 100%; height: 160px;
  overflow: hidden; position: relative;
  background: var(--navy);
}
.approach-icon-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.approach-card:hover .approach-icon-img { transform: scale(1.05); }
.approach-icon-fallback {
  display: none; /* shown only if image fails */
  font-size: 2.5rem;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
}

.approach-card-body { padding: 22px 20px; }
.approach-title { font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.approach-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }

/* ── SPECIALISATIONS WITH IMAGES ── */
.spec-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.spec-card {
  background: var(--white); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 3px; overflow: hidden;
  display: flex; gap: 0;
  transition: all var(--transition);
}
.spec-card:hover { border-color: var(--gold-dim); box-shadow: 0 8px 30px rgba(201,168,76,0.12); }

.spec-num {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--font-display); font-size: 0.55rem; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5); background: var(--navy);
  padding: 16px 10px; flex-shrink: 0; font-weight: 700;
}

/* Image in spec card */
.spec-img-wrap {
  width: 120px; flex-shrink: 0;
  overflow: hidden; position: relative;
  background: var(--navy-mid);
}
.spec-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.spec-card:hover .spec-img { transform: scale(1.06); }
.spec-img-fallback {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.spec-body { padding: 24px 22px; }
.spec-title { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.spec-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.08); max-width: 1200px; margin: 0 auto; }
.testi-card { background: rgba(11,26,62,0.7); padding: 36px 28px; }
.testi-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-quote { font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-bright)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.testi-name { font-family: var(--font-display); font-size: 0.72rem; color: var(--gold-bright); }
.testi-loc { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg,var(--gold-dim) 0%,var(--gold) 50%,var(--gold-bright) 100%); padding: 60px 5%; }
.cta-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band-h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cta-band-sub { font-size: 1rem; color: rgba(26,50,96,0.65); font-family: var(--font-serif); font-style: italic; }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta-dark { display: inline-flex; align-items: center; font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.22em; font-weight: 700; color: var(--gold); background: var(--navy); padding: 15px 32px; border-radius: 1px; transition: all var(--transition); text-transform: uppercase; }
.btn-cta-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-cta-outline { display: inline-flex; align-items: center; font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.22em; font-weight: 600; color: var(--navy); border: 1.5px solid rgba(26,50,96,0.3); padding: 14px 30px; border-radius: 1px; transition: all var(--transition); text-transform: uppercase; }
.btn-cta-outline:hover { background: rgba(26,50,96,0.08); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-intro { grid-template-columns: 1fr; text-align: center; }
  .about-intro-visual { align-items: center; }
  .approach-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .spec-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
  .about-stats-row { flex-direction: column; }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .about-stat:last-child { border-bottom: none; }
  .spec-img-wrap { width: 90px; }
}
