﻿/* ═══════════════════════════════════════════════════════════════
   TWIN RIVER DEVELOPMENT - about.css
   ═══════════════════════════════════════════════════════════════ */

/* ── PAGE HEADER ────────────────────────────────────────────── */
.page-header {
  padding: 72px var(--sp-10) 64px;
  border-bottom: 0.5px solid var(--border);
  background: var(--white);
}
.page-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gray);
  margin-bottom: var(--sp-4);
  line-height: 1.05;
}
.page-header-sub {
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
}

/* ── ORIGIN STORY ───────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-20);
  align-items: start;
}

.about-split-text .section-title {
  margin-bottom: var(--sp-6);
}

.about-split-text p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--sp-5);
}
.about-split-text p:last-child { margin-bottom: 0; }
.about-split-text p strong { color: var(--text-primary); font-weight: 600; }

/* Right accent column */
.about-split-accent {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding-top: var(--sp-8);
}

.about-rivers-icon {
  width: 80px;
  height: 100px;
  opacity: 0.12;
  margin-bottom: var(--sp-2);
}
.about-rivers-icon svg { width: 100%; height: 100%; }

.about-founding-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: var(--sp-5);
  border-bottom: 0.5px solid var(--border-light);
}
.about-founding-stat:last-child { border-bottom: none; padding-bottom: 0; }

.about-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--blue);
  line-height: 1;
}
.about-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ── MISSION & VISION - DARK ────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.mission-block .section-label { margin-bottom: var(--sp-4); }

.mission-block h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: var(--sp-5);
  line-height: 1.2;
}

.mission-block p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.mission-divider {
  width: 0.5px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  margin-top: var(--sp-10);
}

/* ── WHY TWIN RIVER ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
}

.why-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-8) var(--sp-6);
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: var(--sp-5);
}
.why-card-icon svg { width: 20px; height: 20px; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.why-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Closer */
.why-closer {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  padding: var(--sp-8) 0;
  border-top: 0.5px solid var(--border-light);
  margin-bottom: var(--sp-6);
}

.why-closer-rule {
  width: 3px;
  min-height: 60px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.why-closer p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: -0.02em;
}

/* Values narrative note */
.why-values-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  padding: var(--sp-8) 0 0;
}

.why-values-rule {
  width: 3px;
  min-height: 60px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.4;
}

.why-values-note p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}
.why-values-note p a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.why-values-note p a:hover { color: var(--blue-dark); }

/* ── LEADERSHIP ─────────────────────────────────────────────── */
.team-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: var(--sp-12);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.team-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.team-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--off-white);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}
.team-card:hover .team-photo img { transform: scale(1.03); }

.team-info {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
  letter-spacing: -0.03em;
}

.team-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  display: block;
}

.team-bio {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.team-read-more {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  display: inline-block;
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  border-bottom: none;
  text-align: center;
  padding: var(--sp-20) var(--sp-10);
}
.cta-section .section-inner--narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-4);
  line-height: 1.1;
}
.cta-section p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-split-accent { flex-direction: row; flex-wrap: wrap; padding-top: 0; }
  .about-rivers-icon { display: none; }
  .about-founding-stat { border-bottom: none; padding-right: var(--sp-8); }
  .mission-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .mission-divider { display: none; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .page-header { padding: 56px var(--sp-6) 48px; }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .why-values-note { flex-direction: column; gap: var(--sp-4); }
  .why-values-rule { width: 40px; height: 3px; min-height: auto; }
}

@media (max-width: 480px) {
  .cta-actions { flex-direction: column; align-items: stretch; text-align: center; }
}

/* Dark contrast polish */
.page-header {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--white) 100%);
}
.page-header h1 {
  color: #FFFFFF;
}
.why-card,
.team-card {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.12);
}
.why-card:hover,
.team-card:hover {
  border-color: rgba(0,116,236,0.75);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}
.why-closer,
.diff-item,
.bio-highlight,
.about-founding-stat {
  border-color: rgba(255,255,255,0.1);
}
