/* ==============================================
   MT Pockets — About page styles
   Sits on top of main styles.css
   ============================================== */

.about-main { background: var(--surface-down); }

/* ---- Hero ---- */
.about-hero {
  position: relative;
  height: 70svh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-media { position: absolute; inset: 0; }

.about-hero-media img,
.about-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    var(--surface-down) 0%,
    oklch(0.105 0.027 183 / 0.86) 35%,
    oklch(0.105 0.027 183 / 0.42) 65%,
    oklch(0.105 0.027 183 / 0.15) 100%);
  z-index: 1;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 clamp(28px, 6vw, 80px) clamp(48px, 7vh, 88px);
  max-width: 960px;
}

.about-hero-inner .kicker { margin-bottom: 18px; }

.about-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-lead {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--text-1);
  max-width: 50ch;
  font-style: italic;
  text-shadow: 0 1px 12px oklch(0.105 0.027 183 / 0.6);
}

/* ---- Editorial Statement (Since 2026) ---- */
.about-statement {
  padding: clamp(80px, 14vh, 160px) clamp(28px, 5vw, 80px);
  background: var(--surface-down);
  position: relative;
  overflow: hidden;
}

.about-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: clamp(56px, 8vh, 96px);
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
}

.about-statement-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: clamp(28px, 5vw, 80px);
  row-gap: clamp(16px, 2vh, 28px);
  align-items: end;
}

.about-statement-since {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dim);
  align-self: end;
  padding-bottom: clamp(14px, 2vw, 26px);
}

.about-statement-year {
  grid-column: 1;
  grid-row: 2;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(7rem, 22vw, 18rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--gold);
  text-shadow: 0 2px 60px oklch(0.40 0.14 78 / 0.18);
}

.about-statement-tail {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.65;
  font-weight: 300;
  color: var(--text-1);
  max-width: 44ch;
  align-self: end;
  padding-bottom: clamp(18px, 3vh, 36px);
  border-left: 1px solid var(--border-gold);
  padding-left: clamp(28px, 4vw, 56px);
}

/* ---- Split sections (alternating image + text) ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.about-split.reverse .about-split-media { order: 2; }
.about-split.reverse .about-split-text { order: 1; }

.about-split-media {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.about-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-split:hover .about-split-media img { transform: scale(1.03); }

.about-split-text {
  padding: clamp(64px, 9vw, 120px) clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.about-split .kicker { margin-bottom: 18px; }

.about-split .about-h2 { margin-bottom: clamp(28px, 4vh, 44px); }

/* ---- Section headers (shared) ---- */
.about-section {
  padding: clamp(72px, 12vh, 140px) clamp(28px, 5vw, 80px);
  position: relative;
}

.about-block {
  max-width: 760px;
  margin: 0 auto;
}

.about-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: clamp(32px, 4vh, 48px);
}

.about-prose {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.8;
  color: var(--text-2);
}

.about-prose p {
  margin-bottom: 22px;
  max-width: 64ch;
}

.about-prose p:last-child { margin-bottom: 0; }

.about-prose strong { color: var(--text-1); font-weight: 600; }

.about-prose em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  font-size: 0.96em;
}

/* ---- Figure / image break ---- */
.about-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.about-figure img {
  width: 100%;
  height: clamp(320px, 55vh, 640px);
  object-fit: cover;
  display: block;
}

.about-figure figcaption {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-1);
  text-align: center;
  padding: 22px clamp(28px, 5vw, 80px);
  background: var(--surface);
  border-block: 1px solid var(--border);
  text-transform: uppercase;
}

.about-figure figcaption .text-gold {
  color: var(--gold);
  font-weight: 600;
}

/* ---- Triptych figure: 3 images side-by-side + full-width caption ---- */
.about-figure.is-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-gold);
}

.about-figure.is-triptych img {
  width: 100%;
  height: clamp(320px, 55vh, 640px);
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: saturate(0.94);
}

.about-figure.is-triptych img:hover {
  transform: scale(1.04);
  filter: saturate(1.05);
  z-index: 2;
  position: relative;
}

.about-figure.is-triptych figcaption {
  grid-column: 1 / -1;
}

/* ---- Intro: general 'what we offer' block ---- */
.about-intro {
  padding: clamp(80px, 14vh, 160px) clamp(28px, 5vw, 80px);
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.about-intro-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.about-intro .kicker { display: inline-block; margin-bottom: 18px; }
.about-intro .about-h2 {
  margin-bottom: clamp(28px, 4vh, 44px);
}
.about-intro-lead {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  color: var(--text-1);
  font-weight: 300;
  max-width: 56ch;
  margin: 0 auto clamp(28px, 4vh, 44px);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 36px);
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}
.about-intro-item {
  position: relative;
  padding: 22px 24px 22px 26px;
  border-left: 2px solid var(--gold-dim);
  background: oklch(0.10 0.005 183 / 0.6);
}
.about-intro-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.about-intro-item p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
  max-width: 34ch;
}

/* ---- Video showcase: 4 vertical videos in a row ---- */
.about-showcase {
  padding: clamp(80px, 14vh, 160px) 0 0;
  background: var(--surface-down);
}
.about-showcase-head {
  text-align: center;
  padding: 0 clamp(28px, 5vw, 80px) clamp(48px, 7vh, 80px);
  max-width: 760px;
  margin: 0 auto;
}
.about-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-gold);
  border-block: 1px solid var(--border-gold);
}
.about-showcase-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--surface);
}
.about-showcase-card video,
.about-showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-out), filter 0.6s var(--ease-out);
  filter: saturate(0.94);
}
.about-showcase-card:hover video,
.about-showcase-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}
.about-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    oklch(0.105 0.027 183 / 0.85) 0%,
    oklch(0.105 0.027 183 / 0.35) 35%,
    transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.about-showcase-card-label {
  position: absolute;
  bottom: clamp(16px, 2.5vw, 28px);
  left: clamp(16px, 2.5vw, 28px);
  right: clamp(16px, 2.5vw, 28px);
  z-index: 2;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-1);
}
.about-showcase-card-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .about-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .about-showcase-card-label { letter-spacing: 0.16em; }
}

/* ---- Stats grid ---- */
.about-stats-section {
  background: var(--surface-down);
  padding: clamp(80px, 14vh, 160px) clamp(28px, 5vw, 80px);
}

.about-stats-section .about-block { max-width: 1100px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 12px;
}

.about-stat {
  background: oklch(0.10 0.005 183 / 0.85);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.about-stat-label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 10px;
}

.about-stat p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 36ch;
}

/* ---- Final CTA ---- */
.about-cta {
  padding: clamp(80px, 14vh, 160px) clamp(28px, 5vw, 80px);
  background:
    radial-gradient(ellipse at top, oklch(0.40 0.14 78 / 0.10), transparent 60%),
    var(--surface-down);
  text-align: center;
}

.about-cta .about-block { max-width: 640px; }
.about-cta .kicker { display: block; margin-bottom: 18px; }
.about-cta .about-h2 { text-align: center; }

.about-cta-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 36px;
}

.about-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Reveal default state ---- */
.about-main .reveal {
  opacity: 1;
  transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split.reverse .about-split-media { order: 1; }
  .about-split.reverse .about-split-text { order: 2; }
  .about-split-media { min-height: 0; height: clamp(280px, 50vh, 460px); }
  .about-split-text { max-width: 720px; margin: 0 auto; }
  .about-figure.is-triptych img { height: clamp(180px, 32vh, 320px); }
}

@media (max-width: 720px) {
  .about-statement-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 24px;
  }
  .about-statement-since { grid-column: 1; grid-row: 1; padding-bottom: 0; }
  .about-statement-year { grid-column: 1; grid-row: 2; }
  .about-statement-tail {
    grid-column: 1;
    grid-row: 3;
    border-left: none;
    border-top: 1px solid var(--border-gold);
    padding-left: 0;
    padding-top: 28px;
    padding-bottom: 0;
  }
}

@media (max-width: 560px) {
  .about-h1 { font-size: clamp(2.4rem, 12vw, 4.5rem); }
  .about-h2 { font-size: clamp(1.8rem, 9vw, 3rem); }
}

/* Editorial heading style to match the homepage redesign */
.about-h2 { text-transform: none; letter-spacing: -0.025em; font-weight: 600; }
.about-h2 .text-gold { font-style: italic; font-weight: 500; color: var(--gold); }
.about-h1 { text-transform: none; letter-spacing: -0.02em; }
.about-h1 .text-gold { font-style: italic; color: var(--gold); }
.kicker { font-family: 'Barlow Condensed', 'Barlow', sans-serif; letter-spacing: 0.3em; }
