/* ═══════════════════════════════════════
   ORBIS — ABOUT PAGE (about.html)
   ═══════════════════════════════════════ */

/* ── ORIGIN STORY ── */
.origin { background: var(--light-surface); padding: 7rem 8vw; position: relative; overflow: hidden; }
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.origin-img-col  { position: relative; }
.origin-img-main { width: 100%; aspect-ratio: 4/5; }
.origin-img-inset {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 52%; aspect-ratio: 1;
  border: 5px solid var(--light-surface);
  box-shadow: 0 16px 48px rgba(0,33,71,0.12);
}
.origin-text { padding-left: 2rem; border-left: 2px solid rgba(201,168,76,0.2); }
.origin-text p { font-size: 1.1em; font-weight: 300; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.5rem; }
.origin-text p:last-of-type { margin-bottom: 0; }
.origin-pullquote {
  margin: 2.5rem 0; padding: 2rem 2rem 2rem 2.5rem;
  border-left: 3px solid var(--gold-dark); background: var(--light-bg);
}
.origin-pullquote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; font-style: italic;
  color: var(--text-dark); line-height: 1.5;
}

/* ── MISSION + VALUES ── */
.mission { background: var(--oxford); padding: 7rem 8vw; position: relative; overflow: hidden; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.mission-left p { font-size: 1.1em; font-weight: 300; color: var(--body-on-dark); line-height: 1.9; margin-bottom: 1.5rem; }
.mission-statement {
  margin-top: 2.5rem; padding: 2rem 2.2rem;
  border: 1px solid rgba(201,168,76,0.18); background: rgba(201,168,76,0.04);
}
.mission-statement-label { font-size: 9px; font-weight: 600; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 0.8rem; }
.mission-statement-text  { font-family: 'Cormorant Garamond',serif; font-size: 20px; font-weight: 300; font-style: italic; color: var(--white); line-height: 1.6; }

.values-grid { display: flex; flex-direction: column; gap: 3px; }
.value-card {
  background: rgba(255,255,255,0.04); padding: 2rem 2.2rem;
  display: grid; grid-template-columns: 44px 1fr; gap: 1.5rem; align-items: start;
  border-left: 3px solid transparent; transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}
.value-card:hover { border-left-color: var(--gold); background: rgba(255,255,255,0.07); }
.value-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color 0.3s;
}
.value-card:hover .value-icon { border-color: rgba(201,168,76,0.5); }
.value-icon i  { font-size: 16px; color: var(--gold); }
.value-title   { font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.value-text    { font-size: 1em; font-weight: 300; color: var(--body-on-dark); line-height: 1.8; }

/* ── TEAM PROFILES ── */
.team { background: var(--light-bg); padding: 7rem 8vw; position: relative; overflow: hidden; }
.team-header { text-align: center; margin-bottom: 5rem; }
.team-header p { font-size: 1.1em; font-weight: 300; color: var(--text-mid); line-height: 1.9; max-width: 580px; margin: 1.2rem auto 0; }

.team-cards { display: flex; flex-direction: column; gap: 1px; background: var(--light-border); }
.profile-card {
  background: var(--light-surface); display: grid;
  position: relative; overflow: hidden;
}
.profile-card.left  { grid-template-columns: 40% 1fr; }
.profile-card.right { grid-template-columns: 1fr 40%; }
.profile-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent); }

.profile-img-col  { position: relative; min-height: 560px; }
.profile-img      { width: 100%; height: 100%; object-fit: cover; }

.profile-ph {
  width: 100%; height: 100%; min-height: 560px;
  background: var(--oxford-mid);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; position: relative;
}
.profile-ph i         { font-size: 48px; color: rgba(201,168,76,0.2); }
.profile-ph-name      { font-family: 'Cormorant Garamond',serif; font-size: 20px; font-weight: 300; color: rgba(201,168,76,0.4); letter-spacing: 2px; }
.profile-ph-note      { font-size: 9.5px; letter-spacing: 2px; color: rgba(201,168,76,0.3); text-transform: uppercase; text-align: center; max-width: 160px; line-height: 1.6; }
.profile-ph-caption   { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,21,48,0.75); font-size: 9px; letter-spacing: 1px; color: rgba(201,168,76,0.55); padding: 8px 14px; text-transform: uppercase; }

.profile-badge {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  background: var(--oxford-dark); border: 1px solid rgba(201,168,76,0.25);
  padding: 0.9rem 1.4rem;
}
.profile-card.right .profile-badge { left: auto; right: 2.5rem; }
.profile-badge-name { font-family: 'Cormorant Garamond',serif; font-size: 20px; font-weight: 600; color: var(--white); line-height: 1.1; }
.profile-badge-role { font-size: 9.5px; font-weight: 600; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-top: 4px; }

.profile-text-col { padding: 4rem 4vw 4rem 5vw; display: flex; flex-direction: column; justify-content: center; }
.profile-card.right .profile-text-col { padding: 4rem 5vw 4rem 4vw; }

.profile-num       { font-size: 10px; letter-spacing: 3px; color: var(--text-faint); text-transform: uppercase; margin-bottom: 0.6rem; }
.profile-name      { font-family: 'Cormorant Garamond',serif; font-size: clamp(32px,3.5vw,52px); font-weight: 300; color: var(--text-dark); line-height: 1.05; margin-bottom: 0.4rem; }
.profile-name em   { font-style: italic; color: var(--gold-dark); }
.profile-role-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--light-border); }
.profile-bio       { font-size: 1.05em; font-weight: 300; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.5rem; }
.profile-bio p     { margin-bottom: 1.2rem; }
.profile-bio p:last-child { margin-bottom: 0; }

.profile-specialties { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 2rem; }
.profile-specialty   { font-size: 10px; font-weight: 500; letter-spacing: 1px; color: var(--text-mid); background: var(--light-mid); border: 0.5px solid var(--light-border); padding: 6px 14px; text-transform: uppercase; }

.profile-links { display: flex; gap: 10px; margin-top: 0.5rem; }
.profile-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--oxford); text-decoration: none;
  border: 1px solid var(--light-border); padding: 10px 18px; transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.profile-link:hover { border-color: var(--oxford); background: var(--oxford); color: var(--gold-bright); }
.profile-link i { font-size: 12px; }

.profile-credentials { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--light-border); display: flex; flex-direction: column; gap: 0.9rem; }
.credential-item   { display: flex; align-items: flex-start; gap: 12px; }
.credential-item i { font-size: 13px; color: var(--gold-dark); margin-top: 3px; flex-shrink: 0; width: 18px; text-align: center; }
.credential-text   { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.6; }
.credential-text strong { font-weight: 500; color: var(--text-mid); }

/* ── FOUNDING QUOTE STRIP ── */
.why-strip {
  background: var(--oxford-dark); padding: 6rem 8vw;
  display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: center;
  border-top: 1px solid rgba(201,168,76,0.12); position: relative; overflow: hidden;
}
.why-strip::before {
  content: '"'; font-family: 'Cormorant Garamond',serif;
  font-size: 260px; color: rgba(201,168,76,0.04); line-height: 0.8;
  position: absolute; top: 1rem; left: 5vw; pointer-events: none; z-index: 0;
}
.why-strip-text  { position: relative; z-index: 1; }
.why-quote       { font-family: 'Cormorant Garamond',serif; font-size: clamp(24px,3vw,40px); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.4; margin-bottom: 1.8rem; }
.why-attr        { font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }
.why-strip-right { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 3px; }
.why-stat        { background: rgba(255,255,255,0.04); padding: 1.8rem 2rem; border-left: 2px solid transparent; transition: border-color 0.3s; }
.why-stat:hover  { border-left-color: var(--gold); }
.why-stat-num    { font-family: 'Cormorant Garamond',serif; font-size: 44px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 0.3rem; }
.why-stat-line   { width: 20px; height: 1px; background: var(--gold); margin-bottom: 0.7rem; }
.why-stat-label  { font-size: 10px; letter-spacing: 2px; color: var(--body-on-dark); text-transform: uppercase; }

/* ── HOW WE OPERATE ── */
.approach { background: var(--light-surface); padding: 7rem 8vw; position: relative; overflow: hidden; }
.approach-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-top: 4rem; }
.approach-img   { width: 100%; aspect-ratio: 16/10; }
.approach-items { display: flex; flex-direction: column; gap: 2.5rem; }
.approach-item  { display: grid; grid-template-columns: 52px 1fr; gap: 1.5rem; align-items: start; }
.approach-num-box {
  width: 52px; height: 52px; border: 1px solid var(--light-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 300; color: var(--oxford);
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}
.approach-item:hover .approach-num-box { background: var(--oxford); color: var(--gold-bright); border-color: var(--oxford); }
.approach-item-title { font-size: 14px; font-weight: 600; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 0.5rem; }
.approach-item-text  { font-size: 1em; font-weight: 300; color: var(--text-mid); line-height: 1.85; }

/* ── CTA ── */
.about-cta {
  background: var(--oxford); padding: 7rem 8vw;
  display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center;
  border-top: 1px solid rgba(201,168,76,0.15); position: relative; overflow: hidden;
}
.about-cta::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,21,48,0.8) 0%, transparent 65%);
  pointer-events: none;
}
.about-cta-title { font-family: 'Cormorant Garamond',serif; font-size: clamp(26px,3.2vw,48px); font-weight: 300; color: var(--white); line-height: 1.12; margin-bottom: 1rem; position: relative; }
.about-cta-title em { font-style: italic; color: var(--gold-bright); }
.about-cta-sub     { font-size: 1.05em; font-weight: 300; color: var(--body-on-dark); line-height: 1.85; position: relative; }
.about-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; position: relative; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .origin-grid, .mission-grid, .approach-grid, .about-cta, .why-strip { grid-template-columns: 1fr; gap: 3rem; }
  .profile-card.left, .profile-card.right { grid-template-columns: 1fr; }
  .profile-img-col { min-height: 340px; }
  .profile-ph { min-height: 340px; }
  .profile-text-col, .profile-card.right .profile-text-col { padding: 3rem 5vw; }
  .origin-img-inset { display: none; }
  .about-cta-actions { align-items: flex-start; }
  .team-header { text-align: left; }
  .team-header p { margin-left: 0; }
}

