/* ============================================
   ABOUT PAGE Styles
   ============================================ */

/* Active nav link */
.nav-links a.active {
  color: var(--teal);
}

/* ── About Hero ───────────────────────────── */
.about-hero {
  padding: 0;
  background: var(--warm-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.about-hero-text {
  padding: 160px 60px 100px;
  position: relative;
  z-index: 2;
}

.about-hero-text .section-label {
  color: var(--teal-light);
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin: 20px 0 32px;
}

.about-hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  color: var(--teal-light);
}

.about-hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(30, 28, 25, 0.6);
  max-width: 420px;
  border-left: 2px solid var(--teal);
  padding-left: 20px;
}

.about-hero-image {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.about-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(42, 37, 32, 0.5) 0%,
    rgba(42, 37, 32, 0.1) 40%,
    transparent 100%
  );
}

/* ── Origin Story ─────────────────────────── */
.origin-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-mid) 100%);
  padding: 120px 60px;
}

.origin-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.origin-stat-block {
  position: sticky;
  top: 120px;
}

.origin-number {
  font-family: var(--font-serif);
  font-size: 110px;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
  line-height: 0.9;
  margin-bottom: 16px;
}

.origin-number span {
  font-size: 60px;
}

.origin-stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.6;
}

.origin-right .section-title {
  margin: 20px 0 36px;
}

.origin-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.origin-body p:last-child {
  margin-bottom: 0;
}

/* ── Credentials Bar ──────────────────────── */
.creds-bar {
  background: var(--warm-light);
  padding: 48px 60px;
  border-top: 1px solid rgba(30, 28, 25, 0.08);
  border-bottom: 1px solid rgba(30, 28, 25, 0.08);
}

.creds-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.cred {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 0 40px;
  flex: 1;
}

.cred-logo-wrap {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.cred-logo {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
}

.cred:hover .cred-logo { filter: grayscale(0%) opacity(1); }

.cred-logo-placeholder { height: 44px; }

.cred-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.cred-value {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
}

.cred-value {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
}

.cred-divider {
  width: 1px;
  height: 44px;
  background: rgba(196, 180, 154, 0.15);
  flex-shrink: 0;
}

/* ── What Makes It Different ──────────────── */
.diff-section {
  background: var(--cream);
  padding: 120px 60px;
}

.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.diff-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.diff-header .section-title {
  margin: 16px 0 20px;
}

.diff-subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.7;
}

.diff-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.diff-pillar {
  background: var(--white);
  padding: 52px 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.diff-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(42, 37, 32, 0.08);
  z-index: 1;
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 24px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}

.pillar-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--charcoal);
  opacity: 0.8;
}

/* ── ELDOA Section ────────────────────────── */
.eldoa-section {
  background: linear-gradient(160deg, var(--warm-light) 0%, var(--warm-mid) 100%);
  padding: 120px 60px;
}

.eldoa-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.eldoa-content .section-label {
  color: var(--stone);
}

.eldoa-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin: 16px 0 32px;
}

.eldoa-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  color: var(--teal-light);
}

.eldoa-content p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(30, 28, 25, 0.65);
  margin-bottom: 20px;
}

.eldoa-distinction {
  margin-top: 36px;
  padding: 28px 32px;
  border-left: 2px solid var(--teal);
  background: rgba(255,255,255,0.03);
}

.distinction-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 10px;
}

.distinction-body {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(30, 28, 25, 0.7);
  margin-bottom: 0 !important;
}

.eldoa-visual {
  position: relative;
}

.eldoa-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 60% center;
  filter: grayscale(20%);
}

.eldoa-tag-block {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--teal);
  padding: 12px 24px;
}

.eldoa-tag-block span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
}

/* ── Spartan Section ──────────────────────── */
.spartan-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-mid) 100%);
  padding: 120px 60px;
}

.spartan-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.spartan-text .section-title {
  margin: 16px 0 32px;
}

.spartan-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.spartan-text .btn-primary {
  margin-top: 12px;
  display: inline-block;
}

.spartan-detail {
  display: flex;
  align-items: center;
}

.spartan-detail-block {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-mid) 100%);
  padding: 48px 44px;
  width: 100%;
}

.spartan-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
}

.spartan-detail-item:last-child {
  border-bottom: none;
}

.spartan-detail-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.spartan-detail-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
}

.spartan-status {
  color: var(--stone) !important;
  font-style: italic;
}

/* ── Philosophy Section ───────────────────── */
.philosophy-section {
  background: var(--cream);
  padding: 120px 60px;
}

.philosophy-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--dark);
  border: none;
  padding: 0;
  margin-bottom: 40px;
}

.philosophy-quote em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  color: var(--teal);
}

.philosophy-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.phil-divider {
  opacity: 0.4;
}

/* ── About CTA ────────────────────────────── */
.about-cta-section {
  background: linear-gradient(160deg, #2a4a48 0%, #1e3635 100%);
  padding: 120px 60px;
}

.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-cta-left .section-label {
  color: var(--teal);
}

.about-cta-left .section-title {
  color: var(--cream);
  margin-top: 16px;
}
}

.about-cta-left .section-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  color: var(--teal-light);
}

.about-cta-right p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(30, 28, 25, 0.6);
  margin-bottom: 36px;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost-dark {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 232, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ghost-dark:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-hero-text {
    padding: 140px 28px 60px;
  }
  .about-hero-image {
    height: 60vw;
    min-height: 300px;
  }
  .origin-section,
  .diff-section,
  .eldoa-section,
  .spartan-section,
  .philosophy-section,
  .about-cta-section {
    padding: 80px 28px;
  }
  .origin-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .origin-stat-block {
    position: static;
    display: flex;
    align-items: baseline;
    gap: 16px;
  }
  .origin-number {
    font-size: 72px;
  }
  .creds-bar {
    padding: 32px 28px;
  }
  .creds-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cred {
    padding: 0;
  }
  .cred-divider {
    display: none;
  }
  .diff-pillars {
    grid-template-columns: 1fr;
  }
  .eldoa-inner {
    grid-template-columns: 1fr;
  }
  .eldoa-visual {
    order: -1;
  }
  .eldoa-tag-block {
    left: 0;
  }
  .spartan-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-cta-buttons {
    flex-direction: column;
  }
}

/* ── Navigation Override for About Page ─────────────────────────── */
.about-hero .nav-links a {
  color: var(--cream) !important;
  font-weight: 500 !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.about-hero .nav-links a:hover,
.about-hero .nav-links a.active {
  color: var(--teal) !important;
}

.cred-divider {
  width: 1px;
  height: 32px;
  background: rgba(30, 28, 25, 0.15);
}

/* ── Spartan Visual & Image ─────────────────────────── */
.spartan-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.spartan-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--warm-mid);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.spartan-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fallback when no image */
.spartan-image-placeholder:empty::before {
  content: 'Spartan HQ Gym Image\A(800x600px recommended)';
  white-space: pre;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--stone);
  text-align: center;
  background: linear-gradient(135deg, var(--warm-light) 0%, var(--warm-mid) 100%);
}

/* ── CTA Section Text Colors for Dark Background ─────────────────────────── */
.about-cta-right p {
  color: rgba(245, 240, 232, 0.9);
}

.about-cta-buttons {
  margin-top: 32px;
}
