/* ===========================
   BODY BY A — About Page
   Bold. Cinematic. Editorial.
   =========================== */

/* --- BOLD ACCENT COLOR --- */
.about-page {
  --amber: #D4A24C;
  --amber-light: #E8C878;
  --amber-glow: rgba(212, 162, 76, 0.15);
}

/* --- MISSION HERO (full-bleed image) --- */
.about-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('/img/heroes/about-hero.jpg') center center / cover no-repeat;
  background-color: var(--bg-dark);
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 22, 19, 0.55) 0%,
    rgba(17, 22, 19, 0.7) 50%,
    rgba(17, 22, 19, 0.85) 100%
  );
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: calc(38px + 64px + 40px) 28px 80px;
}

.about-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber, #D4A24C);
  margin-bottom: 32px;
  display: inline-block;
  padding: 8px 24px;
  border: 1.5px solid rgba(212, 162, 76, 0.4);
  border-radius: 50px;
  background: rgba(212, 162, 76, 0.08);
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.about-hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}

.about-hero-pledge {
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 620px;
  margin: 28px auto 0;
  padding: 14px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-hero-pledge strong {
  font-weight: 600;
  color: #fff;
}

/* --- FOUNDERS PORTRAITS --- */
.about-founders {
  padding: 100px 0 80px;
  background: var(--bg-dark);
}

.founders-portraits {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.founder-card {
  text-align: center;
  flex: 0 1 360px;
}

.founder-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}
.founder-card:hover .founder-img-wrap img {
  transform: scale(1.03);
}

.founder-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.founder-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber, #D4A24C);
}

/* --- OUR STORY --- */
.about-story {
  padding: 100px 0 120px;
  background: var(--bg);
  position: relative;
}

.about-story-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-story .section-eyebrow {
  text-align: center;
  margin-bottom: 20px;
  color: var(--amber, #D4A24C);
}

.about-story-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 56px;
}

.about-story-body p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 24px;
}
.about-story-body p:last-child {
  margin-bottom: 0;
}
.about-story-body p em {
  font-style: italic;
  color: var(--text-primary);
  font-weight: 500;
}

/* --- BOLD DIVIDER --- */
.about-divider {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--amber, #D4A24C), transparent);
  max-width: 120px;
  margin: 0 auto;
  border: none;
}

/* --- VALUES --- */
.about-values {
  padding: var(--section-pad) 0;
  background: var(--bg-warm);
  position: relative;
}

.about-values-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-values-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 24px;
}

.about-values-lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-item {
  text-align: left;
  padding: 36px 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(17, 22, 19, 0.08);
  border-color: var(--amber, #D4A24C);
}

.value-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--amber, #D4A24C);
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.25;
}

.value-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
}

/* --- CTA --- */
.about-cta {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 162, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(61, 90, 58, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}

.about-cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber, #D4A24C);
  margin-bottom: 24px;
}

.about-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-cta-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
}

.about-cta-form {
  max-width: 460px;
  margin: 0 auto;
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Tablet */
@media (max-width: 900px) {
  .about-hero {
    min-height: 70vh;
  }
  .about-hero-inner {
    padding: calc(38px + 64px + 32px) 24px 64px;
  }

  .founders-portraits {
    gap: 32px;
  }
  .founder-card {
    flex: 0 1 280px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-founders {
    padding: 72px 0 56px;
  }

  .about-story {
    padding: 72px 0 88px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .about-hero {
    min-height: 80vh;
  }
  .about-hero-inner {
    padding: calc(38px + 64px + 32px) 20px 56px;
  }

  .about-hero-eyebrow {
    font-size: 10px;
    padding: 6px 16px;
    margin-bottom: 24px;
  }

  .about-hero-title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .about-hero-subtitle {
    font-size: 15px;
  }

  .about-founders {
    padding: 56px 0 40px;
  }

  .founders-portraits {
    flex-direction: row;
    gap: 16px;
  }
  .founder-card {
    flex: 1 1 0;
    min-width: 0;
  }
  .founder-img-wrap {
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .founder-name {
    font-size: 18px;
  }
  .founder-role {
    font-size: 10px;
  }

  .about-story {
    padding: 56px 0 72px;
  }
  .about-story-heading {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .about-story-body p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .about-values-heading {
    font-size: 28px;
  }
  .about-values-lead {
    font-size: 15px;
    margin-bottom: 48px;
  }
  .values-grid {
    gap: 20px;
  }
  .value-item {
    padding: 28px 24px;
  }
  .value-item h3 {
    font-size: 19px;
  }
  .value-item p {
    font-size: 14px;
  }

  .about-cta {
    padding: 72px 0;
  }
  .about-cta-heading {
    font-size: 28px;
  }
  .about-cta-body {
    font-size: 15px;
  }
}

/* Small phone */
@media (max-width: 400px) {
  .about-hero-title {
    font-size: 26px;
  }

  .founders-portraits {
    gap: 12px;
  }
  .founder-img-wrap {
    border-radius: 10px;
  }
  .founder-name {
    font-size: 16px;
  }
}
