/* ═══════════════════════════════════════════════════
   BECKER v1 — ABOUT PAGE
   Cinematic story page · Premium · Square edges
   ═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-deep: #0A0A0C;
  --bg-surface: #111114;
  --bg-elevated: #18181C;
  --bg-hover: #1F1F24;

  --text-primary: #F0F0F2;
  --text-secondary: #7A7A82;
  --text-tertiary: #3E3E45;

  --purple: hsl(260, 100%, 73%);
  --purple-dim: hsl(260, 60%, 40%);
  --purple-glow: hsl(260, 100%, 73% / 0.15);
  --purple-glow-strong: hsl(260, 100%, 73% / 0.3);
  --lavender: hsl(280, 80%, 82%);
  --gold: #D4A853;
  --gold-glow: hsl(43, 70%, 55% / 0.12);

  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --frame-x: max(5vw, 24px);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-deep);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─── REVEAL ───────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   HEADER (shared pattern)
   ═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--frame-x);
  background: linear-gradient(to bottom, var(--bg-deep), transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
}
.site-header__home {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}
.site-header__nav {
  display: flex;
  gap: 2rem;
}
.site-header__nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s, letter-spacing 0.4s var(--ease-out-expo);
}
.site-header__nav a:hover,
.site-header__nav a.is-active {
  color: var(--text-primary);
  letter-spacing: 0.12em;
}
.site-header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.site-header__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .site-header__nav { display: none; }
  .site-header__burger { display: flex; }
  .site-header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--bg-deep);
    padding: 2rem var(--frame-x);
    gap: 0.25rem;
    border-bottom: 1px solid var(--bg-elevated);
  }
  .site-header__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }
}

/* ═══════════════════════════════════════════════════
   ABOUT HERO
   ═══════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--frame-x) 80px;
  overflow: hidden;
}
.about-hero__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    hsl(260 100% 73% / 0.08) 0%,
    transparent 70%);
  pointer-events: none;
}
.about-hero__content {
  position: relative;
  z-index: 1;
}
.about-hero__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    180deg,
    var(--text-primary) 40%,
    var(--text-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--lavender);
  letter-spacing: 0.04em;
}

/* Scroll cue */
.about-hero__scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.about-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════
   PORTRAIT + OPENING STATEMENT
   ═══════════════════════════════════════════════════ */
.about-portrait {
  padding: 0 var(--frame-x) 140px;
}
.about-portrait__frame {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 80px;
  align-items: center;
}
.about-portrait__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.about-portrait__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
}
.about-portrait__edge-glow {
  position: absolute;
  inset: 0;
  border: 1px solid hsl(260 100% 73% / 0.12);
  pointer-events: none;
}
.about-portrait__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--purple-dim);
}
.about-portrait__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 24px;
}
.about-portrait__name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.about-portrait__location {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .about-portrait__frame {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-portrait__image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════ */
.about-stats {
  padding: 0 var(--frame-x) 140px;
}
.about-stats__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-elevated);
}
.about-stats__item {
  background: var(--bg-deep);
  padding: 48px 24px;
  text-align: center;
}
.about-stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--purple);
  margin-bottom: 12px;
}
.about-stats__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════
   THE RANGE — THREE DISCIPLINES
   ═══════════════════════════════════════════════════ */
.about-range {
  padding: 0 var(--frame-x) 160px;
}
.about-range__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.about-range__discipline-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 16px;
}
.about-range__discipline-number {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}
.about-range__discipline-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.02em;
}
.about-range__discipline-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--purple-dim), transparent 60%);
  margin-bottom: 20px;
}
.about-range__discipline-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
}

/* ═══════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════ */
.timeline {
  padding: 80px var(--frame-x) 120px;
  position: relative;
}
.timeline__header {
  text-align: center;
  margin-bottom: 80px;
}
.timeline__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.timeline__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.02em;
}

/* Track */
.timeline__track {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--bg-elevated) 5%,
    var(--bg-elevated) 95%,
    transparent
  );
  transform: translateX(-50%);
}

/* Entry */
.timeline__entry {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: start;
  padding: 24px 0;
  position: relative;
}
.timeline__entry--left .timeline__card {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}
.timeline__entry--left .timeline__dot {
  grid-column: 2;
}
.timeline__entry--right .timeline__card {
  grid-column: 3;
  justify-self: start;
}
.timeline__entry--right .timeline__dot {
  grid-column: 2;
}

/* Dot */
.timeline__dot {
  width: 10px;
  height: 10px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--text-tertiary);
  justify-self: center;
  align-self: start;
  margin-top: 6px;
  position: relative;
  z-index: 2;
}
.timeline__dot--turning-point {
  width: 14px;
  height: 14px;
  background: var(--lavender);
  border: none;
  box-shadow: 0 0 20px hsl(280 80% 82% / 0.5);
}
.timeline__dot--energy {
  width: 12px;
  height: 12px;
  background: var(--purple);
  border: none;
  box-shadow: 0 0 14px hsl(260 100% 73% / 0.4);
}
.timeline__dot--stripped {
  background: var(--bg-deep);
  border-color: var(--text-tertiary);
  opacity: 0.5;
}

/* Card */
.timeline__card {
  max-width: 420px;
  padding: 20px;
  background: transparent;
}
.timeline__card--turning-point {
  background: hsl(280 80% 82% / 0.03);
  border-left: 2px solid var(--lavender);
}
.timeline__entry--left .timeline__card--turning-point {
  border-left: none;
  border-right: 2px solid var(--lavender);
}
.timeline__card--stripped {
  opacity: 0.65;
}
.timeline__card--energy {
  border-left: 2px solid var(--purple);
}
.timeline__entry--left .timeline__card--energy {
  border-left: none;
  border-right: 2px solid var(--purple);
}

/* Year badge */
.timeline__year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Media */
.timeline__media {
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}
.timeline__media img,
.timeline__media video {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.9);
  transition: transform 0.6s var(--ease-out-expo);
}
.timeline__card:hover .timeline__media img,
.timeline__card:hover .timeline__media video {
  transform: scale(1.03);
}

/* Text styles */
.timeline__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.timeline__text--turning-point {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 400;
}
.timeline__text--turning-point em {
  color: var(--lavender);
  font-family: var(--font-serif);
}
.timeline__text--emotional {
  color: var(--text-primary);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}
.timeline__text--energy {
  color: var(--lavender);
}
.timeline__text--stripped {
  color: var(--text-tertiary);
}

/* Timeline closing */
.timeline__closing {
  text-align: center;
  padding-top: 80px;
}
.timeline__closing-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.timeline__closing-sub {
  font-size: 1rem;
  color: var(--lavender);
  letter-spacing: 0.04em;
}

/* Mobile timeline */
@media (max-width: 768px) {
  .timeline__line {
    left: 16px;
  }
  .timeline__entry {
    grid-template-columns: 32px 1fr;
    gap: 0;
  }
  .timeline__entry--left .timeline__card,
  .timeline__entry--right .timeline__card {
    grid-column: 2;
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }
  .timeline__dot {
    grid-column: 1;
    justify-self: center;
  }
  .timeline__entry--left .timeline__card--turning-point,
  .timeline__entry--left .timeline__card--energy {
    border-right: none;
    border-left: 2px solid var(--lavender);
  }
  .timeline__entry--left .timeline__card--energy {
    border-left-color: var(--purple);
  }
}

/* ═══════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════ */
.about-cta {
  padding: 120px var(--frame-x);
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-elevated);
  border-bottom: 1px solid var(--bg-elevated);
}
.about-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.about-cta__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}
.about-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.about-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
}
.about-cta__btn--primary {
  background: var(--purple);
  color: #fff;
}
.about-cta__btn--primary:hover {
  background: hsl(260, 100%, 78%);
  box-shadow: 0 0 30px hsl(260 100% 73% / 0.3);
  transform: translateY(-2px);
}
.about-cta__btn--secondary {
  border: 1px solid var(--text-tertiary);
  color: var(--text-primary);
}
.about-cta__btn--secondary:hover {
  border-color: var(--text-secondary);
  background: hsl(0 0% 100% / 0.03);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  padding: 80px var(--frame-x);
  border-top: 1px solid var(--bg-elevated);
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.site-footer__nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.site-footer__nav a:hover {
  color: var(--text-primary);
}
.site-footer__contact {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.site-footer__copy {
  font-size: 0.7rem;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .site-footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
  .site-footer__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
