/* ============================================================
   about.css
   About Grid · Contact Sidebar · Value Cards · Team Section
   Loaded on: about/index.html only
   ============================================================ */

/* ABOUT MAIN GRID */

.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* CONTACT SIDEBAR  */

.contact-card {
  background: var(--crimson);
  padding: 40px 32px;
  position: sticky;
  top: 96px;
}
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  color: #fff; margin-bottom: 28px;
}
.contact-item { 
  display: flex; 
  gap: 16px; 
  margin-bottom: 24px; 
  align-items: flex-start; 
}
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(242,152,54,0.15);
  border: 1px solid rgba(242,152,54,0.3);
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.contact-icon svg{ 
  width:18px; 
  height:18px; 
  stroke:var(--amber); 
  fill:none; 
  stroke-width:1.5; 
  stroke-linecap:round; 
  stroke-linejoin:round; 
}
.contact-item p { 
  font-size: 14px; 
  color: rgba(255,255,255,0.72); 
  line-height: 1.65; 
  margin: 0; 
}
.contact-item a   { color: var(--amber); }

/* VALUE PROPOSITION  */

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.value-card {
  background: var(--cream);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--amber);
}
.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; 
  font-weight: 600;
  color: var(--crimson); 
  margin-bottom: 10px;
}
.value-card p { 
  font-size: 15px; 
  color: var(--muted); 
  line-height: 1.75; 
  margin: 0; 
}

/* TEAM SECTION  */

.team-section {
  background: var(--crimson);
  padding: 96px 9%;
}
.team-section .eyebrow { 
  color: var(--amber); 
}
.team-section .eyebrow::before { 
  background: var(--amber); 
}
.team-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 52px;
}

.team-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 36px;
  margin-bottom: 2px;
}
.team-card-header {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

/* TEAM PHOTO PLACEHOLDER */

.team-photo-wrap {
  width: 110px; height: 110px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.team-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Visible when image is not yet supplied */
.team-photo-placeholder {
  width: 100%; height: 100%;
  background: rgba(242,152,54,0.12);
  border: 2px dashed rgba(242,152,54,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.team-photo-placeholder svg {
  width: 36px; height: 36px;
  stroke: var(--amber); fill: none;
  stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.7;
}
.team-photo-placeholder span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.8;
  text-align: center;
  line-height: 1.3;
}

.team-name  { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 24px; 
  font-weight: 600; 
  color: #fff; }
.team-role  { 
  font-size: 11px; 
  font-weight: 500; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  color: var(--amber); 
  margin-top: 4px; 
}
.team-exp { 
  font-size: 12px; 
  color: rgba(255,255,255,0.4); 
  margin-top: 2px; 
}
.team-body { 
  font-size: 15px; 
  color: rgba(255,255,255,0.72); 
  line-height: 1.85; 
}
.team-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600;
  color: var(--amber); margin: 1.5rem 0 0.5rem;
}
.team-body ul li {
  font-size: 14px; color: rgba(255,255,255,0.6);
  padding: 6px 0 6px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.team-body ul li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); transform: translateY(-50%);
}
.team-body ul li:last-child { border-bottom: none; }

/*  RESPONSIVE */

@media (max-width: 900px) {
  .about-main-grid   { grid-template-columns: 1fr; }
  .contact-card      { position: static; }
  .value-grid        { grid-template-columns: 1fr; }
  .team-section      { padding: 64px 5%; }
  .team-card-header  { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .team-photo-wrap { width: 80px; height: 80px; }
}
