/**
 * World Record Camps — About Us presentation layer
 * Reuses homepage tokens/utilities from home.css (.page-about).
 */

.page-about {
  --about-hero-height: clamp(500px, 62vw, 640px);
}

.page-about .main-content,
.page-about #main-content {
  padding-top: 0;
}

/* ========== ABOUT HERO ========== */
.about-hero {
  position: relative;
  min-height: var(--about-hero-height);
  margin-top: var(--wrc-header-offset);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #0b3d2e;
}

.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(6, 78, 59, 0.92) 0%,
      rgba(6, 95, 70, 0.78) 28%,
      rgba(16, 185, 129, 0.35) 55%,
      rgba(16, 185, 129, 0.08) 78%,
      transparent 100%
    ),
    linear-gradient(180deg, rgba(17, 34, 80, 0.18) 0%, transparent 40%, rgba(17, 34, 80, 0.28) 100%);
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--wrc-max));
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: end;
}

.about-hero__eyebrow {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0.85rem;
}

.about-hero__title {
  font-family: 'Bebas Neue', Impact, Haettenschweiler, sans-serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 7.5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 1.15rem;
  max-width: 11ch;
}

.about-hero__title .accent-gold {
  color: var(--wrc-gold);
}

.about-hero__lead {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  max-width: 42ch;
}

.about-hero__actions .home-btn--on-dark {
  background: #fff;
  color: var(--wrc-green-dark);
  border-color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.about-hero__actions .home-btn--on-dark:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.about-hero__rail {
  justify-self: end;
  align-self: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.about-hero__rail::before {
  content: '';
  width: 3px;
  height: 4.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--wrc-gold), var(--wrc-green));
}

/* Credibility sits overlapping hero bottom */
.page-about .home-credibility {
  margin-top: -2.75rem;
  z-index: 3;
}

/* ========== OUR STORY ========== */
.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.about-story__eyebrow {
  color: var(--wrc-gold-deep);
}

.about-story__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--wrc-navy);
  margin: 0 0 1.15rem;
}

.about-story__title .accent-green {
  color: var(--wrc-green);
}

.about-story__copy p {
  color: var(--wrc-muted);
  font-weight: 500;
  margin: 0 0 1rem;
}

.about-story__media {
  position: relative;
  border-radius: var(--wrc-radius);
  overflow: hidden;
  box-shadow: var(--wrc-shadow);
  min-height: 420px;
  background: var(--wrc-surface);
}

.about-story__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.about-story__media:hover img {
  transform: scale(1.02);
}

.about-story__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(17, 34, 80, 0.78);
  color: #fff;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.15rem;
  line-height: 1.05;
  letter-spacing: 0.06em;
  max-width: 9rem;
}

.about-story__badge span {
  display: block;
  color: var(--wrc-gold);
}

.about-benefits {
  display: grid;
  gap: 0.85rem;
}

.about-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: var(--wrc-radius-sm);
  border: 1px solid var(--wrc-border);
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 34, 80, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-benefit:hover {
  transform: translateY(-2px);
  box-shadow: var(--wrc-shadow);
}

.about-benefit h3 {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wrc-navy);
}

.about-benefit p {
  margin: 0;
  color: var(--wrc-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.about-benefit--gold .home-icon { color: var(--wrc-gold-deep); }
.about-benefit--green .home-icon { color: var(--wrc-green); }
.about-benefit--blue .home-icon { color: var(--wrc-blue); }
.about-benefit--red .home-icon { color: var(--wrc-red); }

body.page-about[data-theme="dark"] .about-story__title {
  color: #f5f7fb;
}

body.page-about[data-theme="dark"] .about-benefit {
  background: #121826;
}

/* ========== WHAT MAKES US SPECIAL ========== */
.about-special {
  background: var(--wrc-surface);
}

.about-special__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.about-special__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.04em;
  color: var(--wrc-navy);
  margin: 0;
}

.about-special__title::after {
  content: '';
  display: block;
  width: 4.5rem;
  height: 3px;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wrc-green), var(--wrc-gold));
}

.about-special__intro {
  margin: 0;
  color: var(--wrc-muted);
  font-weight: 500;
  max-width: 48ch;
}

.about-special__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.about-feature-card {
  background: #fff;
  border: 1px solid var(--wrc-border);
  border-radius: 18px;
  box-shadow: var(--wrc-shadow);
  padding: 1.35rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--wrc-shadow-hover);
}

.about-feature-card .home-icon {
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: 0.85rem;
}

.about-feature-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--wrc-navy);
}

.about-feature-card p {
  margin: 0;
  color: var(--wrc-muted);
  font-weight: 500;
}

.about-feature-card--green .home-icon { color: var(--wrc-green); }
.about-feature-card--blue .home-icon { color: var(--wrc-blue); }
.about-feature-card--gold .home-icon { color: var(--wrc-gold-deep); }
.about-feature-card--red .home-icon { color: var(--wrc-red); }

body.page-about[data-theme="dark"] .about-special__title,
body.page-about[data-theme="dark"] .about-feature-card h3 {
  color: #f5f7fb;
}

body.page-about[data-theme="dark"] .about-feature-card {
  background: #121826;
}

/* ========== WHAT WE DO / WHY / EXPECT ========== */
.about-do-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.about-editorial h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  letter-spacing: 0.04em;
  color: var(--wrc-navy);
  margin: 0 0 0.85rem;
}

.about-editorial .highlight {
  margin: 0 0 1rem;
  padding: 0.95rem 1.1rem;
  border-left: 4px solid var(--wrc-green);
  border-radius: 0 12px 12px 0;
  background: rgba(16, 185, 129, 0.08);
  color: var(--wrc-navy);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.45;
}

.about-editorial--why .highlight {
  border-left-color: var(--wrc-gold-deep);
  background: rgba(228, 181, 93, 0.12);
}

.about-editorial p {
  margin: 0 0 1rem;
  color: var(--wrc-muted);
  font-weight: 500;
}

.about-expect {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: calc(var(--wrc-radius) + 2px);
  border: 1px solid var(--wrc-border);
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(228, 181, 93, 0.08)),
    #fff;
}

.about-expect h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  letter-spacing: 0.04em;
  color: var(--wrc-navy);
  margin: 0 0 0.75rem;
}

.about-expect > .highlight {
  margin: 0 0 1.15rem;
  color: var(--wrc-navy);
  font-weight: 700;
  font-size: 1.05rem;
}

.about-expect__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.about-expect__points li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--wrc-border);
  color: var(--wrc-navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.about-expect__points .home-icon {
  margin-top: 0.1rem;
  color: var(--wrc-green);
}

.about-expect__close {
  margin: 0;
  color: var(--wrc-muted);
  font-weight: 500;
}

body.page-about[data-theme="dark"] .about-editorial h2,
body.page-about[data-theme="dark"] .about-expect h2,
body.page-about[data-theme="dark"] .about-editorial .highlight,
body.page-about[data-theme="dark"] .about-expect > .highlight,
body.page-about[data-theme="dark"] .about-expect__points li {
  color: #f5f7fb;
}

body.page-about[data-theme="dark"] .about-expect,
body.page-about[data-theme="dark"] .about-expect__points li {
  background: #121826;
}

/* ========== IMPACT / VIDEO ========== */
.about-impact {
  background: var(--wrc-surface);
}

.about-impact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.about-video-card {
  position: relative;
  border-radius: var(--wrc-radius);
  overflow: hidden;
  box-shadow: var(--wrc-shadow);
  background: #000;
}

.about-video-card video {
  width: 100%;
  display: block;
  max-height: 420px;
  background: #000;
}

.about-video-card__fallback {
  padding: 2rem;
  text-align: center;
  background: #f3f4f6;
  border-radius: 8px;
  color: #64748b;
}

.about-video-card__fallback[hidden] {
  display: none !important;
}

.about-impact__copy .home-eyebrow {
  color: var(--wrc-green);
}

.about-impact__copy h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--wrc-navy);
  margin: 0 0 0.85rem;
}

.about-impact__copy p {
  margin: 0 0 1.15rem;
  color: var(--wrc-muted);
  font-weight: 500;
}

.about-impact__watch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--wrc-green-dark);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.9rem;
}

.about-impact__watch:hover {
  color: var(--wrc-green);
}

.about-impact__aside {
  padding: 1.35rem 1.4rem;
  border-radius: var(--wrc-radius);
  border: 1px solid var(--wrc-border);
  background: #fff;
  box-shadow: var(--wrc-shadow);
}

.about-impact__aside-label {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wrc-gold-deep);
}

.about-impact__aside p {
  margin: 0;
  color: var(--wrc-navy);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
}

.about-impact__aside strong {
  display: block;
  margin-top: 0.85rem;
  color: var(--wrc-green-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-about[data-theme="dark"] .about-impact__copy h2,
body.page-about[data-theme="dark"] .about-impact__aside p {
  color: #f5f7fb;
}

body.page-about[data-theme="dark"] .about-impact__aside {
  background: #121826;
}

/* ========== FINAL CTA ========== */
.about-final-cta {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  align-items: center;
}

.about-final-cta__media {
  position: absolute;
  inset: 0;
}

.about-final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-final-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 34, 80, 0.88) 0%, rgba(6, 78, 59, 0.72) 55%, rgba(17, 34, 80, 0.7) 100%);
}

.about-final-cta__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--wrc-max));
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.about-final-cta__eyebrow {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.65rem;
}

.about-final-cta__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  margin: 0 0 0.85rem;
}

.about-final-cta__title .accent-gold {
  color: var(--wrc-gold);
}

.about-final-cta__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  max-width: 42ch;
}

/* Compact footer rhythm for About */
.page-about .footer {
  padding: 1.75rem 1.25rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .about-hero__content {
    grid-template-columns: 1fr;
  }

  .about-hero__rail {
    display: none;
  }

  .about-story__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-story__media {
    grid-column: 1 / -1;
    order: -1;
  }

  .about-impact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-video-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .about-special__head,
  .about-do-why,
  .about-special__grid,
  .about-expect__points,
  .about-final-cta__content,
  .about-impact__grid {
    grid-template-columns: 1fr;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-about {
    --about-hero-height: 520px;
  }

  .about-hero__content {
    width: min(100% - 1.5rem, var(--wrc-max));
    align-items: end;
  }

  .about-hero__media img {
    object-position: 72% center;
  }

  .about-story__media,
  .about-story__media img {
    min-height: 300px;
  }

  .home-section {
    padding: 2.75rem 0;
  }
}
